diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-10 14:37:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-10 15:18:29 +0200 |
commit | 8b7a39d7ea4b716608c4091cd25ae6c88bd0251a (patch) | |
tree | 8395036303a005e97b8f237f427707e3d1691c87 | |
parent | 3294fc8c474bc87f398d32a94b1bc92414acfbce (diff) | |
download | ffmpeg-8b7a39d7ea4b716608c4091cd25ae6c88bd0251a.tar.gz |
avcodec/adpcmenc: Use FF_ALLOC_ARRAY_OR_GOTO()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/adpcmenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcmenc.c b/libavcodec/adpcmenc.c index 06dee35422..ea6cc23e97 100644 --- a/libavcodec/adpcmenc.c +++ b/libavcodec/adpcmenc.c @@ -509,7 +509,7 @@ static int adpcm_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, /* stereo: 4 bytes (8 samples) for left, 4 bytes for right */ if (avctx->trellis > 0) { - FF_ALLOC_OR_GOTO(avctx, buf, avctx->channels * blocks * 8, error); + FF_ALLOC_ARRAY_OR_GOTO(avctx, buf, avctx->channels, blocks * 8, error); for (ch = 0; ch < avctx->channels; ch++) { adpcm_compress_trellis(avctx, &samples_p[ch][1], buf + ch * blocks * 8, &c->status[ch], |