comparison g729dec.c @ 9823:4a5f2453973d libavcodec

Convert structure names to FFmpeg style
author voroshil
date Sat, 06 Jun 2009 12:42:11 +0000
parents b72fbafc9408
children 7679262f1459
comparison
equal deleted inserted replaced
9822:2887f410011f 9823:4a5f2453973d
78 uint8_t unpacked_frame_size;///< output frame size (in bytes) 78 uint8_t unpacked_frame_size;///< output frame size (in bytes)
79 uint8_t fc_indexes_bits; ///< size (in bits) of fixed-codebook index entry 79 uint8_t fc_indexes_bits; ///< size (in bits) of fixed-codebook index entry
80 80
81 /// mr_energy = mean_energy + 10 * log10(2^26 * subframe_size) in (7.13) 81 /// mr_energy = mean_energy + 10 * log10(2^26 * subframe_size) in (7.13)
82 int mr_energy; 82 int mr_energy;
83 } G729_format_description; 83 } G729FormatDescription;
84 84
85 /** 85 /**
86 * \brief pseudo random number generator 86 * \brief pseudo random number generator
87 */ 87 */
88 static inline uint16_t g729_prng(uint16_t value) 88 static inline uint16_t g729_prng(uint16_t value)
152 AVCodec g729_decoder = 152 AVCodec g729_decoder =
153 { 153 {
154 "g729", 154 "g729",
155 CODEC_TYPE_AUDIO, 155 CODEC_TYPE_AUDIO,
156 CODEC_ID_G729, 156 CODEC_ID_G729,
157 sizeof(G729_Context), 157 sizeof(G729Context),
158 decoder_init, 158 decoder_init,
159 NULL, 159 NULL,
160 NULL, 160 NULL,
161 decode_frame, 161 decode_frame,
162 .long_name = NULL_IF_CONFIG_SMALL("G.729"), 162 .long_name = NULL_IF_CONFIG_SMALL("G.729"),