- 09 Oct, 2014 1 commit
-
-
fbarchard@google.com authored
Declare CopyRow_AVX as using xmm usage, not ymm. Should resolve chromium build error for Android Atom. BUG=libyuv:369 TESTED=untested R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/31609004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1118 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 07 Oct, 2014 4 commits
-
-
fbarchard@google.com authored
Use movdqu then pavgb to allow unaligned memory for rgb subsampling code. Allows this assembly to be used for unaligned pointers as well as aligned ones with no performance hit when memory is aligned on a modern cpu. BUG=365 TESTED=libyuvTest.ARGBToI420_Unaligned (453 ms) R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/30679004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1116 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=365 TESTED=mac local build R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/24859004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1115 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
pavgb with memory op requires alignment. This CL disables conversions that use pavgb, and resolves scale by 3/8 unittest for checking alignment works. The 3/8 code used a pavgb with a memory operand. tests are added for scaling and allow unaligning on purpose. BUG=365 TESTED=local change to force unaligned memory fails on some conversions and scaling code. R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/29699004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1114 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
Remove unaligned functions, since most function support unaligned memory now. This reduces complexity and improves performance for unaligned cases because C code can be avoided, and overhead is less. Downside is old cpus (core2 and earlier) will be slower for aligned memory case. Except mips, which has alignment requirement, but remove unaligned variant. BUG=365 TESTED=unittest builds and passes locally R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/24839004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1113 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 03 Oct, 2014 2 commits
-
-
fbarchard@google.com authored
Make row functions used for planarfunctions and convert use movdqu to relax alignment constraint. Step 1 - make functions unaligned. BUG=365 TESTED=libyuv_unittest passes R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/26709004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1111 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=367 TESTED=unittest on I422ToI420 R=harryjin@google.com Review URL: https://webrtc-codereview.appspot.com/28639004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1107 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 02 Oct, 2014 1 commit
-
-
fbarchard@google.com authored
BUG=365 TESTED=libyuv_unittest R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/22899004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1102 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 30 Sep, 2014 1 commit
-
-
fbarchard@google.com authored
BUG=363 TESTED=osx build R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/28619004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1098 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 29 Sep, 2014 1 commit
-
-
fbarchard@google.com authored
BUG=363 TESTED=out\release\libyuv_unittest --gtest_filter=*ARGBToARGB_* R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/31489004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1097 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 07 Jan, 2014 1 commit
-
-
fbarchard@google.com authored
BUG=303 TESTED=try R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/6629004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@952 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 02 Jan, 2014 1 commit
-
-
fbarchard@google.com authored
BUG=302 TESTED=libyuv scale tests R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/6489004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@940 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 17 Dec, 2013 1 commit
-
-
fbarchard@google.com authored
NaCL pepper_33 port of scale and compare using lock/unlock. Remove less useful scaling tests and change default size to a multiple of 16 for better assembly coverage. BUG=none TESTED=ncval R=nfullagar@google.com Review URL: https://webrtc-codereview.appspot.com/5939005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@917 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 13 Dec, 2013 1 commit
-
-
nfullagar@google.com authored
Remove hand placed BUNDLEALIGN and add new asm directives into psuedo-instruction macros. Moving forward, this will make for easier and more consistent psuedo-instruction alignment with bundle boundaries. This is mostly a NaCl CL but does include a few changes that will slightly change loop alignments in non-NaCl builds. BUG=253 TEST=trybots,ncval R=fbarchard@google.com Review URL: https://webrtc-codereview.appspot.com/4889004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@913 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 12 Dec, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=293 TESTED=LIBYUV_DISABLE_ASM=1 valgrind out/Debug/remoting_unittests --single-process-tests --gtest_filter=*YuvToRgb* R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/5669004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@911 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 03 Dec, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=289 TEST=drmemory R=nfullagar@google.com, ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/4779004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@884 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 02 Dec, 2013 2 commits
-
-
fbarchard@google.com authored
BUG=283 TESTED=try bots R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/4729004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@883 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
Reduce alignment for loops from 16 bytes to 4 bytes. Reduces outer loop overhead without hurting innerloop time. BUG=none TESTED=try bots R=fbarchard@chromium.org, mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/4659004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@880 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 28 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=untested R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/4509005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@879 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 27 Nov, 2013 2 commits
-
-
fbarchard@google.com authored
BUG=none TEST=lint R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/4499004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@877 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=253 TEST=libyuv_unittest,ncval,trybots R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/4489004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@876 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 15 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none R=johannkoenig@google.com Review URL: https://webrtc-codereview.appspot.com/3929004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@855 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 12 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/3769004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@850 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 11 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/3599004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@847 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 05 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=validate passes R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/3459004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@844 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 01 Nov, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/3299004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@838 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 31 Oct, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=267 TEST=Luma R=tpsiaki@google.com Review URL: https://webrtc-codereview.appspot.com/3169005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@834 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 29 Oct, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=267 TESTED=32 bit mac build Review URL: https://webrtc-codereview.appspot.com/3099004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@832 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 28 Oct, 2013 4 commits
-
-
fbarchard@google.com authored
BUG=267 TEST=Luma* R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/3079004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@831 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=267 TEST=Luma* builds under gcc 32 and runs similar performance to other builds R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/3059005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@830 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=Sobel* on AMD cpu R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/3069004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@829 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=Luma* unittest R=thorcarpenter@google.com Review URL: https://webrtc-codereview.appspot.com/3029004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@828 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 25 Oct, 2013 2 commits
-
-
fbarchard@google.com authored
BUG=none TEST=ncval R=nfullagar@google.com Review URL: https://webrtc-codereview.appspot.com/2999004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@827 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=Sobel R=johannkoenig@google.com Review URL: https://webrtc-codereview.appspot.com/2849004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@826 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 24 Oct, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=280 TESTED=try bots R=nfullagar@google.com Review URL: https://webrtc-codereview.appspot.com/2899004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@825 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 23 Oct, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/2769004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@824 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 21 Oct, 2013 3 commits
-
-
fbarchard@google.com authored
BUG=279 TEST=ARGBAttenuate_Unaligned R=nfullagar@google.com, ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/2709004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@821 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=none R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/2415005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@818 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=265 TEST=unittest polynomial R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/2679004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@816 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 08 Oct, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=271 TESTED=nacl validator passes R=ryanpetrie@google.com Review URL: https://webrtc-codereview.appspot.com/2368005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@809 16f28f9a-4ce2-e073-06de-1de4eb20be90
-