Searched refs:opus_multistream_decode (Results 1 – 5 of 5) sorted by relevance
/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 | 622 if(opus_multistream_decode(dec, packet, 3, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api() 629 if(opus_multistream_decode(dec, packet, 1, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api() 654 if(opus_multistream_decode(dec, packet, 51, sbuf, 960, 0)!=OPUS_INVALID_PACKET)test_failed(); in test_msdec_api() 658 …if(opus_multistream_decode(dec, packet, -1, sbuf, 960, 0)!=OPUS_BAD_ARG){printf("%d\n",opus_multis… in test_msdec_api() 660 if(opus_multistream_decode(dec, packet, 3, sbuf, 60, 0)!=OPUS_BUFFER_TOO_SMALL)test_failed(); in test_msdec_api() 662 if(opus_multistream_decode(dec, packet, 3, sbuf, 480, 0)!=OPUS_BUFFER_TOO_SMALL)test_failed(); in test_msdec_api() 664 if(opus_multistream_decode(dec, packet, 3, sbuf, 960, 0)!=960)test_failed(); in test_msdec_api() 678 if(opus_multistream_decode(0,packet,1,outbuf,2880,0) !=OPUS_INVALID_STATE)test_failed(); in test_msdec_api()
|
D | test_opus_encode.c | 375 out_samples = opus_multistream_decode(MSdec, packet, len, out2buf, MAX_FRAME_SAMP, 0); in run_test1() 381 …out_samples = opus_multistream_decode(MSdec_err, packet, loss?0:len, out2buf, frame_size*6, (fast_… in run_test1()
|
/external/libopus/src/ |
D | opus_multistream_decoder.c | 365 int opus_multistream_decode( in opus_multistream_decode() function 389 int opus_multistream_decode(OpusMSDecoder *st, const unsigned char *data, in opus_multistream_decode() function
|
D | opus_demo.c | 192 #define opus_decode opus_multistream_decode
|