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.c47 static uint8_t mv_penalty[MAX_FCODE+1][MAX_DMV*2+1];
680 for(mv=-MAX_DMV; mv<=MAX_DMV; mv++){ in init_mv_penalty_and_fcode()
701 mv_penalty[f_code][mv+MAX_DMV]= len; in init_mv_penalty_and_fcode()
Dmotion_est.c907 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_estimate_p_frame_motion()
1074 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_pre_estimate_p_frame_motion()
1123 const uint8_t * const mv_penalty = c->mv_penalty[f_code] + MAX_DMV; in estimate_motion_b()
1187 …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()
1188 …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()
1401 c->current_mv_penalty= c->mv_penalty[1] + MAX_DMV; in direct_search()
1537 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_DMV; in ff_estimate_b_frame_motion()
1541 c->current_mv_penalty= c->mv_penalty[s->b_code] + MAX_DMV; in ff_estimate_b_frame_motion()
Dmpeg12enc.c54 static uint8_t mv_penalty[MAX_FCODE + 1][MAX_DMV * 2 + 1];
1072 for (int mv = -MAX_DMV; mv <= MAX_DMV; mv++) { in mpeg12_encode_init_static()
1095 mv_penalty[f_code][mv + MAX_DMV] = len; in mpeg12_encode_init_static()
Dsnowenc.c306 c->current_mv_penalty= c->mv_penalty[s->m.f_code=1] + MAX_DMV; in encode_q_branch()
Dmpegvideo_enc.c84 static uint8_t default_mv_penalty[MAX_FCODE + 1][MAX_DMV * 2 + 1];