[FFmpeg-cvslog] h264: Do not share rbsp_buffer across threads
Michael Niedermayer
git at videolan.org
Wed Jan 28 22:54:13 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Aug 25 03:01:19 2013 +0200| [61928b68dc28e080b8c8191afe5541123c682bbd] | committer: Luca Barbato
h264: Do not share rbsp_buffer across threads
Signed-off-by: Luca Barbato <lu_zero at gentoo.org>
CC: libav-stable at libav.org
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=61928b68dc28e080b8c8191afe5541123c682bbd
---
libavcodec/h264.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index be0dca4..c70b259 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -685,6 +685,10 @@ static int decode_init_thread_copy(AVCodecContext *avctx)
memset(h->sps_buffers, 0, sizeof(h->sps_buffers));
memset(h->pps_buffers, 0, sizeof(h->pps_buffers));
+ h->rbsp_buffer[0] = NULL;
+ h->rbsp_buffer[1] = NULL;
+ h->rbsp_buffer_size[0] = 0;
+ h->rbsp_buffer_size[1] = 0;
h->context_initialized = 0;
return 0;
More information about the ffmpeg-cvslog
mailing list