Searched refs:OPUS_BANDWIDTH_NARROWBAND (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/opus/src/src/ |
D | opus_demo.c | 101 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960*3, 1}, 102 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960*2, 1}, 103 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960, 1}, 104 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 480, 1}, 105 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960*3, 2}, 106 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960*2, 2}, 107 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960, 2}, 108 {MODE_SILK_ONLY, OPUS_BANDWIDTH_NARROWBAND, 480, 2} 151 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 960, 1}, 156 {MODE_CELT_ONLY, OPUS_BANDWIDTH_NARROWBAND, 480, 1}, [all …]
|
D | opus_encoder.c | 297 toc = (bandwidth-OPUS_BANDWIDTH_NARROWBAND)<<5; in gen_toc() 1046 st->detected_bandwidth = OPUS_BANDWIDTH_NARROWBAND; in opus_encode_native() 1071 int bw = st->bandwidth == 0 ? OPUS_BANDWIDTH_NARROWBAND : st->bandwidth; in opus_encode_native() 1081 bw=OPUS_BANDWIDTH_NARROWBAND; in opus_encode_native() 1296 } while (--bandwidth>OPUS_BANDWIDTH_NARROWBAND); in opus_encode_native() 1324 if (st->Fs <= 8000 && st->bandwidth > OPUS_BANDWIDTH_NARROWBAND) in opus_encode_native() 1325 st->bandwidth = OPUS_BANDWIDTH_NARROWBAND; in opus_encode_native() 1336 min_detected_bandwidth = OPUS_BANDWIDTH_NARROWBAND; in opus_encode_native() 1361 st->bandwidth = OPUS_BANDWIDTH_NARROWBAND; in opus_encode_native() 1524 if (st->bandwidth == OPUS_BANDWIDTH_NARROWBAND) in opus_encode_native() [all …]
|
D | opus_decoder.c | 327 if( st->bandwidth == OPUS_BANDWIDTH_NARROWBAND ) { in opus_decode_frame() 404 case OPUS_BANDWIDTH_NARROWBAND: in opus_decode_frame() 1048 bandwidth = OPUS_BANDWIDTH_NARROWBAND; in opus_packet_get_bandwidth() 1054 bandwidth = OPUS_BANDWIDTH_NARROWBAND + ((data[0]>>5)&0x3); in opus_packet_get_bandwidth()
|
D | opus_multistream_encoder.c | 777 opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(OPUS_BANDWIDTH_NARROWBAND)); in opus_multistream_encode_native()
|
/external/chromium_org/third_party/opus/src/include/ |
D | opus_defines.h | 184 #define OPUS_BANDWIDTH_NARROWBAND 1101 /**< 4 kHz bandpass @hideinitializer*/ macro
|
/external/chromium_org/third_party/opus/src/tests/ |
D | test_opus_encode.c | 263 bw=modes[j]==0?OPUS_BANDWIDTH_NARROWBAND+(fast_rand()%3): in run_test1() 265 OPUS_BANDWIDTH_NARROWBAND+(fast_rand()%5); in run_test1()
|
D | test_opus_api.c | 282 bw=OPUS_BANDWIDTH_NARROWBAND+(((((bw&7)*9)&(63-(bw&8)))+2+12*((bw&8)!=0))>>4); in test_dec_api() 1221 i=OPUS_BANDWIDTH_NARROWBAND; in test_enc_api() 1239 if(err!=OPUS_OK || (i!=OPUS_BANDWIDTH_NARROWBAND&& in test_enc_api() 1256 i=OPUS_BANDWIDTH_NARROWBAND; in test_enc_api() 1274 if(err!=OPUS_OK || (i!=OPUS_BANDWIDTH_NARROWBAND&& in test_enc_api()
|