Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-03 Thread Ronald S. Bultje
Hi, On Sat, Oct 3, 2015 at 2:46 PM, James Darnley wrote: > On 2015-10-03 04:08, Ronald S. Bultje wrote: > > Hi, > > > > On Fri, Oct 2, 2015 at 4:58 PM, Hendrik Leppkes > wrote: > > > >> On Fri, Oct 2, 2015 at 7:16 PM, Timothy Gu > wrote: > >>> On Fri, Oct 2, 2015 at 10:08 AM James Darnley > >

Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-03 Thread James Darnley
On 2015-10-03 04:08, Ronald S. Bultje wrote: > Hi, > > On Fri, Oct 2, 2015 at 4:58 PM, Hendrik Leppkes wrote: > >> On Fri, Oct 2, 2015 at 7:16 PM, Timothy Gu wrote: >>> On Fri, Oct 2, 2015 at 10:08 AM James Darnley >>> wrote: >>> The third patch uses them in the remaining inline assembly.

Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-02 Thread Ronald S. Bultje
Hi, On Fri, Oct 2, 2015 at 4:58 PM, Hendrik Leppkes wrote: > On Fri, Oct 2, 2015 at 7:16 PM, Timothy Gu wrote: > > On Fri, Oct 2, 2015 at 10:08 AM James Darnley > > wrote: > > > >> The third patch uses them in the remaining inline assembly. > >> > > > > That's the crux of the problem: inline a

Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-02 Thread Hendrik Leppkes
On Fri, Oct 2, 2015 at 7:16 PM, Timothy Gu wrote: > On Fri, Oct 2, 2015 at 10:08 AM James Darnley > wrote: > >> The third patch uses them in the remaining inline assembly. >> > > That's the crux of the problem: inline asm uses these constants, but will > be unable to without yasm. Either we drop

Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-02 Thread James Darnley
On 2015-10-02 19:16, Timothy Gu wrote: > On Fri, Oct 2, 2015 at 10:08 AM James Darnley > wrote: > >> The third patch uses them in the remaining inline assembly. >> > > That's the crux of the problem: inline asm uses these constants, but will > be unable to without yasm. Either we drop compatibil

Re: [FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-02 Thread Timothy Gu
On Fri, Oct 2, 2015 at 10:08 AM James Darnley wrote: > The third patch uses them in the remaining inline assembly. > That's the crux of the problem: inline asm uses these constants, but will be unable to without yasm. Either we drop compatibility for inline asm for x86 platforms w/o yasm, or we

[FFmpeg-devel] [PATCH 0/7] [RFC] x86 assembly constants

2015-10-02 Thread James Darnley
So... big patches. A little history first. Last time I was writing some assembly it was sugested that I reuse existing constants in my code. I would have except that the suggestion was to use the ones in avcodec but I was working in avfilter. IIRC we are not allowed to share data like that acro