OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OPUS_INVALID_STATE
(Results
1 - 3
of
3
) sorted by null
/external/libopus/tests/
test_opus_api.c
326
if(opus_decoder_ctl(0,OPUS_RESET_STATE) !=
OPUS_INVALID_STATE
)test_failed();
327
if(opus_decoder_init(0,48000,1) !=
OPUS_INVALID_STATE
)test_failed();
328
if(opus_decode(0,packet,1,outbuf,2880,0) !=
OPUS_INVALID_STATE
)test_failed();
329
if(opus_decode_float(0,packet,1,0,2880,0) !=
OPUS_INVALID_STATE
)test_failed();
330
if(opus_decoder_get_nb_samples(0,packet,1) !=
OPUS_INVALID_STATE
)test_failed();
676
if(opus_multistream_decoder_ctl(0,OPUS_RESET_STATE) !=
OPUS_INVALID_STATE
)test_failed();
677
if(opus_multistream_decoder_init(0,48000,1) !=
OPUS_INVALID_STATE
)test_failed();
678
if(opus_multistream_decode(0,packet,1,outbuf,2880,0) !=
OPUS_INVALID_STATE
)test_failed();
679
if(opus_multistream_decode_float(0,packet,1,0,2880,0) !=
OPUS_INVALID_STATE
)test_failed();
680
if(opus_multistream_decoder_get_nb_samples(0,packet,1) !=
OPUS_INVALID_STATE
)test_failed()
[
all
...]
/external/libopus/include/
opus_defines.h
58
#define
OPUS_INVALID_STATE
-6
/frameworks/av/media/libstagefright/codecs/opus/dec/
SoftOpus.cpp
374
int status =
OPUS_INVALID_STATE
;
Completed in 162 milliseconds