Home | History | Annotate | Download | only in src

Lines Matching defs:bandwidth

67    int          bandwidth;
347 if( st->bandwidth == OPUS_BANDWIDTH_NARROWBAND ) {
349 } else if( st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND ) {
351 } else if( st->bandwidth == OPUS_BANDWIDTH_WIDEBAND ) {
422 switch(st->bandwidth)
650 st->bandwidth = packet_bandwidth;
670 st->bandwidth = packet_bandwidth;
792 *value = st->bandwidth;
891 int bandwidth;
894 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND + ((data[0]>>5)&0x3);
895 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND)
896 bandwidth = OPUS_BANDWIDTH_NARROWBAND;
899 bandwidth = (data[0]&0x10) ? OPUS_BANDWIDTH_FULLBAND :
902 bandwidth = OPUS_BANDWIDTH_NARROWBAND + ((data[0]>>5)&0x3);
904 return bandwidth;