summaryrefslogtreecommitdiff
path: root/ac3dec/decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'ac3dec/decode.c')
-rw-r--r--ac3dec/decode.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ac3dec/decode.c b/ac3dec/decode.c
index fb85205..1ff517c 100644
--- a/ac3dec/decode.c
+++ b/ac3dec/decode.c
@@ -31,6 +31,9 @@
* Matjaz Thaler <matjaz.thaler@rd.iskraemeco.si>
* Added support for DVB-s PCI card
*
+ * 24 Nov 2001
+ * Andreas Schultz <aschultz@cs.uni-magdeburg.de>
+ * Added ac3_buffersize()
*/
#ifdef HAVE_CONFIG_H
@@ -96,6 +99,11 @@ static uint32_t buffer_size = 0;;
// for error handling
jmp_buf error_jmp_mark;
+uint32_t ac3_buffersize()
+{
+ return buffer_size;
+}
+
static uint32_t decode_buffer_syncframe (syncinfo_t *syncinfo, uint8_t **start, uint8_t *end)
{
uint8_t *cur = *start;