comparison aac.h @ 8005:43fabceb40f2 libavcodec

Correct documentation of ch_select array. Patch by Alex Converse (alex converse gmail com)
author superdump
date Mon, 06 Oct 2008 16:18:18 +0000
parents c4a4495715dd
children 7baa25290231
comparison
equal deleted inserted replaced
8004:8fd8f23be794 8005:43fabceb40f2
188 typedef struct { 188 typedef struct {
189 enum CouplingPoint coupling_point; ///< The point during decoding at which coupling is applied. 189 enum CouplingPoint coupling_point; ///< The point during decoding at which coupling is applied.
190 int num_coupled; ///< number of target elements 190 int num_coupled; ///< number of target elements
191 enum RawDataBlockType type[8]; ///< Type of channel element to be coupled - SCE or CPE. 191 enum RawDataBlockType type[8]; ///< Type of channel element to be coupled - SCE or CPE.
192 int id_select[8]; ///< element id 192 int id_select[8]; ///< element id
193 int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for left channel; 193 int ch_select[8]; /**< [0] shared list of gains; [1] list of gains for right channel;
194 * [2] list of gains for right channel; [3] lists of gains for both channels 194 * [2] list of gains for left channel; [3] lists of gains for both channels
195 */ 195 */
196 float gain[16][120]; 196 float gain[16][120];
197 } ChannelCoupling; 197 } ChannelCoupling;
198 198
199 /** 199 /**