OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opus_decode_float
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/opus/src/include/
opus.h
365
* To decode a frame, opus_decode() or
opus_decode_float
() must be called with a packet of compressed audio data:
373
* @li decoded is the decoded audio data in opus_int16 (or float for
opus_decode_float
())
376
* opus_decode() and
opus_decode_float
() return the number of samples (per channel) decoded from the packet.
487
OPUS_EXPORT OPUS_WARN_UNUSED_RESULT int
opus_decode_float
(
[
all
...]
/external/chromium_org/third_party/opus/src/src/
opus_decoder.c
867
int
opus_decode_float
(OpusDecoder *st, const unsigned char *data,
function
914
int
opus_decode_float
(OpusDecoder *st, const unsigned char *data,
function
/external/chromium_org/third_party/opus/src/tests/
test_opus_api.c
319
if(
opus_decode_float
(dec, packet, 3, fbuf, 960, 0)!=960)test_failed();
321
fprintf(stdout,"
opus_decode_float
() .......................... OK.\n");
329
if(
opus_decode_float
(0,packet,1,0,2880,0) !=OPUS_INVALID_STATE)test_failed();
[
all
...]
Completed in 45 milliseconds