Re: [FFmpeg-devel] [PATCH] sws/aarch64/yuv2rgb: honor iOS calling convention

2016-04-08 Thread Clément Bœsch
On Fri, Apr 08, 2016 at 10:25:13AM -0400, Ronald S. Bultje wrote: > Hi, > > On Fri, Apr 8, 2016 at 7:41 AM, Clément Bœsch wrote: > > > From: Clément Bœsch > > > > y_offset and y_coeff being successive 32-bit integers, they are packed > > into 8 bytes instead of 2x8 bytes. > > > lgtm. > appl

Re: [FFmpeg-devel] [PATCH] sws/aarch64/yuv2rgb: honor iOS calling convention

2016-04-08 Thread Ronald S. Bultje
Hi, On Fri, Apr 8, 2016 at 7:41 AM, Clément Bœsch wrote: > From: Clément Bœsch > > y_offset and y_coeff being successive 32-bit integers, they are packed > into 8 bytes instead of 2x8 bytes. lgtm. Ronald ___ ffmpeg-devel mailing list ffmpeg-devel@f

[FFmpeg-devel] [PATCH] sws/aarch64/yuv2rgb: honor iOS calling convention

2016-04-08 Thread Clément Bœsch
From: Clément Bœsch y_offset and y_coeff being successive 32-bit integers, they are packed into 8 bytes instead of 2x8 bytes. See https://developer.apple.com/library/ios/documentation/Xcode/Conceptual/iPhoneOSABIReference/Articles/ARM64FunctionCallingConventions.html > iOS diverges from Proced