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;
923 int bandwidth;
926 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND + ((data[0]>>5)&0x3);
927 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND)
928 bandwidth = OPUS_BANDWIDTH_NARROWBAND;
931 bandwidth = (data[0]&0x10) ? OPUS_BANDWIDTH_FULLBAND :
934 bandwidth = OPUS_BANDWIDTH_NARROWBAND + ((data[0]>>5)&0x3);
936 return bandwidth;