Home
last modified time | relevance | path

Searched refs:opus_multistream_decode (Results 1 – 9 of 9) sorted by relevance

/external/libopus/fuzzer/
Dopus_dec_fuzzer.cpp36 #define OPUS_DEC_DECODE_API opus_multistream_decode
/external/libopus/include/
Dopus_multistream.h585 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_multistream_decode(
/external/libopus/tests/
Dtest_opus_api.c618 if(opus_multistream_decode(dec, packet, 3, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api()
625 if(opus_multistream_decode(dec, packet, 1, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api()
650 if(opus_multistream_decode(dec, packet, 51, sbuf, 960, 0)!=OPUS_INVALID_PACKET)test_failed(); in test_msdec_api()
654 …if(opus_multistream_decode(dec, packet, -1, sbuf, 960, 0)!=OPUS_BAD_ARG){printf("%d\n",opus_multis… in test_msdec_api()
656 if(opus_multistream_decode(dec, packet, 3, sbuf, -960, 0)!=OPUS_BAD_ARG)test_failed(); in test_msdec_api()
658 if(opus_multistream_decode(dec, packet, 3, sbuf, 60, 0)!=OPUS_BUFFER_TOO_SMALL)test_failed(); in test_msdec_api()
660 if(opus_multistream_decode(dec, packet, 3, sbuf, 480, 0)!=OPUS_BUFFER_TOO_SMALL)test_failed(); in test_msdec_api()
662 if(opus_multistream_decode(dec, packet, 3, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api()
676 if(opus_multistream_decode(0,packet,1,outbuf,2880,0) !=OPUS_INVALID_STATE)test_failed(); in test_msdec_api()
Dtest_opus_encode.c567 out_samples = opus_multistream_decode(MSdec, packet, len, out2buf, MAX_FRAME_SAMP, 0); in run_test1()
573 …out_samples = opus_multistream_decode(MSdec_err, packet, loss?0:len, out2buf, frame_size*6, (fast_… in run_test1()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/opus/src/main/jni/
Dopus_jni.cc139 sampleCount = opus_multistream_decode(decoder, inputBuffer, inputSize, in DECODER_FUNC()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/opus/src/main/jni/
Dopus_jni.cc130 sampleCount = opus_multistream_decode(decoder, inputBuffer, inputSize, in DECODER_FUNC()
/external/libopus/src/
Dopus_multistream_decoder.c374 int opus_multistream_decode( in opus_multistream_decode() function
398 int opus_multistream_decode(OpusMSDecoder *st, const unsigned char *data, in opus_multistream_decode() function
Dopus_demo.c263 #define opus_decode opus_multistream_decode
/external/webrtc/modules/audio_coding/codecs/opus/
Dopus_interface.cc614 res = opus_multistream_decode(inst->multistream_decoder, encoded, in DecodeNative()