[FFmpeg-cvslog] r9508 - trunk/libavcodec/utils.c

benoit subversion
Fri Jul 6 17:24:08 CEST 2007


Author: benoit
Date: Fri Jul  6 17:24:08 2007
New Revision: 9508

Log:
free thread context
patch by Janne Grunau: [janne-ffmpeg grunau be]


Modified:
   trunk/libavcodec/utils.c

Modified: trunk/libavcodec/utils.c
==============================================================================
--- trunk/libavcodec/utils.c	(original)
+++ trunk/libavcodec/utils.c	Fri Jul  6 17:24:08 2007
@@ -991,6 +991,8 @@ int avcodec_close(AVCodecContext *avctx)
         return -1;
     }
 
+    if (ENABLE_THREADS && avctx->thread_opaque)
+        avcodec_thread_free(avctx);
     if (avctx->codec->close)
         avctx->codec->close(avctx);
     avcodec_default_free_buffers(avctx);




More information about the ffmpeg-cvslog mailing list