OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:agc_gain
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/media/libeffects/lvm/lib/Common/src/
AGC_MIX_VOL_2St1Mon_D32_WRA.c
97
LVM_INT32
AGC_Gain
= pInstance->
AGC_Gain
; /* Get the current AGC gain */
118
AGC_Mult = (LVM_INT16)(
AGC_Gain
>> 16); /* Get the short AGC gain */
162
HighWord = (AGC_Attack * (
AGC_Gain
>> 16)); /* signed long (
AGC_Gain
) by unsigned short (AGC_Attack) multiply */
163
LowWord = (AGC_Attack * (
AGC_Gain
& 0xffff));
164
AGC_Gain
= (HighWord + (LowWord >> 16)) << 1;
171
if (
AGC_Gain
> AGC_MaxGain)
173
AGC_Gain
-= (AGC_Decay << DECAY_SHIFT);
177
AGC_Gain
+= (AGC_Decay << DECAY_SHIFT)
[
all
...]
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
AGC.h
43
LVM_INT32
AGC_Gain
; /* The current AGC gain */
/external/speex/libspeex/
preprocess.c
238
float
agc_gain
; /**< Current AGC gain */
member in struct:SpeexPreprocessState_
517
st->
agc_gain
= 1;
597
if ((Pframe>.5 && st->nb_adapt > 20) || target_gain < st->
agc_gain
)
599
if (target_gain > st->max_increase_step*st->
agc_gain
)
600
target_gain = st->max_increase_step*st->
agc_gain
;
601
if (target_gain < st->max_decrease_step*st->
agc_gain
&& loudness < 10*st->prev_loudness)
602
target_gain = st->max_decrease_step*st->
agc_gain
;
608
st->
agc_gain
= target_gain;
610
/*fprintf (stderr, "%f %f %f\n", loudness, (float)AMP_SCALE_1*pow(st->loudness, 1.0f/LOUDNESS_EXP), st->
agc_gain
);*/
613
ft[i] *= st->
agc_gain
;
[
all
...]
/hardware/ti/wlan/mac80211/ti-utils/
plt.h
290
unsigned char
agc_gain
;
member in struct:wl1271_rx_pkt_statcs
/frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Init.c
232
pInstance->pData->AGCInstance.
AGC_Gain
= pInstance->pData->AGCInstance.AGC_MaxGain;
Completed in 572 milliseconds