mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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)
|
||||
{
|
||||
int32_t *bufer = c->subband[0][0] - DCA_ADPCM_COEFFS;
|
||||
av_freep(&bufer);
|
||||
if (c->subband[0][0]) {
|
||||
int32_t *bufer = c->subband[0][0] - DCA_ADPCM_COEFFS;
|
||||
av_free(bufer);
|
||||
c->subband[0][0] = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static int encode_init(AVCodecContext *avctx)
|
||||
|
Loading…
x
Reference in New Issue
Block a user