mirror of https://git.ffmpeg.org/ffmpeg.git
dcaenc: fix segfault when attempting to encode with invalid samplerate
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
This commit is contained in:
parent
a1c6fc773f
commit
c1b282dc74
|
@ -152,8 +152,11 @@ static int subband_bufer_alloc(DCAEncContext *c)
|
|||
|
||||
static void subband_bufer_free(DCAEncContext *c)
|
||||
{
|
||||
if (c->subband[0][0]) {
|
||||
int32_t *bufer = c->subband[0][0] - DCA_ADPCM_COEFFS;
|
||||
av_freep(&bufer);
|
||||
av_free(bufer);
|
||||
c->subband[0][0] = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static int encode_init(AVCodecContext *avctx)
|
||||
|
|
Loading…
Reference in New Issue