Blob Blame History Raw
diff -up efl-1.27.0/src/lib/evas/common/evas_convert_yuv.c.pointerpointerfix efl-1.27.0/src/lib/evas/common/evas_convert_yuv.c
--- efl-1.27.0/src/lib/evas/common/evas_convert_yuv.c.pointerpointerfix	2024-01-30 15:32:50.509895567 -0500
+++ efl-1.27.0/src/lib/evas/common/evas_convert_yuv.c	2024-01-30 15:33:05.799103929 -0500
@@ -872,9 +872,9 @@ _evas_yv12torgb_altivec(unsigned char **
    w2 = w / 2;
    h2 = h / 2;
    /* plane pointers */
-   yp1 = yuv;
-   yp2 = yuv + w;
-   up = yuv + (w * h);
+   yp1 = *yuv;
+   yp2 = *yuv + w;
+   up = *yuv + (w * h);
    vp = up + (w2 * h2);
    /* destination pointers */
    dp1 = rgb;