comparison ac3.h @ 6540:b0d44aec1ec0 libavcodec

change name from stream type to frame type in AC3 code
author bwolowiec
date Fri, 28 Mar 2008 20:42:55 +0000
parents 5542d0c04a55
children a409fbf1f42b
comparison
equal deleted inserted replaced
6539:04763b6fd4f0 6540:b0d44aec1ec0
82 uint16_t crc1; 82 uint16_t crc1;
83 uint8_t sr_code; 83 uint8_t sr_code;
84 uint8_t bitstream_id; 84 uint8_t bitstream_id;
85 uint8_t channel_mode; 85 uint8_t channel_mode;
86 uint8_t lfe_on; 86 uint8_t lfe_on;
87 uint8_t stream_type; 87 uint8_t frame_type;
88 /** @} */ 88 /** @} */
89 89
90 /** @defgroup derived Derived values 90 /** @defgroup derived Derived values
91 * @{ 91 * @{
92 */ 92 */
97 uint16_t frame_size; 97 uint16_t frame_size;
98 /** @} */ 98 /** @} */
99 } AC3HeaderInfo; 99 } AC3HeaderInfo;
100 100
101 typedef enum { 101 typedef enum {
102 EAC3_STREAM_TYPE_INDEPENDENT = 0, 102 EAC3_FRAME_TYPE_INDEPENDENT = 0,
103 EAC3_STREAM_TYPE_DEPENDENT, 103 EAC3_FRAME_TYPE_DEPENDENT,
104 EAC3_STREAM_TYPE_AC3_CONVERT, 104 EAC3_FRAME_TYPE_AC3_CONVERT,
105 EAC3_STREAM_TYPE_RESERVED 105 EAC3_FRAME_TYPE_RESERVED
106 } EAC3StreamType; 106 } EAC3FrameType;
107 107
108 void ac3_common_init(void); 108 void ac3_common_init(void);
109 109
110 /** 110 /**
111 * Calculates the log power-spectral density of the input signal. 111 * Calculates the log power-spectral density of the input signal.