summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-25 17:23:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-10-25 17:24:07 +0200
commitcbb7f56dfeb15c150df20109c3847bf677ad316f (patch)
treeeb5dcc3d2e6fbdc8a49398bffbc4c81c786719a2
parentf5dae4894d1078ac8a56026e9ad55c2f0575ce1e (diff)
metasound & twinvqdec: return the number of read bytes from read_bitstream
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/metasound.c2
-rw-r--r--libavcodec/twinvqdec.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c
index 9cda336904..5c65f038d5 100644
--- a/libavcodec/metasound.c
+++ b/libavcodec/metasound.c
@@ -226,7 +226,7 @@ static int metasound_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx,
}
}
- return 0;
+ return (get_bits_count(&gb) + 7) / 8;
}
typedef struct MetasoundProps {
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)