1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 09:27:53 +02:00

buffersrc: Use the correct deallocation function

This correction was suggested to me by Michael Niedermayer

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
Federico Tomassetti 2015-04-20 20:12:05 +01:00 committed by Luca Barbato
parent 9b2c57bef5
commit 8eb57dc9d5

View File

@ -195,7 +195,7 @@ do { \
ref_out = av_buffer_create(data, data_size, compat_unref_buffer, \ ref_out = av_buffer_create(data, data_size, compat_unref_buffer, \
dummy_ref, 0); \ dummy_ref, 0); \
if (!ref_out) { \ if (!ref_out) { \
av_freep(&dummy_ref); \ av_buffer_unref(&dummy_ref); \
av_frame_unref(frame); \ av_frame_unref(frame); \
ret = AVERROR(ENOMEM); \ ret = AVERROR(ENOMEM); \
goto fail; \ goto fail; \