Lines Matching refs:elChannels
470 int elChannels, ch; in sbrDecoder_InitElement() local
489 case ID_CPE: elChannels=2; in sbrDecoder_InitElement()
492 case ID_SCE: elChannels=1; in sbrDecoder_InitElement()
494 default: elChannels=0; in sbrDecoder_InitElement()
507 elChannels = 2; in sbrDecoder_InitElement()
514 self->pSbrElement[elementIndex]->nChannels = elChannels; in sbrDecoder_InitElement()
516 for (ch=0; ch<elChannels; ch++) in sbrDecoder_InitElement()
534 if (elChannels == 1 && self->pSbrElement[elementIndex]->pSbrChannel[ch] != NULL) { in sbrDecoder_InitElement()
801 int c, elChannels; in sbrDecoder_drcGetChannel() local
808 case ID_CPE: elChannels = 2; in sbrDecoder_drcGetChannel()
811 case ID_SCE: elChannels = 1; in sbrDecoder_drcGetChannel()
814 default: elChannels = 0; in sbrDecoder_drcGetChannel()
819 elChannels = FDKmin(elChannels, pSbrElement->nChannels); in sbrDecoder_drcGetChannel()
821 for (c = 0; (c < elChannels) && (numCh <= channel); c++) { in sbrDecoder_drcGetChannel()