summaryrefslogtreecommitdiff
path: root/libavcodec/twinvqdec.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2013-08-24 15:00:08 +0200
committerKostya Shishkov <kostya.shishkov@gmail.com>2013-08-26 09:23:39 +0200
commit9e7b62f0fb7462a902330fcc82cf596388f0187b (patch)
treeaae1f336a70d250e218f219b875f95c457404668 /libavcodec/twinvqdec.c
parentb89e8759e053792704741d08cbc41c9ac3c7ed63 (diff)
twinvq: set block align for codecs and use it in size checks
This both allows factoring out size check for both MetaSound and TwinVQ-VQF decoders and fixes the situation when there are several MetaSound frames stuffed together (that happens in 8kHz @ 8kbps MetaSound in ASF for example).
Diffstat (limited to 'libavcodec/twinvqdec.c')
-rw-r--r--libavcodec/twinvqdec.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libavcodec/twinvqdec.c b/libavcodec/twinvqdec.c
index 259a9d68fd..a88b6ffe83 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));
@@ -398,6 +392,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;