Module: libav Branch: master Commit: 61928b68dc28e080b8c8191afe5541123c682bbd
Author: Michael Niedermayer <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sun Aug 25 03:01:19 2013 +0200 h264: Do not share rbsp_buffer across threads Signed-off-by: Luca Barbato <[email protected]> CC: [email protected] --- 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
