Commit 54e32f48 authored by reutelhuber's avatar reutelhuber
Browse files

clang format

parent d33fae5a
Loading
Loading
Loading
Loading
Loading

lib_enc/ivas_stereo_dft_enc.c

100755 → 100644
+12 −13
Original line number Diff line number Diff line
@@ -2729,7 +2729,6 @@ static void stereo_dft_enc_compute_prm(
                /* compute dot product*/
                dot_prod_real2 += pDFT_L[2 * i] * pDFT_R[2 * i] + pDFT_L[2 * i + 1] * pDFT_R[2 * i + 1];
                dot_prod_img2 += pDFT_L[2 * i + 1] * pDFT_R[2 * i] - pDFT_L[2 * i] * pDFT_R[2 * i + 1];

            }
#ifdef STABILIZE_GIPD
            abs_L_R2 = sqrtf( dot_prod_real2 * dot_prod_real2 + dot_prod_img2 * dot_prod_img2 );