diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-05 10:15:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-05 10:15:03 +0200 |
commit | 22458ccbcc0c512dc2a3143ecdb0a84534c4294f (patch) | |
tree | 626e573d573f39136d07c66e7381e3bb65b64942 /libavcodec | |
parent | 89c3f5a907dfa2b7d79931b5b8a742e474fb117e (diff) | |
download | ffmpeg-22458ccbcc0c512dc2a3143ecdb0a84534c4294f.tar.gz |
avcodec/tta: use init_get_bits8()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 6697d84905..b5ddec4f47 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -160,7 +160,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx) return AVERROR_INVALIDDATA; s->crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE); - init_get_bits(&gb, avctx->extradata, avctx->extradata_size * 8); + init_get_bits8(&gb, avctx->extradata, avctx->extradata_size); if (show_bits_long(&gb, 32) == AV_RL32("TTA1")) { /* signature */ skip_bits_long(&gb, 32); |