Home
last modified time | relevance | path

Searched refs:MAX_DMV (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dmotion_est.h37 #define MAX_DMV (2*MAX_MV) macro
93 const uint8_t (*mv_penalty)[MAX_DMV * 2 + 1]; ///< bit amount needed to encode a MV
Dituh263enc.c52 static uint8_t mv_penalty[MAX_FCODE+1][MAX_DMV*2+1];
726 for(mv=-MAX_DMV; mv<=MAX_DMV; mv++){ in init_mv_penalty_and_fcode()
747 mv_penalty[f_code][mv+MAX_DMV]= len; in init_mv_penalty_and_fcode()
Dmotion_est.c909 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_estimate_p_frame_motion()
1076 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_pre_estimate_p_frame_motion()
1125 const uint8_t * const mv_penalty = c->mv_penalty[f_code] + MAX_DMV; in estimate_motion_b()
1189 …const uint8_t * const mv_penalty_f = c->mv_penalty[s->f_code] + MAX_DMV; // f_code of the prev fra… in check_bidir_mv()
1190 …const uint8_t * const mv_penalty_b = c->mv_penalty[s->b_code] + MAX_DMV; // f_code of the prev fra… in check_bidir_mv()
1403 c->current_mv_penalty= c->mv_penalty[1] + MAX_DMV; in direct_search()
1539 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_estimate_b_frame_motion()
1543 c->current_mv_penalty= c->mv_penalty[s->b_code] + MAX_DMV; in ff_estimate_b_frame_motion()
Dmpeg12enc.c57 static uint8_t mv_penalty[MAX_FCODE + 1][MAX_DMV * 2 + 1];
1099 for (int mv = -MAX_DMV; mv <= MAX_DMV; mv++) { in mpeg12_encode_init_static()
1122 mv_penalty[f_code][mv + MAX_DMV] = len; in mpeg12_encode_init_static()
Dsnowenc.c297 c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_DMV; in encode_q_branch()
Dmpegvideo_enc.c92 static uint8_t default_mv_penalty[MAX_FCODE + 1][MAX_DMV * 2 + 1];