mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avcodec/h264_mp4toannexb_bsf: Use av_freep() to free spspps_buf
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
9953038728
commit
3d126ef188
@ -276,7 +276,7 @@ static void h264_mp4toannexb_filter_close(AVBitStreamFilterContext *bsfc)
|
||||
{
|
||||
H264BSFContext *ctx = bsfc->priv_data;
|
||||
if (ctx->private_spspps)
|
||||
av_free(ctx->spspps_buf);
|
||||
av_freep(&ctx->spspps_buf);
|
||||
}
|
||||
|
||||
AVBitStreamFilter ff_h264_mp4toannexb_bsf = {
|
||||
|
Loading…
Reference in New Issue
Block a user