Commit 626739eb authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h264: Free rbsp_buffer before copying context over it

Fixes memleak
Fixes Ticket1900
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent be30e44d
......@@ -1767,6 +1767,8 @@ static int decode_update_thread_context(AVCodecContext *dst,
for (i = 0; i < MAX_PPS_COUNT; i++)
av_freep(h->pps_buffers + i);
av_freep(&h->rbsp_buffer[0]);
av_freep(&h->rbsp_buffer[1]);
memcpy(h, h1, offsetof(H264Context, intra_pcm_ptr));
memcpy(&h->cabac, &h1->cabac,
sizeof(H264Context) - offsetof(H264Context, cabac));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment