Re: [libav-devel] [PATCH 1/3] dsputil: x86: convert PMINSD, PMAXSD, and CLIPD macros to use cpuflags

2012-07-27 Thread Justin Ruggles
On 07/21/2012 05:39 PM, Justin Ruggles wrote: --- Updated patch to allow float vs. dword min/max as a parameter to CLIPD instead of using 2 separate macros. libavcodec/x86/dsputil_mmx.c|6 ++-- libavcodec/x86/dsputil_yasm.asm | 66 +++

Re: [libav-devel] [PATCH 1/3] dsputil: x86: convert PMINSD, PMAXSD, and CLIPD macros to use cpuflags

2012-07-27 Thread Ronald S. Bultje
Hi, On Fri, Jul 27, 2012 at 8:54 AM, Justin Ruggles justin.rugg...@gmail.com wrote: On 07/21/2012 05:39 PM, Justin Ruggles wrote: --- Updated patch to allow float vs. dword min/max as a parameter to CLIPD instead of using 2 separate macros. libavcodec/x86/dsputil_mmx.c|6 ++--

[libav-devel] [PATCH 1/3] dsputil: x86: convert PMINSD, PMAXSD, and CLIPD macros to use cpuflags

2012-07-21 Thread Justin Ruggles
--- Updated patch to allow float vs. dword min/max as a parameter to CLIPD instead of using 2 separate macros. libavcodec/x86/dsputil_mmx.c|6 ++-- libavcodec/x86/dsputil_yasm.asm | 66 +++ libavutil/x86/x86util.asm | 34

[libav-devel] [PATCH 1/3] dsputil: x86: convert PMINSD, PMAXSD, and CLIPD macros to use cpuflags

2012-07-20 Thread Justin Ruggles
--- libavcodec/x86/dsputil_mmx.c|6 ++-- libavcodec/x86/dsputil_yasm.asm | 46 ++ libavutil/x86/x86util.asm | 26 - 3 files changed, 40 insertions(+), 38 deletions(-) diff --git a/libavcodec/x86/dsputil_mmx.c