OSDN Git Service
(root)
/
android-x86
/
external-ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74a1cad
)
libx264: Make codec use the init-cleanup flag and mark it as init-thread-safe
author
Vittorio Giovara
<vittorio.giovara@gmail.com>
Mon, 6 Apr 2015 23:47:18 +0000
(
01:47
+0200)
committer
Vittorio Giovara
<vittorio.giovara@gmail.com>
Fri, 24 Apr 2015 13:55:11 +0000
(14:55 +0100)
This takes care of memory leaks on init error.
libavcodec/libx264.c
patch
|
blob
|
history
diff --git
a/libavcodec/libx264.c
b/libavcodec/libx264.c
index
2caef17
..
841b824
100644
(file)
--- a/
libavcodec/libx264.c
+++ b/
libavcodec/libx264.c
@@
-272,10
+272,12
@@
static av_cold int X264_close(AVCodecContext *avctx)
X264Context *x4 = avctx->priv_data;
av_freep(&avctx->extradata);
- av_free
(
x4->sei);
+ av_free
p(&
x4->sei);
- if (x4->enc)
+ if (x4->enc)
{
x264_encoder_close(x4->enc);
+ x4->enc = NULL;
+ }
av_frame_free(&avctx->coded_frame);
@@
-697,4
+699,6
@@
AVCodec ff_libx264_encoder = {
.priv_class = &class,
.defaults = x264_defaults,
.init_static_data = X264_init_static,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
+ FF_CODEC_CAP_INIT_CLEANUP,
};