[FFmpeg-cvslog] vp8: Fix pthread_cond and pthread_mutex leaks
Matt Wolenetz
git at videolan.org
Sun Mar 31 11:39:17 CEST 2013
ffmpeg | branch: master | Matt Wolenetz <wolenetz at chromium.org> | Wed Mar 27 17:29:57 2013 -0700| [1d6e618939c1ba9c333d513fc7826719dae34031] | committer: Luca Barbato
vp8: Fix pthread_cond and pthread_mutex leaks
CC: libav-stable at libav.org
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1d6e618939c1ba9c333d513fc7826719dae34031
---
libavcodec/vp8.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c
index babbff4..0687648 100644
--- a/libavcodec/vp8.c
+++ b/libavcodec/vp8.c
@@ -40,6 +40,10 @@ static void free_buffers(VP8Context *s)
int i;
if (s->thread_data)
for (i = 0; i < MAX_THREADS; i++) {
+#if HAVE_THREADS
+ pthread_cond_destroy(&s->thread_data[i].cond);
+ pthread_mutex_destroy(&s->thread_data[i].lock);
+#endif
av_freep(&s->thread_data[i].filter_strength);
av_freep(&s->thread_data[i].edge_emu_buffer);
}
More information about the ffmpeg-cvslog
mailing list