Lines Matching refs:index
197 int noise_idx; ///< index for dithering noise table
344 * @param sb subband index
369 * @param sb subband index
800 unsigned index = qdm2_get_vlc(gb, &vlc_tab_type30, 0, 1);
801 if (index >= FF_ARRAY_ELEMS(type30_dequant)) {
802 av_log(NULL, AV_LOG_ERROR, "index %d out of type30_dequant array\n", index);
805 samples[0] = type30_dequant[index];
820 unsigned index = qdm2_get_vlc(gb, &vlc_tab_type34, 0, 1);
821 if (index >= FF_ARRAY_ELEMS(type34_delta)) {
822 av_log(NULL, AV_LOG_ERROR, "index %d out of type34_delta array\n", index);
825 samples[0] = type34_delta[index] / type34_div + type34_predictor;
1563 * @param index subpacket number
1565 static void qdm2_synthesis_filter(QDM2Context *q, int index)
1575 q->sb_samples[ch][(8 * index) + i][k] = 0;
1585 q->sb_samples[ch][(8 * index) + i]);