CMSIS-DSP:Correction for issue 694.

pull/19/head
Christophe Favergeon 6 years ago
parent 666563eb0f
commit db45f2793e

@ -165,7 +165,7 @@ void arm_biquad_cascade_df2T_f32(
*pState++ = vgetq_lane(state, 1); *pState++ = vgetq_lane(state, 1);
} }
/* /*
* The current stage input is given as the output to the next stage * The current stage output is given as the input to the next stage
*/ */
pIn = pDst; pIn = pDst;
/* /*
@ -277,7 +277,7 @@ void arm_biquad_cascade_df2T_f32(
vst2q_f32(pState,dV); vst2q_f32(pState,dV);
pState += 8; pState += 8;
/* The current stage input is given as the output to the next stage */ /* The current stage output is given as the input to the next stage */
pIn = pDst; pIn = pDst;
/*Reset the output working pointer */ /*Reset the output working pointer */
@ -332,7 +332,7 @@ void arm_biquad_cascade_df2T_f32(
*pState++ = d1; *pState++ = d1;
*pState++ = d2; *pState++ = d2;
/* The current stage input is given as the output to the next stage */ /* The current stage output is given as the input to the next stage */
pIn = pDst; pIn = pDst;
/*Reset the output working pointer */ /*Reset the output working pointer */
@ -631,7 +631,7 @@ void arm_biquad_cascade_df2T_f32(
pState += 2U; pState += 2U;
/* The current stage input is given as the output to the next stage */ /* The current stage output is given as the input to the next stage */
pIn = pDst; pIn = pDst;
/* Reset the output working pointer */ /* Reset the output working pointer */

@ -424,7 +424,7 @@ void arm_biquad_cascade_df2T_f64(
pState += 2U; pState += 2U;
/* The current stage input is given as the output to the next stage */ /* The current stage output is given as the input to the next stage */
pIn = pDst; pIn = pDst;
/* Reset the output working pointer */ /* Reset the output working pointer */

@ -163,7 +163,7 @@ void arm_biquad_cascade_stereo_df2T_f32(
pState += 4; pState += 4;
/* /*
* The current stage input is given as the output to the next stage * The current stage output is given as the input to the next stage
*/ */
pIn = pDst; pIn = pDst;
/* /*
@ -400,7 +400,7 @@ void arm_biquad_cascade_stereo_df2T_f32(
pState += 4U; pState += 4U;
/* The current stage input is given as the output to the next stage */ /* The current stage output is given as the input to the next stage */
pIn = pDst; pIn = pDst;
/* Reset the output working pointer */ /* Reset the output working pointer */

Loading…
Cancel
Save