OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opus_encoder_ctl
(Results
1 - 9
of
9
) sorted by null
/external/libopus/tests/
test_opus_encode.c
181
if(
opus_encoder_ctl
(tmp_enc, OPUS_GET_LSB_DEPTH(&j))!=OPUS_OK)test_failed();
230
if(
opus_encoder_ctl
(enc, OPUS_SET_BANDWIDTH(OPUS_AUTO))!=OPUS_OK)test_failed();
231
if(
opus_encoder_ctl
(enc, OPUS_SET_FORCE_MODE(-2))!=OPUS_BAD_ARG)test_failed();
235
if(
opus_encoder_ctl
(enc, OPUS_SET_VBR(rc<2))!=OPUS_OK)test_failed();
236
if(
opus_encoder_ctl
(enc, OPUS_SET_VBR_CONSTRAINT(rc==1))!=OPUS_OK)test_failed();
237
if(
opus_encoder_ctl
(enc, OPUS_SET_VBR_CONSTRAINT(rc==1))!=OPUS_OK)test_failed();
238
if(
opus_encoder_ctl
(enc, OPUS_SET_INBAND_FEC(rc==0))!=OPUS_OK)test_failed();
252
if(
opus_encoder_ctl
(enc, OPUS_RESET_STATE)!=OPUS_OK)test_failed();
265
if(
opus_encoder_ctl
(enc, OPUS_SET_COMPLEXITY(complex))!=OPUS_OK)test_failed();
268
if(
opus_encoder_ctl
(enc, OPUS_SET_INBAND_FEC(rc==0))!=OPUS_OK)test_failed()
[
all
...]
test_opus_api.c
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
opus_interface.c
161
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_BITRATE(rate));
169
return
opus_encoder_ctl
(inst->encoder,
193
return
opus_encoder_ctl
(inst->encoder,
199
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_INBAND_FEC(1));
207
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_INBAND_FEC(0));
223
int ret =
opus_encoder_ctl
(inst->encoder,
228
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_DTX(1));
233
int ret =
opus_encoder_ctl
(inst->encoder,
237
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_DTX(0));
245
return
opus_encoder_ctl
(inst->encoder, OPUS_SET_COMPLEXITY(complexity))
[
all
...]
opus_unittest.cc
98
opus_encoder_ctl
(opus_encoder_->encoder,
352
opus_encoder_ctl
(opus_encoder_->encoder,
467
opus_encoder_ctl
(opus_encoder_->encoder,
473
opus_encoder_ctl
(opus_encoder_->encoder,
479
opus_encoder_ctl
(opus_encoder_->encoder,
/external/libopus/src/
opus_demo.c
193
#define
opus_encoder_ctl
opus_multistream_encoder_ctl
534
opus_encoder_ctl
(enc, OPUS_SET_BITRATE(bitrate_bps));
535
opus_encoder_ctl
(enc, OPUS_SET_BANDWIDTH(bandwidth));
536
opus_encoder_ctl
(enc, OPUS_SET_VBR(use_vbr));
537
opus_encoder_ctl
(enc, OPUS_SET_VBR_CONSTRAINT(cvbr));
538
opus_encoder_ctl
(enc, OPUS_SET_COMPLEXITY(complexity));
539
opus_encoder_ctl
(enc, OPUS_SET_INBAND_FEC(use_inbandfec));
540
opus_encoder_ctl
(enc, OPUS_SET_FORCE_CHANNELS(forcechannels));
541
opus_encoder_ctl
(enc, OPUS_SET_DTX(use_dtx));
542
opus_encoder_ctl
(enc, OPUS_SET_PACKET_LOSS_PERC(packet_loss_perc))
[
all
...]
opus_multistream_encoder.c
436
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_SET_LFE(1));
443
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_SET_LFE(1));
610
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_GET_SAMPLE_RATE(&Fs));
706
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_GET_SAMPLE_RATE(&Fs));
707
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_GET_VBR(&vbr));
708
opus_encoder_ctl
((OpusEncoder*)ptr, CELT_GET_MODE(&celt_mode));
715
opus_encoder_ctl
((OpusEncoder*)ptr, OPUS_GET_LOOKAHEAD(&delay_compensation));
771
opus_encoder_ctl
(enc, OPUS_SET_BITRATE(bitrates[s]));
779
opus_encoder_ctl
(enc, OPUS_SET_BANDWIDTH(OPUS_BANDWIDTH_FULLBAND));
781
opus_encoder_ctl
(enc, OPUS_SET_BANDWIDTH(OPUS_BANDWIDTH_SUPERWIDEBAND))
[
all
...]
opus_encoder.c
2027
int
opus_encoder_ctl
(OpusEncoder *st, int request, ...)
function
[
all
...]
/external/libopus/doc/
trivial_example.c
81
err =
opus_encoder_ctl
(encoder, OPUS_SET_BITRATE(BITRATE));
/external/libopus/include/
opus.h
111
* It is possible to change some of the encoder's settings using the
opus_encoder_ctl
()
116
*
opus_encoder_ctl
(enc, OPUS_SET_BITRATE(bitrate));
117
*
opus_encoder_ctl
(enc, OPUS_SET_COMPLEXITY(complexity));
118
*
opus_encoder_ctl
(enc, OPUS_SET_SIGNAL(signal_type));
328
OPUS_EXPORT int
opus_encoder_ctl
(OpusEncoder *st, int request, ...) OPUS_ARG_NONNULL(1);
[
all
...]
Completed in 158 milliseconds