diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-26 14:46:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-26 14:47:15 +0200 |
commit | 6063f012f2f1c5c54ad518330d1d8cceba68d855 (patch) | |
tree | 5133427c8c0e564034972be5416a3eef1f65f0d1 | |
parent | e43c672b568e195a01e8748db096eff715eb7b5f (diff) | |
parent | 9e7b62f0fb7462a902330fcc82cf596388f0187b (diff) | |
download | ffmpeg-6063f012f2f1c5c54ad518330d1d8cceba68d855.tar.gz |
Merge commit '9e7b62f0fb7462a902330fcc82cf596388f0187b'
* commit '9e7b62f0fb7462a902330fcc82cf596388f0187b':
twinvq: set block align for codecs and use it in size checks
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/metasound.c | 9 | ||||
-rw-r--r-- | libavcodec/twinvq.c | 8 | ||||
-rw-r--r-- | libavcodec/twinvqdec.c | 9 |
3 files changed, 13 insertions, 13 deletions
diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c index cc221cceb2..9cda336904 100644 --- a/libavcodec/metasound.c +++ b/libavcodec/metasound.c @@ -170,12 +170,6 @@ static int metasound_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx, GetBitContext gb; int i, j, k; - if (buf_size * 8 < avctx->bit_rate * mtab->size / avctx->sample_rate) { - av_log(avctx, AV_LOG_ERROR, - "Frame too small (%d bytes). Truncated file?\n", buf_size); - return AVERROR(EINVAL); - } - init_get_bits(&gb, buf, buf_size * 8); bits->window_type = get_bits(&gb, TWINVQ_WINDOW_TYPE_BITS); @@ -323,6 +317,9 @@ static av_cold int metasound_decode_init(AVCodecContext *avctx) return AVERROR(ENOSYS); } + avctx->block_align = (avctx->bit_rate * tctx->mtab->size + / avctx->sample_rate + 7) / 8; + tctx->codec = TWINVQ_CODEC_METASOUND; tctx->read_bitstream = metasound_read_bitstream; tctx->dec_bark_env = dec_bark_env; diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index 7c4f4997a2..00b423d56d 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -489,6 +489,12 @@ int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data, out = (float **)frame->extended_data; } + if (buf_size < avctx->block_align) { + av_log(avctx, AV_LOG_ERROR, + "Frame too small (%d bytes). Truncated file?\n", buf_size); + return AVERROR(EINVAL); + } + if ((ret = tctx->read_bitstream(avctx, tctx, buf, buf_size)) < 0) return ret; @@ -506,7 +512,7 @@ int ff_twinvq_decode_frame(AVCodecContext *avctx, void *data, *got_frame_ptr = 1; - return buf_size; + return avctx->block_align; } /** diff --git a/libavcodec/twinvqdec.c b/libavcodec/twinvqdec.c index 05a814bfbc..1445733f83 100644 --- a/libavcodec/twinvqdec.c +++ b/libavcodec/twinvqdec.c @@ -258,12 +258,6 @@ static int twinvq_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx, GetBitContext gb; int i, j, k; - if (buf_size * 8 < avctx->bit_rate * mtab->size / avctx->sample_rate + 8) { - av_log(avctx, AV_LOG_ERROR, - "Frame too small (%d bytes). Truncated file?\n", buf_size); - return AVERROR(EINVAL); - } - init_get_bits(&gb, buf, buf_size * 8); skip_bits(&gb, get_bits(&gb, 8)); @@ -403,6 +397,9 @@ static av_cold int twinvq_decode_init(AVCodecContext *avctx) return -1; } + avctx->block_align = (avctx->bit_rate * tctx->mtab->size + / avctx->sample_rate + 15) / 8; + tctx->codec = TWINVQ_CODEC_VQF; tctx->read_bitstream = twinvq_read_bitstream; tctx->dec_bark_env = dec_bark_env; |