Lines Matching refs:coup
2365 ChannelCoupling *coup = &che->coup;
2367 coup->coupling_point = 2 * get_bits1(gb);
2368 coup->num_coupled = get_bits(gb, 3);
2369 for (c = 0; c <= coup->num_coupled; c++) {
2371 coup->type[c] = get_bits1(gb) ? TYPE_CPE : TYPE_SCE;
2372 coup->id_select[c] = get_bits(gb, 4);
2373 if (coup->type[c] == TYPE_CPE) {
2374 coup->ch_select[c] = get_bits(gb, 2);
2375 if (coup->ch_select[c] == 3)
2378 coup->ch_select[c] = 2;
2380 coup->coupling_point += get_bits1(gb) || (coup->coupling_point >> 1);
2398 cge = coup->coupling_point == AFTER_IMDCT ? 1 : get_bits1(gb);
2406 if (coup->coupling_point == AFTER_IMDCT) {
2407 coup->gain[c][0] = gain_cache;
2428 coup->gain[c][idx] = gain_cache;
3011 if (cce && cce->coup.coupling_point == coupling_point) {
3012 ChannelCoupling *coup = &cce->coup;
3014 for (c = 0; c <= coup->num_coupled; c++) {
3015 if (coup->type[c] == type && coup->id_select[c] == elem_id) {
3016 if (coup->ch_select[c] != 1) {
3018 if (coup->ch_select[c] != 0)
3021 if (coup->ch_select[c] != 2)
3024 index += 1 + (coup->ch_select[c] == 3);
3070 if (type != TYPE_CCE || che->coup.coupling_point == AFTER_IMDCT) {