diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-05 18:04:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-05 18:25:24 +0200 |
commit | 998fa4fa3010fa3aa6b723b86642a21a5ff8e4d9 (patch) | |
tree | caf2ec8ed34a2d049b3338d64b045efebc20859b | |
parent | 4a447e3e692ee52ec2b226973843dbd3ce9bb02b (diff) | |
download | ffmpeg-998fa4fa3010fa3aa6b723b86642a21a5ff8e4d9.tar.gz |
avcodec/libutvideodec: remove AVFrame->reference usage, otherwise the code does not build
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/libutvideodec.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/libutvideodec.cpp b/libavcodec/libutvideodec.cpp index e4b87a8bbc..47261a6c7f 100644 --- a/libavcodec/libutvideodec.cpp +++ b/libavcodec/libutvideodec.cpp @@ -145,7 +145,6 @@ static int utvideo_decode_frame(AVCodecContext *avctx, void *data, int w = avctx->width, h = avctx->height; /* Set flags */ - pic->reference = 0; pic->pict_type = AV_PICTURE_TYPE_I; pic->key_frame = 1; |