Home
last modified time | relevance | path

Searched refs:OPUS_GET_PITCH (Results 1 – 3 of 3) sorted by relevance

/external/libopus/tests/
Dtest_opus_api.c182 err=opus_decoder_ctl(dec, OPUS_GET_PITCH(null_int_ptr)); in test_dec_api()
186 err=opus_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_dec_api()
194 err=opus_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_dec_api()
201 err=opus_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_dec_api()
609 err=opus_multistream_decoder_ctl(dec, OPUS_GET_PITCH(null_int_ptr)); in test_msdec_api()
613 err=opus_multistream_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_msdec_api()
621 err=opus_multistream_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_msdec_api()
628 err=opus_multistream_decoder_ctl(dec, OPUS_GET_PITCH(&i)); in test_msdec_api()
/external/libopus/include/
Dopus_defines.h769 #define OPUS_GET_PITCH(x) OPUS_GET_PITCH_REQUEST, __opus_check_int_ptr(x) macro
/external/libopus/src/
Dopus_decoder.c898 ret = celt_decoder_ctl(celt_dec, OPUS_GET_PITCH(value)); in opus_decoder_ctl()