Browse Source

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

Originally committed as revision 14991 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles 17 years ago
parent
commit
8649e9332c
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      libavcodec/ac3dec.h

+ 12
- 0
libavcodec/ac3dec.h View File

@@ -168,4 +168,16 @@ typedef struct {
///@}
} 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 */

Loading…
Cancel
Save