[FFmpeg-cvslog] Release buffers after encoding svq1.
Carl Eugen Hoyos
git at videolan.org
Fri Dec 23 11:57:42 CET 2011
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Fri Dec 23 11:39:41 2011 +0100| [8e88145d0b43a4572c1c13431c4f7ba644547c80] | committer: Carl Eugen Hoyos
Release buffers after encoding svq1.
Fixes ticket #820.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8e88145d0b43a4572c1c13431c4f7ba644547c80
---
libavcodec/svq1enc.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/libavcodec/svq1enc.c b/libavcodec/svq1enc.c
index 9e6111a..feceaee 100644
--- a/libavcodec/svq1enc.c
+++ b/libavcodec/svq1enc.c
@@ -563,6 +563,10 @@ static av_cold int svq1_encode_end(AVCodecContext *avctx)
av_freep(&s->motion_val8[i]);
av_freep(&s->motion_val16[i]);
}
+ if(s->current_picture.data[0])
+ avctx->release_buffer(avctx, &s->current_picture);
+ if(s->last_picture.data[0])
+ avctx->release_buffer(avctx, &s->last_picture);
return 0;
}
More information about the ffmpeg-cvslog
mailing list