Commit 998fa4fa authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/libutvideodec: remove AVFrame->reference usage, otherwise the code does not build

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 4a447e3e
...@@ -145,7 +145,6 @@ static int utvideo_decode_frame(AVCodecContext *avctx, void *data, ...@@ -145,7 +145,6 @@ static int utvideo_decode_frame(AVCodecContext *avctx, void *data,
int w = avctx->width, h = avctx->height; int w = avctx->width, h = avctx->height;
/* Set flags */ /* Set flags */
pic->reference = 0;
pic->pict_type = AV_PICTURE_TYPE_I; pic->pict_type = AV_PICTURE_TYPE_I;
pic->key_frame = 1; pic->key_frame = 1;
......
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