Home
last modified time | relevance | path

Searched refs:OPUS_BANDWIDTH_MEDIUMBAND (Results 1 – 9 of 9) sorted by relevance

/external/libopus/src/
Dopus_demo.c96 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*3, 1},
97 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*2, 1},
98 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960, 1},
99 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 480, 1},
100 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*3, 2},
101 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960*2, 2},
102 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 960, 2},
103 {MODE_SILK_ONLY, OPUS_BANDWIDTH_MEDIUMBAND, 480, 2}
354 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in main()
557 case OPUS_BANDWIDTH_MEDIUMBAND: in main()
Dopus_encoder.c289 int tmp = bandwidth-OPUS_BANDWIDTH_MEDIUMBAND; in gen_toc()
1194 st->detected_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native()
1266 else if (tocmode==MODE_CELT_ONLY&&bw==OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native()
1478 threshold = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)]; in opus_encode_native()
1479 hysteresis = bandwidth_thresholds[2*(bandwidth-OPUS_BANDWIDTH_MEDIUMBAND)+1]; in opus_encode_native()
1492 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native()
1519 if (st->Fs <= 12000 && st->bandwidth > OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native()
1520 st->bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native()
1535 min_detected_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in opus_encode_native()
1552 if (st->mode == MODE_CELT_ONLY && st->bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_encode_native()
[all …]
Dopus_decoder.c383 } else if( bandwidth == OPUS_BANDWIDTH_MEDIUMBAND ) { in opus_decode_frame()
477 case OPUS_BANDWIDTH_MEDIUMBAND: in opus_decode_frame()
977 bandwidth = OPUS_BANDWIDTH_MEDIUMBAND + ((data[0]>>5)&0x3); in opus_packet_get_bandwidth()
978 if (bandwidth == OPUS_BANDWIDTH_MEDIUMBAND) in opus_packet_get_bandwidth()
/external/libopus/tests/
Dopus_encode_regressions.c375 opus_multistream_encoder_ctl(enc, OPUS_SET_MAX_BANDWIDTH(OPUS_BANDWIDTH_MEDIUMBAND)); in mscbr_encode_fail()
1016 opus_encoder_ctl(enc, OPUS_SET_MAX_BANDWIDTH(OPUS_BANDWIDTH_MEDIUMBAND)); in silk_gain_assert()
Dtest_opus_encode.c198 int max_bandwidths[6] = {OPUS_BANDWIDTH_NARROWBAND, OPUS_BANDWIDTH_MEDIUMBAND, in fuzz_encoder_settings()
434 if(modes[j]==2&&bw==OPUS_BANDWIDTH_MEDIUMBAND)bw+=3; in run_test1()
Dtest_opus_api.c1229 i=OPUS_BANDWIDTH_MEDIUMBAND; in test_enc_api()
1239 i!=OPUS_BANDWIDTH_MEDIUMBAND&&i!=OPUS_BANDWIDTH_WIDEBAND&& in test_enc_api()
1264 i=OPUS_BANDWIDTH_MEDIUMBAND; in test_enc_api()
1274 i!=OPUS_BANDWIDTH_MEDIUMBAND&&i!=OPUS_BANDWIDTH_WIDEBAND&& in test_enc_api()
/external/libopus/include/
Dopus_defines.h203 #define OPUS_BANDWIDTH_MEDIUMBAND 1102 /**< 6 kHz bandpass @hideinitializer*/ macro
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_unittest.cc532 SetMaxPlaybackRate(opus_encoder_, OPUS_BANDWIDTH_MEDIUMBAND, 12000); in TEST_P()
533 SetMaxPlaybackRate(opus_encoder_, OPUS_BANDWIDTH_MEDIUMBAND, 8001); in TEST_P()
Dopus_interface.c185 set_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in WebRtcOpus_SetMaxPlaybackRate()