Re: [FFmpeg-devel] [libav-devel] [PATCH] v210enc: Add x86 SIMD

2014-11-23 Thread Kieran Kunhya
You may be able to use mova below as well, but I don't know if AVFrame-data and AVPacket-data are aligned here. It's probably worth a try. Won't work because 12 bytes at a time are processed. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [libav-devel] [PATCH] v210enc: Add x86 SIMD

2014-11-22 Thread James Almer
On 22/11/14 5:58 PM, Kieran Kunhya wrote: diff --git a/libavcodec/v210enc.h b/libavcodec/v210enc.h new file mode 100644 index 000..b8b6143 --- /dev/null +++ b/libavcodec/v210enc.h @@ -0,0 +1,31 @@ +/* + * This file is part of Libav. It shouldn't take long to make a patch that can be

Re: [FFmpeg-devel] [libav-devel] [PATCH] v210enc: Add x86 SIMD

2014-11-22 Thread Michael Niedermayer
On Sat, Nov 22, 2014 at 07:10:04PM -0300, James Almer wrote: On 22/11/14 5:58 PM, Kieran Kunhya wrote: diff --git a/libavcodec/v210enc.h b/libavcodec/v210enc.h new file mode 100644 index 000..b8b6143 --- /dev/null +++ b/libavcodec/v210enc.h @@ -0,0 +1,31 @@ +/* + * This file