diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-10-25 17:23:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-25 17:24:07 +0200 |
commit | cbb7f56dfeb15c150df20109c3847bf677ad316f (patch) | |
tree | eb5dcc3d2e6fbdc8a49398bffbc4c81c786719a2 /libavcodec/twinvqdec.c | |
parent | f5dae4894d1078ac8a56026e9ad55c2f0575ce1e (diff) | |
download | ffmpeg-cbb7f56dfeb15c150df20109c3847bf677ad316f.tar.gz |
metasound & twinvqdec: return the number of read bytes from read_bitstream
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/twinvqdec.c')
-rw-r--r-- | libavcodec/twinvqdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/twinvqdec.c b/libavcodec/twinvqdec.c index 067df56d73..5e565dbb9f 100644 --- a/libavcodec/twinvqdec.c +++ b/libavcodec/twinvqdec.c @@ -312,7 +312,7 @@ static int twinvq_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx, } } - return 0; + return (get_bits_count(&gb) + 7) / 8; } static av_cold int twinvq_decode_init(AVCodecContext *avctx) |