From 998fa4fa3010fa3aa6b723b86642a21a5ff8e4d9 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 5 Sep 2015 18:04:40 +0200 Subject: [PATCH] avcodec/libutvideodec: remove AVFrame->reference usage, otherwise the code does not build Signed-off-by: Michael Niedermayer --- libavcodec/libutvideodec.cpp | 1 - 1 file changed, 1 deletion(-) 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;