OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LPC_res_ptr
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/opus/src/silk/fixed/
residual_energy_FIX.c
49
opus_int16 *
LPC_res_ptr
;
66
LPC_res_ptr
= LPC_res + LPC_order;
69
silk_sum_sqr_shift( &nrgs[ i * ( MAX_NB_SUBFR >> 1 ) + j ], &rshift,
LPC_res_ptr
, subfr_length );
75
LPC_res_ptr
+= offset;
/external/chromium_org/third_party/opus/src/silk/float/
residual_energy_FLP.c
102
silk_float *
LPC_res_ptr
, LPC_res[ ( MAX_FRAME_LENGTH + MAX_NB_SUBFR * MAX_LPC_ORDER ) / 2 ];
104
LPC_res_ptr
= LPC_res + LPC_order;
109
nrgs[ 0 ] = ( silk_float )( gains[ 0 ] * gains[ 0 ] * silk_energy_FLP(
LPC_res_ptr
+ 0 * shift, subfr_length ) );
110
nrgs[ 1 ] = ( silk_float )( gains[ 1 ] * gains[ 1 ] * silk_energy_FLP(
LPC_res_ptr
+ 1 * shift, subfr_length ) );
114
nrgs[ 2 ] = ( silk_float )( gains[ 2 ] * gains[ 2 ] * silk_energy_FLP(
LPC_res_ptr
+ 0 * shift, subfr_length ) );
115
nrgs[ 3 ] = ( silk_float )( gains[ 3 ] * gains[ 3 ] * silk_energy_FLP(
LPC_res_ptr
+ 1 * shift, subfr_length ) );
Completed in 35 milliseconds