• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:DCA_PRIM_CHANNELS_MAX

52 #define DCA_PRIM_CHANNELS_MAX  (7)
320 int subband_activity[DCA_PRIM_CHANNELS_MAX]; ///< subband activity count
321 int vq_start_subband[DCA_PRIM_CHANNELS_MAX]; ///< high frequency vq start subband
322 int joint_intensity[DCA_PRIM_CHANNELS_MAX]; ///< joint intensity coding index
323 int transient_huffman[DCA_PRIM_CHANNELS_MAX]; ///< transient mode code book
324 int scalefactor_huffman[DCA_PRIM_CHANNELS_MAX]; ///< scale factor code book
325 int bitalloc_huffman[DCA_PRIM_CHANNELS_MAX]; ///< bit allocation quantizer select
326 int quant_index_huffman[DCA_PRIM_CHANNELS_MAX][DCA_ABITS_MAX]; ///< quantization index codebook select
327 float scalefactor_adj[DCA_PRIM_CHANNELS_MAX][DCA_ABITS_MAX]; ///< scale factor adjustment
332 int prediction_mode[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< prediction mode (ADPCM used or not)
333 int prediction_vq[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< prediction VQ coefs
334 int bitalloc[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< bit allocation index
335 int transition_mode[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< transition mode (transients)
336 int scale_factor[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][2]; ///< scale factors (2 if transient)
337 int joint_huff[DCA_PRIM_CHANNELS_MAX]; ///< joint subband scale factors codebook
338 int joint_scale_factor[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< joint subband scale factors
339 int downmix_coef[DCA_PRIM_CHANNELS_MAX][2]; ///< stereo downmix coefficients
342 int high_freq_vq[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS]; ///< VQ encoded high frequency subbands
348 DECLARE_ALIGNED(16, float, subband_samples_hist)[DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][4];
349 DECLARE_ALIGNED(32, float, subband_fir_hist)[DCA_PRIM_CHANNELS_MAX][512];
350 DECLARE_ALIGNED(32, float, subband_fir_noidea)[DCA_PRIM_CHANNELS_MAX][32];
351 int hist_index[DCA_PRIM_CHANNELS_MAX];
357 DECLARE_ALIGNED(32, float, subband_samples)[DCA_BLOCKS_MAX][DCA_PRIM_CHANNELS_MAX][DCA_SUBBANDS][8];
358 DECLARE_ALIGNED(32, float, samples)[(DCA_PRIM_CHANNELS_MAX + 1) * 256];
359 const float *samples_chanptr[DCA_PRIM_CHANNELS_MAX + 1];
472 if (s->prim_channels > DCA_PRIM_CHANNELS_MAX)
473 s->prim_channels = DCA_PRIM_CHANNELS_MAX;
1030 int downmix_coef[DCA_PRIM_CHANNELS_MAX][2],
1036 float coef[DCA_PRIM_CHANNELS_MAX][2];
1038 for (i = 0; i < DCA_PRIM_CHANNELS_MAX; i++) {
1958 for (i = 0; i < DCA_PRIM_CHANNELS_MAX + 1; i++)