1 /*
2  * Copyright (C) 2004-2010 NXP Software
3  * Copyright (C) 2010 The Android Open Source Project
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #include "BIQUAD.h"
19 #include "FO_1I_D32F32Cll_TRC_WRA_01_Private.h"
20 #include "LVM_Macros.h"
21 
22 /**************************************************************************
23  ASSUMPTIONS:
24  COEFS-
25  pBiquadState->coefs[0] is A1,
26  pBiquadState->coefs[1] is A0,
27  pBiquadState->coefs[2] is -B1, these are in Q31 format
28 
29  DELAYS-
30  pBiquadState->pDelays[0] is x(n-1)L in Q0 format
31  pBiquadState->pDelays[1] is y(n-1)L in Q0 format
32 ***************************************************************************/
FO_1I_D32F32C31_TRC_WRA_01(Biquad_FLOAT_Instance_t * pInstance,LVM_FLOAT * pDataIn,LVM_FLOAT * pDataOut,LVM_INT16 NrSamples)33 void FO_1I_D32F32C31_TRC_WRA_01( Biquad_FLOAT_Instance_t       *pInstance,
34                                  LVM_FLOAT               *pDataIn,
35                                  LVM_FLOAT               *pDataOut,
36                                  LVM_INT16               NrSamples)
37     {
38         LVM_FLOAT  ynL,templ;
39         LVM_INT16  ii;
40         PFilter_State_FLOAT pBiquadState = (PFilter_State_FLOAT) pInstance;
41 
42         for (ii = NrSamples; ii != 0; ii--)
43         {
44 
45             /**************************************************************************
46                             PROCESSING OF THE LEFT CHANNEL
47             ***************************************************************************/
48             // ynL=A1  * x(n-1)L
49             ynL = pBiquadState->coefs[0] * pBiquadState->pDelays[0];
50 
51             // ynL+=A0  * x(n)L
52             templ = pBiquadState->coefs[1] * (*pDataIn);
53             ynL += templ;
54 
55             // ynL+=  (-B1  * y(n-1)L
56             templ = pBiquadState->coefs[2] * pBiquadState->pDelays[1];
57             ynL += templ;
58 
59             /**************************************************************************
60                             UPDATING THE DELAYS
61             ***************************************************************************/
62             pBiquadState->pDelays[1] = ynL; // Update y(n-1)L
63             pBiquadState->pDelays[0] = (*pDataIn++); // Update x(n-1)L
64 
65             /**************************************************************************
66                             WRITING THE OUTPUT
67             ***************************************************************************/
68             *pDataOut++ = (LVM_FLOAT)ynL; // Write Left output in Q0
69         }
70 
71     }
72