avcodec/mlpenc: fix small memory leak

This commit is contained in:
Paul B Mahol 2020-02-04 11:35:02 +01:00
parent 49cfbedb9d
commit c35382aaf4
1 changed files with 1 additions and 0 deletions

View File

@ -2373,6 +2373,7 @@ static av_cold int mlp_encode_close(AVCodecContext *avctx)
av_freep(&ctx->decoding_params);
av_freep(&ctx->channel_params);
av_freep(&ctx->frame_size);
av_freep(&ctx->max_output_bits);
ff_af_queue_close(&ctx->afq);
return 0;