mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Set progressive_sequence before MPV_common_init which cares about it when
setting mb_height for interlaced mpeg-2 encoding. Originally committed as revision 18905 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
364f4a3620
commit
01bc48f4d5
@ -649,6 +649,9 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
|
||||
|
||||
s->encoding = 1;
|
||||
|
||||
s->progressive_frame=
|
||||
s->progressive_sequence= !(avctx->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME|CODEC_FLAG_ALT_SCAN));
|
||||
|
||||
/* init */
|
||||
if (MPV_common_init(s) < 0)
|
||||
return -1;
|
||||
@ -663,8 +666,7 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
|
||||
|
||||
if((CONFIG_H263P_ENCODER || CONFIG_RV20_ENCODER) && s->modified_quant)
|
||||
s->chroma_qscale_table= ff_h263_chroma_qscale_table;
|
||||
s->progressive_frame=
|
||||
s->progressive_sequence= !(avctx->flags & (CODEC_FLAG_INTERLACED_DCT|CODEC_FLAG_INTERLACED_ME|CODEC_FLAG_ALT_SCAN));
|
||||
|
||||
s->quant_precision=5;
|
||||
|
||||
ff_set_cmp(&s->dsp, s->dsp.ildct_cmp, s->avctx->ildct_cmp);
|
||||
|
Loading…
Reference in New Issue
Block a user