Home | History | Annotate | Download | only in src

Lines Matching defs:bandwidth

68    int          bandwidth;
358 if( st->bandwidth == OPUS_BANDWIDTH_NARROWBAND ) {
360 } else if( st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND ) {
362 } else if( st->bandwidth == OPUS_BANDWIDTH_WIDEBAND ) {
433 switch(st->bandwidth)
664 st->bandwidth = packet_bandwidth;
684 st->bandwidth = packet_bandwidth;
824 *value = st->bandwidth;
943 int bandwidth;
946 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND + ((data[0]>>5)&0x3);
947 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND)
948 bandwidth = OPUS_BANDWIDTH_NARROWBAND;
951 bandwidth = (data[0]&0x10) ? OPUS_BANDWIDTH_FULLBAND :
954 bandwidth = OPUS_BANDWIDTH_NARROWBAND + ((data[0]>>5)&0x3);
956 return bandwidth;