avcodec/ac3enc: Fix memleak
Fixes ticket #8294.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 097c917c14
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
525d855c60
commit
4872230633
@@ -2051,6 +2051,7 @@ av_cold int ff_ac3_encode_close(AVCodecContext *avctx)
|
|||||||
av_freep(&block->cpl_coord_mant);
|
av_freep(&block->cpl_coord_mant);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (s->mdct_end)
|
||||||
s->mdct_end(s);
|
s->mdct_end(s);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@@ -2433,7 +2434,7 @@ av_cold int ff_ac3_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
ret = validate_options(s);
|
ret = validate_options(s);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
goto init_fail;
|
||||||
|
|
||||||
avctx->frame_size = AC3_BLOCK_SIZE * s->num_blocks;
|
avctx->frame_size = AC3_BLOCK_SIZE * s->num_blocks;
|
||||||
avctx->initial_padding = AC3_BLOCK_SIZE;
|
avctx->initial_padding = AC3_BLOCK_SIZE;
|
||||||
|
Reference in New Issue
Block a user