Home
last modified time | relevance | path

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

/external/libopus/doc/
Dtrivial_example.c71 encoder = opus_encoder_create(SAMPLE_RATE, CHANNELS, APPLICATION, &err); in main()
/external/libopus/tests/
Dtest_opus_api.c1107 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()
1123 enc = opus_encoder_create(48000, 2, OPUS_AUTO, NULL); in test_enc_api()
1128 enc = opus_encoder_create(48000, 2, OPUS_AUTO, &err); in test_enc_api()
1133 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, NULL); in test_enc_api()
1139 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_RESTRICTED_LOWDELAY, &err); in test_enc_api()
1148 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_AUDIO, &err); in test_enc_api()
1157 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, &err); in test_enc_api()
1825 enc=opus_encoder_create(opus_rates[rate], c, opus_apps[app],ep); in test_malloc_fail()
Dtest_opus_encode.c144 enc = opus_encoder_create(48000, 2, OPUS_APPLICATION_VOIP, &err); in run_test1()
/external/libopus/include/
Dopus.h208 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT OpusEncoder *opus_encoder_create(
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.c70 state->encoder = opus_encoder_create(48000, (int)channels, opus_app, in WebRtcOpus_EncoderCreate()
/external/libopus/src/
Dopus_demo.c195 #define opus_encoder_create ms_opus_encoder_create
523 enc = opus_encoder_create(sampling_rate, channels, application, &err); in main()
Dopus_encoder.c482 OpusEncoder *opus_encoder_create(opus_int32 Fs, int channels, int application, int *error) in opus_encoder_create() function