1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

mpegvideo: move setting encoding-only vars from common_defaults() to encode_defaults()

This commit is contained in:
Anton Khirnov 2013-11-30 10:50:20 +01:00
parent 2cab011f0f
commit bedf952bb8
2 changed files with 3 additions and 3 deletions

View File

@ -788,9 +788,6 @@ void ff_MPV_common_defaults(MpegEncContext *s)
s->coded_picture_number = 0;
s->picture_number = 0;
s->input_picture_number = 0;
s->picture_in_gop_number = 0;
s->f_code = 1;
s->b_code = 1;

View File

@ -217,6 +217,9 @@ static void MPV_encode_defaults(MpegEncContext *s)
}
s->me.mv_penalty = default_mv_penalty;
s->fcode_tab = default_fcode_tab;
s->input_picture_number = 0;
s->picture_in_gop_number = 0;
}
/* init video encoder */