Home
last modified time | relevance | path

Searched refs:OPUS_APPLICATION_VOIP (Results 1 – 7 of 7) sorted by relevance

/external/libopus/tests/
Dtest_opus_encode.c144 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, &err); in run_test1()
154 … MSenc = opus_multistream_encoder_create(8000, 0, 1, 0, mapping, OPUS_APPLICATION_VOIP, ret_err); in run_test1()
157 … MSenc = opus_multistream_encoder_create(44100, 2, 2, 0, mapping, OPUS_APPLICATION_VOIP, ret_err); in run_test1()
160 … MSenc = opus_multistream_encoder_create(8000, 2, 2, 3, mapping, OPUS_APPLICATION_VOIP, ret_err); in run_test1()
163 … MSenc = opus_multistream_encoder_create(8000, 2, -1, 0, mapping, OPUS_APPLICATION_VOIP, ret_err); in run_test1()
166 … MSenc = opus_multistream_encoder_create(8000, 256, 2, 0, mapping, OPUS_APPLICATION_VOIP, ret_err); in run_test1()
Dtest_opus_api.c71 static const opus_int32 opus_apps[3] = {OPUS_APPLICATION_VOIP,
1107 enc = opus_encoder_create(fs, c, OPUS_APPLICATION_VOIP, &err); in test_enc_api()
1110 enc = opus_encoder_create(fs, c, OPUS_APPLICATION_VOIP, 0); in test_enc_api()
1116 err = opus_encoder_init(enc, fs, c, OPUS_APPLICATION_VOIP); in test_enc_api()
1133 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, NULL); in test_enc_api()
1157 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, &err); in test_enc_api()
1425 if(opus_encoder_init(0,48000,1,OPUS_APPLICATION_VOIP) !=OPUS_INVALID_STATE)test_failed(); in test_enc_api()
/external/libopus/include/
Dopus_defines.h188 #define OPUS_APPLICATION_VOIP 2048 macro
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.c53 opus_app = OPUS_APPLICATION_VOIP; in WebRtcOpus_EncoderCreate()
Dopus_unittest.cc354 EXPECT_EQ(application_ == 0 ? OPUS_APPLICATION_VOIP : OPUS_APPLICATION_AUDIO, in TEST_P()
/external/libopus/src/
Dopus_encoder.c172 (application != OPUS_APPLICATION_VOIP && application != OPUS_APPLICATION_AUDIO in opus_encoder_init()
487 (application != OPUS_APPLICATION_VOIP && application != OPUS_APPLICATION_AUDIO in opus_encoder_create()
1106 } else if (st->application == OPUS_APPLICATION_VOIP) in opus_encode_native()
1169 if (st->application == OPUS_APPLICATION_VOIP) in opus_encode_native()
1468 if (st->application == OPUS_APPLICATION_VOIP) in opus_encode_native()
2088 if ( (value != OPUS_APPLICATION_VOIP && value != OPUS_APPLICATION_AUDIO in opus_encoder_ctl()
Dopus_demo.c299 application = OPUS_APPLICATION_VOIP; in main()