On Thu, 9 Apr 2015, Vittorio Giovara wrote:

---
libavcodec/lclenc.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/libavcodec/lclenc.c b/libavcodec/lclenc.c
index acf5e73..20841bc 100644
--- a/libavcodec/lclenc.c
+++ b/libavcodec/lclenc.c
@@ -42,6 +42,7 @@
#include <stdlib.h>

#include "avcodec.h"
+#include "internal.h"
#include "lcl.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
@@ -197,4 +198,6 @@ AVCodec ff_zlib_encoder = {
    .encode2        = encode_frame,
    .close          = encode_end,
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_BGR24, 
AV_PIX_FMT_NONE },
+    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE |
+                      FF_CODEC_CAP_INIT_CLEANUP,
};
--
1.9.5 (Apple Git-50.3)

Did you verify with valgrind that calling deflateEnd is ok even when deflateInit hasn't been called? I don't see that explicitly mentioned in the zlib manual. If you did, I'd guess it's ok.

// Martin
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to