OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:prevLag
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/opus/src/silk/
HP_variable_cutoff.c
50
pitch_freq_Hz_Q16 = silk_DIV32_16( silk_LSHIFT( silk_MUL( psEncC1->fs_kHz, 1000 ), 16 ), psEncC1->
prevLag
);
structs.h
144
opus_int
prevLag
;
control_codec.c
245
psEnc->sCmn.
prevLag
= 100;
SigProc_FIX.h
253
opus_int
prevLag
, /* I Last lag of previous frame; set to zero is unvoiced */
[
all
...]
enc_API.c
399
psEnc->state_Fxx[ 1 ].sCmn.
prevLag
= 100;
/external/chromium_org/third_party/opus/src/silk/float/
pitch_analysis_core_FLP.c
72
opus_int
prevLag
, /* I Last lag of previous frame; set to zero is unvoiced */
314
if(
prevLag
> 0 ) {
316
prevLag
= silk_LSHIFT(
prevLag
, 1 ) / 3;
318
prevLag
= silk_RSHIFT(
prevLag
, 1 );
320
prevLag_log2 = silk_log2((silk_float)
prevLag
);
367
if(
prevLag
> 0 ) {
SigProc_FLP.h
92
opus_int
prevLag
, /* I Last lag of previous frame; set to zero is unvoiced */
find_pitch_lags_FLP.c
118
&psEnc->sCmn.indices.contourIndex, &psEnc->LTPCorr, psEnc->sCmn.
prevLag
, psEnc->sCmn.pitchEstimationThreshold_Q16 / 65536.0f,
encode_frame_FLP.c
298
psEnc->sCmn.
prevLag
= sEncCtrl.pitchL[ psEnc->sCmn.nb_subfr - 1 ];
/external/chromium_org/third_party/opus/src/silk/fixed/
pitch_analysis_core_FIX.c
77
opus_int
prevLag
, /* I Last lag of previous frame; set to zero is unvoiced */
367
if(
prevLag
> 0 ) {
369
prevLag
= silk_DIV32_16( silk_LSHIFT(
prevLag
, 1 ), 3 );
371
prevLag
= silk_RSHIFT(
prevLag
, 1 );
373
prevLag_log2_Q7 = silk_lin2log( (opus_int32)
prevLag
);
423
if(
prevLag
> 0 ) {
[
all
...]
find_pitch_lags_FIX.c
124
&psEnc->LTPCorr_Q15, psEnc->sCmn.
prevLag
, psEnc->sCmn.pitchEstimationThreshold_Q16,
encode_frame_FIX.c
295
psEnc->sCmn.
prevLag
= sEncCtrl.pitchL[ psEnc->sCmn.nb_subfr - 1 ];
Completed in 79 milliseconds