Re: [FFmpeg-devel] [PATCH 3/6] avcodec/x86: add x86-64 8-bit simple_idct function

2017-06-12 Thread Michael Niedermayer
On Mon, Jun 12, 2017 at 03:36:06PM +0200, James Darnley wrote: > Rounding contributed by Ronald S. Bultje > --- > libavcodec/tests/x86/dct.c | 2 ++ > libavcodec/x86/idctdsp_init.c| 19 +++ > libavcodec/x86/simple_idct.h | 3 +++ > libavcodec/x86/simple_idct10.asm |

[FFmpeg-devel] [PATCH 3/6] avcodec/x86: add x86-64 8-bit simple_idct function

2017-06-12 Thread James Darnley
Rounding contributed by Ronald S. Bultje --- libavcodec/tests/x86/dct.c | 2 ++ libavcodec/x86/idctdsp_init.c| 19 +++ libavcodec/x86/simple_idct.h | 3 +++ libavcodec/x86/simple_idct10.asm | 8 4 files changed, 32 insertions(+) diff --git a/libavcodec/te