Re: [FFmpeg-devel] [PATCH] avfilter/vf_overlay: add x86 SIMD for yuv444 format when main stream has no alpha

2018-04-30 Thread James Almer
On 4/30/2018 3:57 PM, Paul B Mahol wrote: > On 4/30/18, Henrik Gramner wrote: >> On Mon, Apr 30, 2018 at 6:17 PM, Paul B Mahol wrote: >>> +.loop0: >>> +movu m1, [dq + xq] >>> +movu m2, [aq + xq] >>> +movu m3, [sq +

Re: [FFmpeg-devel] [PATCH] avfilter/vf_overlay: add x86 SIMD for yuv444 format when main stream has no alpha

2018-04-30 Thread Paul B Mahol
On 4/30/18, Henrik Gramner wrote: > On Mon, Apr 30, 2018 at 6:17 PM, Paul B Mahol wrote: >> +.loop0: >> +movu m1, [dq + xq] >> +movu m2, [aq + xq] >> +movu m3, [sq + xq] >> + >> +pshufb m1, [pb_b2dw]

Re: [FFmpeg-devel] [PATCH] avfilter/vf_overlay: add x86 SIMD for yuv444 format when main stream has no alpha

2018-04-30 Thread Henrik Gramner
On Mon, Apr 30, 2018 at 6:17 PM, Paul B Mahol wrote: > +.loop0: > +movu m1, [dq + xq] > +movu m2, [aq + xq] > +movu m3, [sq + xq] > + > +pshufb m1, [pb_b2dw] > +pshufb m2, [pb_b2dw] > +pshufb

Re: [FFmpeg-devel] [PATCH] avfilter/vf_overlay: add x86 SIMD for yuv444 format when main stream has no alpha

2018-04-30 Thread Paul B Mahol
On 4/30/18, Paul B Mahol wrote: > Signed-off-by: Paul B Mahol > --- > libavfilter/vf_overlay.c | 76 --- > libavfilter/vf_overlay.h | 84 ++ > libavfilter/x86/Makefile | 2

[FFmpeg-devel] [PATCH] avfilter/vf_overlay: add x86 SIMD for yuv444 format when main stream has no alpha

2018-04-30 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavfilter/vf_overlay.c | 76 --- libavfilter/vf_overlay.h | 84 ++ libavfilter/x86/Makefile | 2 + libavfilter/x86/vf_overlay.asm| 94