[x264-devel] [PATCH 1/2] ppc: Use vec_splats in mc
Henrik Gramner
henrik at gramner.com
Sat Sep 8 22:12:24 CEST 2018
On Sat, Sep 8, 2018 at 9:01 PM, Luca Barbato <lu_zero at gentoo.org> wrote:
> - lowres init : [FAILED]
>
> Looks like something broke indeed.
Hmm, this is weird. The changes I did to lowres is:
- VEC_STORE8(lv, dst0 + 16 * x);
- VEC_STORE8(hv, dsth + 16 * x);
+ VEC_STORE8( lv, dst0 + 16 * x );
+ VEC_STORE8( hv, dsth + 16 * x );
- VEC_STORE8(lv, dstv + 16 * x);
- VEC_STORE8(hv, dstc + 16 * x);
+ VEC_STORE8( lv, dstv + 16 * x );
+ VEC_STORE8( hv, dstc + 16 * x );
I didn't touch the VEC_STORE8 macro.
I'm not sure how that managed to break anything. Can you check which
commit is the culprit?
More information about the x264-devel
mailing list