OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:redundancy_bytes
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/opus/src/src/
opus_encoder.c
461
int
redundancy_bytes
= 0; /* Number of bytes to use for redundancy frame */
local
666
redundancy_bytes
= IMIN(257, max_data_bytes*(opus_int32)(st->Fs/200)/(frame_size+st->Fs/200));
669
redundancy_bytes
= IMIN(
redundancy_bytes
, st->bitrate_bps/1600);
836
bytes_target = IMIN(max_data_bytes-
redundancy_bytes
, st->bitrate_bps * frame_size / (st->Fs * 8)) - 1;
[
all
...]
opus_decoder.c
213
int
redundancy_bytes
= 0;
local
355
/*
redundancy_bytes
will be at least two, in the non-hybrid
357
redundancy_bytes
= mode==MODE_HYBRID ?
360
len -=
redundancy_bytes
;
366
redundancy_bytes
= 0;
370
dec.storage -=
redundancy_bytes
;
409
celt_decode_with_ec(celt_dec, data+len,
redundancy_bytes
,
462
celt_decode_with_ec(celt_dec, data+len,
redundancy_bytes
, redundant_audio, F5, NULL);
Completed in 2532 milliseconds