mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavc: remove a pointless check in decode_audio4()
av_frame_unref() works fine on unallocated frames.
This commit is contained in:
parent
d4f0f2d1e8
commit
85f947aefb
@ -1478,7 +1478,7 @@ int attribute_align_arg avcodec_decode_audio4(AVCodecContext *avctx,
|
||||
frame->extended_buf = NULL;
|
||||
frame->nb_extended_buf = 0;
|
||||
}
|
||||
} else if (frame->data[0])
|
||||
} else
|
||||
av_frame_unref(frame);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user