OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MinBytes
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
encode.c
61
int16_t
MinBytes
;
429
MinBytes
= WebRtcIsacfix_GetMinBytes(&ISACenc_obj->rate_data_obj, (int16_t) stream_length,
437
/* Make sure
MinBytes
does not exceed packet size limit */
438
if ((ISACenc_obj->frame_nb == 0) && (
MinBytes
> ISACenc_obj->payloadLimitBytes30)) {
439
MinBytes
= ISACenc_obj->payloadLimitBytes30;
440
} else if ((ISACenc_obj->frame_nb == 1) && (
MinBytes
> ISACenc_obj->payloadLimitBytes60)) {
441
MinBytes
= ISACenc_obj->payloadLimitBytes60;
447
if(
MinBytes
> usefulstr_len + 255 ) {
448
MinBytes
= usefulstr_len + 255;
453
(ISACenc_obj->SaveEnc_ptr)->
minBytes
= MinBytes
[
all
...]
bandwidth_estimator.c
850
uint16_t
MinBytes
;
901
MinBytes
= MinRate * FrameSamples / FS8;
903
/* StreamSize will be adjusted if less than
MinBytes
*/
904
if (StreamSize <
MinBytes
) {
905
StreamSize =
MinBytes
;
948
return
MinBytes
;
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.c
810
int
MinBytes
;
862
MinBytes
= (int) (MinRate * FrameSamples / (8.0 * FS));
864
/* StreamSize will be adjusted if less than
MinBytes
*/
865
if (StreamSize <
MinBytes
)
867
StreamSize =
MinBytes
;
914
return
MinBytes
;
Completed in 71 milliseconds