Commit 58e89be2 authored by vaclav's avatar vaclav
Browse files

clang-format

parent 2ba74c3a
Loading
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -674,9 +674,15 @@ void Calc_rc0_h(

        ptrs = h;

#ifdef FIX_2462_PARCOR_FIX
        temp = shr( *ptrs++, 2 );
        move16();
        L_acc = L_mac( L_acc, temp, shr( *ptrs, 2 ) );
#else
        temp = *ptrs++;
        move16();
        L_acc = L_mult( temp, *ptrs );
#endif
        FOR( i = 1; i < LONG_H_ST - 1; i++ )
        {
            temp = shr( *ptrs++, 2 );
@@ -708,7 +714,11 @@ void Calc_rc0_h(
            L_acc = L_mac( L_acc, temp, *ptrs );
        }
    }
#ifdef FIX_2462_PARCOR_FIX
    L_acc = L_shl_sat( L_acc, sh_acf );
#else
    L_acc = L_shl( L_acc, sh_acf );
#endif
    acf1 = extract_h( L_acc );

    /* Compute 1st parcor */