changeset 7704:b928055716e5 libavcodec

add definitions and documentation for shared functions for E-AC-3 decoding
author jbr
date Wed, 27 Aug 2008 01:47:03 +0000
parents 3c531ec92268
children 36b17ee44b76
files ac3dec.h
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ac3dec.h	Wed Aug 27 01:40:46 2008 +0000
+++ b/ac3dec.h	Wed Aug 27 01:47:03 2008 +0000
@@ -168,4 +168,16 @@
 ///@}
 } AC3DecodeContext;
 
+/**
+ * Parse the E-AC-3 frame header.
+ * This parses both the bit stream info and audio frame header.
+ */
+int ff_eac3_parse_header(AC3DecodeContext *s);
+
+/**
+ * Decode mantissas in a single channel for the entire frame.
+ * This is used when AHT mode is enabled.
+ */
+void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch);
+
 #endif /* FFMPEG_AC3DEC_H */