diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-05 23:30:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-05 23:30:35 +0200 |
commit | 89d2fc62db985263fdbfb1f44b23e98d24d77c9e (patch) | |
tree | 29284d4b3bfc991631034d7ce7f3712dd072f8ba | |
parent | 1394e0a9e03ea59a19668cd152b7dd1ca3aa880e (diff) | |
download | ffmpeg-89d2fc62db985263fdbfb1f44b23e98d24d77c9e.tar.gz |
avcodec/svq3: Fix "incompatible pointer type" warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/svq3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index bf8c68882e..97233b19d6 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -1195,7 +1195,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data, if (h->pict_type != AV_PICTURE_TYPE_I) { if (!s->last_pic->f.data[0]) { av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n"); - av_frame_unref(s->last_pic); + av_frame_unref(&s->last_pic->f); ret = get_buffer(avctx, s->last_pic); if (ret < 0) return ret; @@ -1208,7 +1208,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data, if (h->pict_type == AV_PICTURE_TYPE_B && !s->next_pic->f.data[0]) { av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n"); - av_frame_unref(s->next_pic); + av_frame_unref(&s->next_pic->f); ret = get_buffer(avctx, s->next_pic); if (ret < 0) return ret; |