mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/h264: Free rbsp_buffer before copying context over it
Fixes memleak Fixes Ticket1900 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
be30e44dd9
commit
626739ebbb
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue