Commit 6e70f0d9 authored by jbr's avatar jbr

add definitions and documentation for shared functions for E-AC-3 decoding

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14991 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b57a899c
...@@ -168,4 +168,16 @@ typedef struct { ...@@ -168,4 +168,16 @@ typedef struct {
///@} ///@}
} AC3DecodeContext; } 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 */ #endif /* FFMPEG_AC3DEC_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment