• Home
  • Raw
  • Download

Lines Matching refs:bx

439     Y = (ctx->cur?ctx->Y2:ctx->Y1) + by * 4 * Ystride + bx * 4;\
440 V = (ctx->cur?ctx->V2:ctx->V1) + by * 2 * Vstride + bx * 2;\
441 U = (ctx->cur?ctx->U2:ctx->U1) + by * 2 * Ustride + bx * 2;\
442 last = ctx->last + bx * 4;\
443 clast = ctx->clast + bx * 4;
453 Yo = (ctx->cur?ctx->Y1:ctx->Y2) + by * 4 * oYstride + bx * 4;\
454 Vo = (ctx->cur?ctx->V1:ctx->V2) + by * 2 * oVstride + bx * 2;\
455 Uo = (ctx->cur?ctx->U1:ctx->U2) + by * 2 * oUstride + bx * 2;
496 …ic inline void tm2_low_chroma(int *data, int stride, int *clast, unsigned *CD, int *deltas, int bx) in tm2_low_chroma() argument
502 if (bx > 0) in tm2_low_chroma()
515 static inline void tm2_hi_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_hi_res_block() argument
536 static inline void tm2_med_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_med_res_block() argument
545 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx); in tm2_med_res_block()
549 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx); in tm2_med_res_block()
558 static inline void tm2_low_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_low_res_block() argument
568 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx); in tm2_low_res_block()
572 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx); in tm2_low_res_block()
583 if (bx > 0) in tm2_low_res_block()
599 static inline void tm2_null_res_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_null_res_block() argument
610 tm2_low_chroma(U, Ustride, clast, ctx->CD, deltas, bx); in tm2_null_res_block()
613 tm2_low_chroma(V, Vstride, clast + 2, ctx->CD + 2, deltas, bx); in tm2_null_res_block()
621 if (bx > 0) in tm2_null_res_block()
646 static inline void tm2_still_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_still_block() argument
681 static inline void tm2_update_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_update_block() argument
721 static inline void tm2_motion_block(TM2Context *ctx, AVFrame *pic, int bx, int by) in tm2_motion_block() argument
729 mx = av_clip(mx, -(bx * 4 + 4), ctx->avctx->width - bx * 4); in tm2_motion_block()
732 if (4*bx+mx<0 || 4*by+my<0 || 4*bx+mx+4 > ctx->avctx->width || 4*by+my+4 > ctx->avctx->height) { in tm2_motion_block()