Home
last modified time | relevance | path

Searched refs:Temp1 (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libeffects/lvm/lib/Common/src/
DCore_MixInSoft_D32C31_SAT.cpp34 LVM_FLOAT Temp1,Temp2,Temp3; in Core_MixInSoft_D32C31_SAT() local
55 Temp1 = *src++; in Core_MixInSoft_D32C31_SAT()
58 Temp3 = Temp1 * (pInstance->Current); in Core_MixInSoft_D32C31_SAT()
59 Temp1 = Temp2 + Temp3; in Core_MixInSoft_D32C31_SAT()
61 if (Temp1 > 1.0f) in Core_MixInSoft_D32C31_SAT()
62 Temp1 = 1.0f; in Core_MixInSoft_D32C31_SAT()
63 else if (Temp1 < -1.0f) in Core_MixInSoft_D32C31_SAT()
64 Temp1 = -1.0f; in Core_MixInSoft_D32C31_SAT()
66 *dst++ = Temp1; in Core_MixInSoft_D32C31_SAT()
76 Temp1 = *src++; in Core_MixInSoft_D32C31_SAT()
[all …]
DCore_MixSoft_1St_D32C31_WRA.cpp33 LVM_FLOAT Temp1,Temp2; in Core_MixSoft_1St_D32C31_WRA() local
57 Temp1 = *src; in Core_MixSoft_1St_D32C31_WRA()
60 Temp2 = Temp1 * (pInstance->Current); in Core_MixSoft_1St_D32C31_WRA()
71 Temp1 = *src; in Core_MixSoft_1St_D32C31_WRA()
74 Temp2 = Temp1 * (pInstance->Current); in Core_MixSoft_1St_D32C31_WRA()
78 Temp1 = *src; in Core_MixSoft_1St_D32C31_WRA()
81 Temp2 = Temp1 * (pInstance->Current); in Core_MixSoft_1St_D32C31_WRA()
85 Temp1 = *src; in Core_MixSoft_1St_D32C31_WRA()
88 Temp2 = Temp1 * (pInstance->Current); in Core_MixSoft_1St_D32C31_WRA()
92 Temp1 = *src; in Core_MixSoft_1St_D32C31_WRA()
[all …]
DCore_MixHard_2St_D32C31_SAT.cpp34 LVM_FLOAT Temp1,Temp2,Temp3; in Core_MixHard_2St_D32C31_SAT() local
43 Temp1 = *src1++; in Core_MixHard_2St_D32C31_SAT()
44 Temp3 = Temp1 * Current1Short; in Core_MixHard_2St_D32C31_SAT()
46 Temp1 = Temp2 * Current2Short; in Core_MixHard_2St_D32C31_SAT()
47 Temp2 = (Temp1 / 2.0f) + (Temp3 / 2.0f); in Core_MixHard_2St_D32C31_SAT()
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
DLVREV_ApplyNewSettings.cpp162 LVM_FLOAT Temp1; /* to avoid QAC warning on type conversion */ in LVREV_ApplyNewSettings() local
164 Temp1=(LVM_FLOAT)DelayLengthSamples; in LVREV_ApplyNewSettings()
165 Temp = (LVM_UINT32)(Temp1 * ScaleTable[i]); in LVREV_ApplyNewSettings()
328 LVM_FLOAT Temp1; in LVREV_ApplyNewSettings() local
339 Temp1 = (3 * pPrivate->RoomSizeInms * ScaleTable[i]) / pPrivate->NewParams.T60; in LVREV_ApplyNewSettings()
340 if(Temp1 >= (4)) in LVREV_ApplyNewSettings()
344 else if((Temp1 >= (2))) in LVREV_ApplyNewSettings()
346 Temp2 = LVM_Power10(-(Temp1 / 2.0f)); in LVREV_ApplyNewSettings()
347 Temp1 = LVM_Power10(-(Temp1 / 2.0f)); in LVREV_ApplyNewSettings()
348 Temp1 = Temp1 * Temp2; in LVREV_ApplyNewSettings()
[all …]