1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-07-11 14:30:22 +02:00

avcodec/mpegvideo_enc: Remove impossible branch

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2021-12-22 04:27:42 +01:00
parent 4707023a95
commit 8a431a2bb6

View File

@ -3596,9 +3596,7 @@ static int encode_picture(MpegEncContext *s, int picture_number)
s->p_field_mv_table[i][j], s->f_code, CANDIDATE_MB_TYPE_INTER_I, !!s->intra_penalty); s->p_field_mv_table[i][j], s->f_code, CANDIDATE_MB_TYPE_INTER_I, !!s->intra_penalty);
} }
} }
} } else if (s->pict_type == AV_PICTURE_TYPE_B) {
if(s->pict_type==AV_PICTURE_TYPE_B){
int a, b; int a, b;
a = ff_get_best_fcode(s, s->b_forw_mv_table, CANDIDATE_MB_TYPE_FORWARD); a = ff_get_best_fcode(s, s->b_forw_mv_table, CANDIDATE_MB_TYPE_FORWARD);