mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/svq3: Fix "incompatible pointer type" warnings
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1394e0a9e0
commit
89d2fc62db
@ -1195,7 +1195,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
if (h->pict_type != AV_PICTURE_TYPE_I) {
|
if (h->pict_type != AV_PICTURE_TYPE_I) {
|
||||||
if (!s->last_pic->f.data[0]) {
|
if (!s->last_pic->f.data[0]) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "Missing reference frame.\n");
|
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);
|
ret = get_buffer(avctx, s->last_pic);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
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]) {
|
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_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);
|
ret = get_buffer(avctx, s->next_pic);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user