• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching refs:WMALL_MAX_CHANNELS

39 #define WMALL_MAX_CHANNELS      8                       ///< max number of handled channels
107 int16_t *samples_16[WMALL_MAX_CHANNELS]; ///< current samplebuffer pointer (16-bit)
108 int32_t *samples_32[WMALL_MAX_CHANNELS]; ///< current samplebuffer pointer (24-bit)
116 int8_t channel_indexes_for_cur_subframe[WMALL_MAX_CHANNELS];
118 WmallChannelCtx channel[WMALL_MAX_CHANNELS]; ///< per channel data
131 int acfilter_prevvalues[WMALL_MAX_CHANNELS][16];
135 int16_t mclms_coeffs[WMALL_MAX_CHANNELS * WMALL_MAX_CHANNELS * 32];
136 int16_t mclms_coeffs_cur[WMALL_MAX_CHANNELS * WMALL_MAX_CHANNELS];
137 int16_t mclms_prevvalues[WMALL_MAX_CHANNELS * 2 * 32];
138 int16_t mclms_updates[WMALL_MAX_CHANNELS * 2 * 32];
153 } cdlms[WMALL_MAX_CHANNELS][9];
155 int cdlms_ttl[WMALL_MAX_CHANNELS];
159 int is_channel_coded[WMALL_MAX_CHANNELS];
160 int update_speed[WMALL_MAX_CHANNELS];
162 int transient[WMALL_MAX_CHANNELS];
163 int transient_pos[WMALL_MAX_CHANNELS];
166 int ave_sum[WMALL_MAX_CHANNELS];
168 int channel_residues[WMALL_MAX_CHANNELS][WMALL_BLOCK_MAX_SIZE];
170 int lpc_coefs[WMALL_MAX_CHANNELS][40];
175 int channel_coeffs[WMALL_MAX_CHANNELS][WMALL_BLOCK_MAX_SIZE];
269 } else if (s->num_channels > WMALL_MAX_CHANNELS) {
271 "More than %d channels", WMALL_MAX_CHANNELS);
333 uint16_t num_samples[WMALL_MAX_CHANNELS] = { 0 }; /* sum of samples for all currently known subframes of a channel */
334 uint8_t contains_subframe[WMALL_MAX_CHANNELS]; /* flag indicating if a channel contains the current subframe */
704 int icoef, pred[WMALL_MAX_CHANNELS] = { 0 };