diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-18 17:37:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-18 17:37:41 +0200 |
commit | 0b2ac679e20c46d7f1b999b3fa76e2f9601459c5 (patch) | |
tree | c5701cf698e4480da55494f4cf1d8edd4d2deafe | |
parent | 512beea52936f5935a0c6cdaef18364520ea5b7c (diff) | |
download | ffmpeg-0b2ac679e20c46d7f1b999b3fa76e2f9601459c5.tar.gz |
sonic: factorize tail_size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/sonic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c index d412d60391..b7caf4810e 100644 --- a/libavcodec/sonic.c +++ b/libavcodec/sonic.c @@ -547,10 +547,10 @@ static av_cold int sonic_encode_init(AVCodecContext *avctx) s->block_align = (int)(2048.0*s->samplerate/44100)/s->downsampling; s->frame_size = s->channels*s->block_align*s->downsampling; - s->tail = av_mallocz(4* s->num_taps*s->channels); + s->tail_size = s->num_taps*s->channels; + s->tail = av_mallocz(4 * s->tail_size); if (!s->tail) return -1; - s->tail_size = s->num_taps*s->channels; s->predictor_k = av_mallocz(4 * s->num_taps); if (!s->predictor_k) |