Re: [FFmpeg-devel] [PATCH] x86/me_cmp: combine sad functions into a single macro

2014-09-17 Thread James Almer
On 17/09/14 11:44 PM, Michael Niedermayer wrote: > On Wed, Sep 17, 2014 at 10:15:30PM -0300, James Almer wrote: >> No point in having the sad8 functions separate now that the loop is no >> longer unrolled. >> >> Signed-off-by: James Almer >> --- >> libavcodec/x86/me_cmp.asm | 221 >> +++

Re: [FFmpeg-devel] [PATCH] x86/me_cmp: combine sad functions into a single macro

2014-09-17 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 10:15:30PM -0300, James Almer wrote: > No point in having the sad8 functions separate now that the loop is no > longer unrolled. > > Signed-off-by: James Almer > --- > libavcodec/x86/me_cmp.asm | 221 > +++--- > 1 file changed, 93

[FFmpeg-devel] [PATCH] x86/me_cmp: combine sad functions into a single macro

2014-09-17 Thread James Almer
No point in having the sad8 functions separate now that the loop is no longer unrolled. Signed-off-by: James Almer --- libavcodec/x86/me_cmp.asm | 221 +++--- 1 file changed, 93 insertions(+), 128 deletions(-) diff --git a/libavcodec/x86/me_cmp.asm b/lib