Home
last modified time | relevance | path

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

/external/libopus/src/
Dopus_encoder.c221 st->user_bitrate_bps = OPUS_AUTO; in opus_encoder_init()
224 st->signal_type = OPUS_AUTO; in opus_encoder_init()
225 st->user_bandwidth = OPUS_AUTO; in opus_encoder_init()
227 st->force_channels = OPUS_AUTO; in opus_encoder_init()
228 st->user_forced_mode = OPUS_AUTO; in opus_encoder_init()
509 if (st->user_bitrate_bps==OPUS_AUTO) in user_bitrate_to_bitrate()
1009 if (st->signal_type == OPUS_AUTO) in opus_encode_native()
1083 if (st->force_channels!=OPUS_AUTO && st->channels == 2) in opus_encode_native()
1113 } else if (st->user_forced_mode == OPUS_AUTO) in opus_encode_native()
1281 if (st->user_bandwidth != OPUS_AUTO) in opus_encode_native()
[all …]
Dopus_demo.c339 bandwidth = OPUS_AUTO; in main()
343 forcechannels = OPUS_AUTO; in main()
578 case OPUS_AUTO: in main()
Dopus_multistream_encoder.c420 st->bitrate_bps = OPUS_AUTO; in opus_multistream_encoder_init_impl()
627 if (st->bitrate_bps==OPUS_AUTO) in surround_rate_allocation()
987 if (value<0 && value!=OPUS_AUTO && value!=OPUS_BITRATE_MAX) in opus_multistream_encoder_ctl()
/external/libopus/tests/
Dtest_opus_encode.c230 if(opus_encoder_ctl(enc, OPUS_SET_BANDWIDTH(OPUS_AUTO))!=OPUS_OK)test_failed(); in run_test1()
314 if(opus_encoder_ctl(enc, OPUS_SET_FORCE_MODE(OPUS_AUTO))!=OPUS_OK)test_failed(); in run_test1()
315 if(opus_encoder_ctl(enc, OPUS_SET_FORCE_CHANNELS(OPUS_AUTO))!=OPUS_OK)test_failed(); in run_test1()
Dtest_opus_api.c1123 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()
1189 CHECK_SETGET(OPUS_SET_APPLICATION(i),OPUS_GET_APPLICATION(&i),-1,OPUS_AUTO, in test_enc_api()
1212 1,OPUS_AUTO, in test_enc_api()
1242 i!=OPUS_BANDWIDTH_FULLBAND&&i!=OPUS_AUTO))test_failed(); in test_enc_api()
1244 if(opus_encoder_ctl(enc,OPUS_SET_BANDWIDTH(OPUS_AUTO))!=OPUS_OK)test_failed(); in test_enc_api()
1344 OPUS_SIGNAL_MUSIC,OPUS_AUTO, in test_enc_api()
/external/libopus/include/
Dopus_defines.h183 #define OPUS_AUTO -1000 /**<Auto/default setting @hideinitializer*/ macro