Searched refs:OPUS_BANDWIDTH_MEDIUMBAND (Results 1 – 6 of 6) sorted by relevance
/external/libopus/src/ |
D | opus_demo.c | 103 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*3, 1}, 104 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*2, 1}, 105 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960, 1}, 106 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 480, 1}, 107 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*3, 2}, 108 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*2, 2}, 109 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960, 2}, 110 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 480, 2} 360 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in main() 566 case OPUS_BANDWIDTH_MEDIUMBAND: in main()
|
D | opus_encoder.c | 264 int tmp = bandwidth-OPUS_BANDWIDTH_MEDIUMBAND; in gen_toc() 1016 st->detected_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native() 1048 else if (tocmode==MODE_CELT_ONLY&&bw==OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() 1259 threshold = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)]; in opus_encode_native() 1260 hysteresis = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)+1]; in opus_encode_native() 1296 if (st->Fs <= 12000 && st->bandwidth > OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() 1297 st->bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native() 1312 min_detected_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native() 1327 if (st->mode == MODE_CELT_ONLY && st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() 1505 } else if (st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native() [all …]
|
D | opus_decoder.c | 349 } else if( st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND ) { in opus_decode_frame() 427 case OPUS_BANDWIDTH_MEDIUMBAND: in opus_decode_frame() 894 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND + ((data[0]>>5)&0x3); in opus_packet_get_bandwidth() 895 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_packet_get_bandwidth()
|
/external/libopus/include/ |
D | opus_defines.h | 199 #define OPUS_BANDWIDTH_MEDIUMBAND 1102 /**< 6 kHz bandpass @hideinitializer*/ macro
|
/external/libopus/tests/ |
D | test_opus_api.c | 1231 i=OPUS_BANDWIDTH_MEDIUMBAND; in test_enc_api() 1241 i!=OPUS_BANDWIDTH_MEDIUMBAND&&i!=OPUS_BANDWIDTH_WIDEBAND&& in test_enc_api() 1266 i=OPUS_BANDWIDTH_MEDIUMBAND; in test_enc_api() 1276 i!=OPUS_BANDWIDTH_MEDIUMBAND&&i!=OPUS_BANDWIDTH_WIDEBAND&& in test_enc_api()
|
D | test_opus_encode.c | 278 if(modes[j]==2&&bw==OPUS_BANDWIDTH_MEDIUMBAND)bw+=3; in run_test1()
|