Commit a97b0030 authored by Sandesh Venkatesh's avatar Sandesh Venkatesh
Browse files

Fix for MLD deviations for MASA cases

parent 395c082b
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -233,8 +233,8 @@ void mvr2r_inc_fixed_one(
            y_fx[iy] = x_fx[ix]; /*Q29*/
            move32();

            ix = ix + x_inc;
            iy = iy + y_inc;
            ix = ix - x_inc;
            iy = iy - y_inc;
        }
    }

@@ -283,8 +283,8 @@ void mvr2r_inc_fixed(
            y_fx[iy] = x_fx[ix]; /*Q29*/
            move32();

            ix = ix + x_inc;
            iy = iy + y_inc;
            ix = ix - x_inc;
            iy = iy - y_inc;
        }
    }