Searched refs:opus_multistream_decode (Results 1 – 9 of 9) sorted by relevance
/external/libopus/fuzzer/ |
D | opus_dec_fuzzer.cpp | 36 #define OPUS_DEC_DECODE_API opus_multistream_decode
|
/external/libopus/include/ |
D | opus_multistream.h | 585 OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int opus_multistream_decode(
|
/external/libopus/tests/ |
D | test_opus_api.c | 618 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()
|
D | test_opus_encode.c | 567 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/ |
D | opus_jni.cc | 139 sampleCount = opus_multistream_decode(decoder, inputBuffer, inputSize, in DECODER_FUNC()
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/opus/src/main/jni/ |
D | opus_jni.cc | 130 sampleCount = opus_multistream_decode(decoder, inputBuffer, inputSize, in DECODER_FUNC()
|
/external/libopus/src/ |
D | opus_multistream_decoder.c | 374 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
|
D | opus_demo.c | 263 #define opus_decode opus_multistream_decode
|
/external/webrtc/modules/audio_coding/codecs/opus/ |
D | opus_interface.cc | 614 res = opus_multistream_decode(inst->multistream_decoder, encoded, in DecodeNative()
|