Commit 94aec31f authored by Michael Niedermayer's avatar Michael Niedermayer

dr1

Originally committed as revision 764 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 760acb18
...@@ -1231,6 +1231,7 @@ static int mpeg_decode_init(AVCodecContext *avctx) ...@@ -1231,6 +1231,7 @@ static int mpeg_decode_init(AVCodecContext *avctx)
{ {
Mpeg1Context *s = avctx->priv_data; Mpeg1Context *s = avctx->priv_data;
s->mpeg_enc_ctx.flags= avctx->flags;
common_init(&s->mpeg_enc_ctx); common_init(&s->mpeg_enc_ctx);
s->header_state = 0xff; s->header_state = 0xff;
...@@ -1242,7 +1243,6 @@ static int mpeg_decode_init(AVCodecContext *avctx) ...@@ -1242,7 +1243,6 @@ static int mpeg_decode_init(AVCodecContext *avctx)
s->repeat_field = 0; s->repeat_field = 0;
s->mpeg_enc_ctx.codec_id= avctx->codec->id; s->mpeg_enc_ctx.codec_id= avctx->codec->id;
avctx->mbskip_table= s->mpeg_enc_ctx.mbskip_table; avctx->mbskip_table= s->mpeg_enc_ctx.mbskip_table;
s->mpeg_enc_ctx.flags= avctx->flags;
return 0; return 0;
} }
...@@ -1764,4 +1764,5 @@ AVCodec mpeg_decoder = { ...@@ -1764,4 +1764,5 @@ AVCodec mpeg_decoder = {
NULL, NULL,
mpeg_decode_end, mpeg_decode_end,
mpeg_decode_frame, mpeg_decode_frame,
CODEC_CAP_DR1,
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment