Home
last modified time | relevance | path

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

/external/libopus/src/
Dopus_demo.c103 {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()
Dopus_encoder.c264 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 …]
Dopus_decoder.c349 } 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/
Dopus_defines.h199 #define OPUS_BANDWIDTH_MEDIUMBAND 1102 /**< 6 kHz bandpass @hideinitializer*/ macro
/external/libopus/tests/
Dtest_opus_api.c1231 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()
Dtest_opus_encode.c278 if(modes[j]==2&&bw==OPUS_BANDWIDTH_MEDIUMBAND)bw+=3; in run_test1()