diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-30 14:57:21 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-02 21:07:01 -0500 |
commit | e4169612a150353cb463ba2c23e88ce1ac254e93 (patch) | |
tree | ddf455851e050395b24ed253e42fe6c7000780dd /libavcodec/apedec.c | |
parent | 0759c8eb100a6ed992f6cff6861dd99c3c52ff3c (diff) | |
download | ffmpeg-e4169612a150353cb463ba2c23e88ce1ac254e93.tar.gz |
apedec: av_fast_malloc() instead of av_realloc()
av_realloc() does not guarantee alignment, which is required for
DSPContext.bswap_buf().
Diffstat (limited to 'libavcodec/apedec.c')
-rw-r--r-- | libavcodec/apedec.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/apedec.c b/libavcodec/apedec.c index c9bcc0919d..f2504faed6 100644 --- a/libavcodec/apedec.c +++ b/libavcodec/apedec.c @@ -155,6 +155,7 @@ typedef struct APEContext { uint8_t *data; ///< current frame data uint8_t *data_end; ///< frame data end + int data_size; ///< frame data allocated size const uint8_t *ptr; ///< current position in frame data int error; @@ -171,6 +172,8 @@ static av_cold int ape_decode_close(AVCodecContext *avctx) av_freep(&s->filterbuf[i]); av_freep(&s->data); + s->data_size = 0; + return 0; } @@ -826,7 +829,6 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data, if(!s->samples){ uint32_t nblocks, offset; - void *tmp_data; int buf_size; if (!avpkt->size) { @@ -843,10 +845,9 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data, "extra bytes at the end will be skipped.\n"); } - tmp_data = av_realloc(s->data, buf_size); - if (!tmp_data) + av_fast_malloc(&s->data, &s->data_size, buf_size); + if (!s->data) return AVERROR(ENOMEM); - s->data = tmp_data; s->dsp.bswap_buf((uint32_t*)s->data, (const uint32_t*)buf, buf_size >> 2); s->ptr = s->data; s->data_end = s->data + buf_size; |