From cbb7f56dfeb15c150df20109c3847bf677ad316f Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Fri, 25 Oct 2013 17:23:13 +0200
Subject: [PATCH] metasound & twinvqdec: return the number of read bytes from
 read_bitstream

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
---
 libavcodec/metasound.c | 2 +-
 libavcodec/twinvqdec.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c
index 9cda3369048..5c65f038d5f 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 067df56d730..5e565dbb9fc 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)
-- 
GitLab