OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TargetRate_bps
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/opus/src/silk/
control_SNR.c
38
opus_int32
TargetRate_bps
/* I Target max bitrate (bps) */
46
TargetRate_bps
= silk_LIMIT(
TargetRate_bps
, MIN_TARGET_RATE_BPS, MAX_TARGET_RATE_BPS );
47
if(
TargetRate_bps
!= psEncC->
TargetRate_bps
) {
48
psEncC->
TargetRate_bps
=
TargetRate_bps
;
50
/* If new
TargetRate_bps
, translate to SNR_dB value */
61
TargetRate_bps
-= REDUCE_BITRATE_10_MS_BPS;
66
if(
TargetRate_bps
<= rateTable[ k ] )
[
all
...]
control_codec.c
60
const opus_int32
TargetRate_bps
/* I */
68
const opus_int32
TargetRate_bps
, /* I Target max bitrate (bps) */
128
ret += silk_setup_LBRR( &psEnc->sCmn,
TargetRate_bps
);
238
psEnc->sCmn.
TargetRate_bps
= 0; /* trigger new SNR computation */
253
psEnc->sCmn.
TargetRate_bps
= 0; /* trigger new SNR computation */
397
const opus_int32
TargetRate_bps
/* I */
414
if(
TargetRate_bps
> LBRR_rate_thres_bps ) {
enc_API.c
120
encStatus->bitRate = state_Fxx[ 0 ].sCmn.
TargetRate_bps
;
153
opus_int32
TargetRate_bps
, MStargetRates_bps[ 2 ], channelRate_bps, LBRR_symbol, sum;
231
TargetRate_bps
= silk_RSHIFT32( encControl->bitRate, encControl->nChannelsInternal - 1 );
235
if( ( ret = silk_control_encoder( &psEnc->state_Fxx[ n ], encControl,
TargetRate_bps
, psEnc->allowBandwidthSwitch, n, force_fs_kHz ) ) != 0 ) {
388
TargetRate_bps
= silk_SMULBB( nBits, 100 );
390
TargetRate_bps
= silk_SMULBB( nBits, 50 );
393
TargetRate_bps
-= silk_DIV32_16( silk_MUL( psEnc->nBitsExceeded, 1000 ), BITRESERVOIR_DECAY_TIME_MS );
395
TargetRate_bps
= silk_LIMIT(
TargetRate_bps
, encControl->bitRate, 5000 );
401
MStargetRates_bps,
TargetRate_bps
, psEnc->state_Fxx[ 0 ].sCmn.speech_activity_Q8, encControl->toMono
[
all
...]
main.h
140
opus_int32
TargetRate_bps
/* I Target max bitrate (bps) */
structs.h
160
opus_int32
TargetRate_bps
; /* Target bitrate (bps) */
/external/chromium_org/third_party/opus/src/silk/fixed/
main_FIX.h
83
const opus_int32
TargetRate_bps
, /* I Target max bitrate (bps) */
/external/chromium_org/third_party/opus/src/silk/float/
main_FLP.h
81
const opus_int32
TargetRate_bps
, /* I Target max bitrate (bps) */
Completed in 66 milliseconds