- 22 Jan, 2013 2 commits
-
-
fbarchard@google.com authored
BUG=177 TEST=none Review URL: https://webrtc-codereview.appspot.com/1061004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@548 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=178 TEST=ninja builds still work on x32 bit. Review URL: https://webrtc-codereview.appspot.com/1066004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@547 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 21 Jan, 2013 2 commits
-
-
kjellander@google.com authored
This is needed due to changes in the way the trybots checkout the source code before applying the uploaded patch for a try job. BUG=none TEST=local master and submitted tryjob + verifying update step succeeded. Tryjob submitted to live try master with patch applying properly for all bots. Review URL: https://webrtc-codereview.appspot.com/1059004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@546 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=175 TEST=out\release\libyuv_unittest --gtest_filter=*Add* Review URL: https://webrtc-codereview.appspot.com/1051005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@545 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 18 Jan, 2013 3 commits
-
-
fbarchard@google.com authored
BUG=none TEST=lint row_any.cc passes Review URL: https://webrtc-codereview.appspot.com/1046006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@544 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=175 TEST=Add unittest Review URL: https://webrtc-codereview.appspot.com/1049004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@543 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=175 TEST=Multiply unittest Review URL: https://webrtc-codereview.appspot.com/1048004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@542 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 17 Jan, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=175 TEST=Out\release\libyuv_unittest --gtest_filter=*Mult* Review URL: https://webrtc-codereview.appspot.com/1043004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@541 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 16 Jan, 2013 3 commits
-
-
fbarchard@google.com authored
BUG=148 TEST=try bots Review URL: https://webrtc-codereview.appspot.com/1033007 git-svn-id: http://libyuv.googlecode.com/svn/trunk@540 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=148 TESTED=out\release\libyuv_unittest --gtest_filter=*ARGBToI* | grep ms Review URL: https://webrtc-codereview.appspot.com/1019011 git-svn-id: http://libyuv.googlecode.com/svn/trunk@539 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=176 TEST=I420ToI420 Review URL: https://webrtc-codereview.appspot.com/1021014 git-svn-id: http://libyuv.googlecode.com/svn/trunk@538 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 12 Jan, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/1028010 git-svn-id: http://libyuv.googlecode.com/svn/trunk@537 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 11 Jan, 2013 2 commits
-
-
fbarchard@google.com authored
Remove V210. Quality of this code is insufficient for libyuv. Unable to make V210 pass valgrind. Would require effort to add missing support and optimization. BUG=91 TEST=valgrind Review URL: https://webrtc-codereview.appspot.com/1021009 git-svn-id: http://libyuv.googlecode.com/svn/trunk@536 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=91 TEST=valgrind on unittests Review URL: https://webrtc-codereview.appspot.com/1029009 git-svn-id: http://libyuv.googlecode.com/svn/trunk@535 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 10 Jan, 2013 4 commits
-
-
fbarchard@google.com authored
BUG=none TEST=unittests check version Review URL: https://webrtc-codereview.appspot.com/1031004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@534 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
kjellander@google.com authored
This is a renamed copy of the r3354 wrapper script existing for WebRTC located in trunk/tools/valgrind-webrtc/ of WebRTC (with suppressions cleaned). Using the libyuv_tests.[sh,bat] script, it is possible to run the libyuv unit tests under memory tools like Valgrind memcheck, Thread Sanitizer and Address Sanitizer. Adding this directory to libyuv makes it possible to handle suppressions entirely in libyuv, instead of depending on manually setting up the WebRTC wrapper script on the buildbots. Having this directory in libyuv is identical to the current buildbot setup in terms of execution, but will make the buildbot code cleaner. It also makes it convenient for libyuv developers to run memory tests. Examples: memcheck: tools/valgrind-libyuv/libyuv_tests.sh -t out/Debug/libyuv_unittest tsan: tools/valgrind-libyuv/libyuv_tests.sh --tool=tsan -t out/Debug/libyuv_unittest asan: tools/valgrind-libyuv/libyuv_tests.sh --tool=asan -t out/Debug/libyuv_unittest BUG=none TEST=Ran the command lines listed above. Review URL: https://webrtc-codereview.appspot.com/1023009 git-svn-id: http://libyuv.googlecode.com/svn/trunk@533 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
kjellander@google.com authored
git-svn-id: http://libyuv.googlecode.com/svn/trunk@530 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
kjellander@google.com authored
git-svn-id: http://libyuv.googlecode.com/svn/trunk@529 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 09 Jan, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=171 TEST=still builds Review URL: https://webrtc-codereview.appspot.com/1021008 git-svn-id: http://libyuv.googlecode.com/svn/trunk@528 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 08 Jan, 2013 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=cpu unittest Review URL: https://webrtc-codereview.appspot.com/1027005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@527 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 07 Jan, 2013 4 commits
-
-
fbarchard@google.com authored
BUG=173 TEST=ninja -C out\Release Review URL: https://webrtc-codereview.appspot.com/1027004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@526 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=171 TEST=none Review URL: https://webrtc-codereview.appspot.com/1025004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@525 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=171 TESTED=unittests on x86 not impacted. Review URL: https://webrtc-codereview.appspot.com/1022006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@524 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=172 TEST=none Review URL: https://webrtc-codereview.appspot.com/1020006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@523 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 18 Dec, 2012 2 commits
-
-
fbarchard@google.com authored
BUG=170 TEST=libyuvTest.TestFourCC and TestCanonicalFourCC Review URL: https://webrtc-codereview.appspot.com/991006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@522 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=video_common_test added Review URL: https://webrtc-codereview.appspot.com/1001007 git-svn-id: http://libyuv.googlecode.com/svn/trunk@521 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 14 Dec, 2012 1 commit
-
-
fbarchard@google.com authored
BUG=168 TESTED=untested Review URL: https://webrtc-codereview.appspot.com/994006 git-svn-id: http://libyuv.googlecode.com/svn/trunk@520 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 13 Dec, 2012 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/990004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@519 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 12 Dec, 2012 4 commits
-
-
fbarchard@google.com authored
Mark stack as not executable. Although its tempting to generate code and execute it as an optimization, security says this is a bad thing. BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/989005 git-svn-id: http://libyuv.googlecode.com/svn/trunk@518 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=186 TEST=Shade Review URL: https://webrtc-codereview.appspot.com/986004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@517 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=168 TESTED=./libyuv_unittest --gtest_filter=*Shade Review URL: https://webrtc-codereview.appspot.com/985004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@516 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=168 TEST=TestShade Review URL: https://webrtc-codereview.appspot.com/971021 git-svn-id: http://libyuv.googlecode.com/svn/trunk@515 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 11 Dec, 2012 2 commits
-
-
fbarchard@google.com authored
BUG=none TEST=lint and try bots Review URL: https://webrtc-codereview.appspot.com/981004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@514 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=none TEST=none Review URL: https://webrtc-codereview.appspot.com/974012 git-svn-id: http://libyuv.googlecode.com/svn/trunk@513 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 04 Dec, 2012 2 commits
-
-
fbarchard@google.com authored
BUG=176 TESTED=*Matrix* Review URL: https://webrtc-codereview.appspot.com/966033 git-svn-id: http://libyuv.googlecode.com/svn/trunk@512 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=167 TEST=*Sepia Review URL: https://webrtc-codereview.appspot.com/968014 git-svn-id: http://libyuv.googlecode.com/svn/trunk@511 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 03 Dec, 2012 3 commits
-
-
fbarchard@google.com authored
BUG=176 TEST=./libyuv_unittest --gtest_filter=**Gray* Review URL: https://webrtc-codereview.appspot.com/929039 git-svn-id: http://libyuv.googlecode.com/svn/trunk@510 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=167 TESTED=planar test Shade* Review URL: https://webrtc-codereview.appspot.com/969014 git-svn-id: http://libyuv.googlecode.com/svn/trunk@509 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
fbarchard@google.com authored
BUG=167 TEST=./libyuv_unittest --gtest_filter=*Quantize Review URL: https://webrtc-codereview.appspot.com/972010 git-svn-id: http://libyuv.googlecode.com/svn/trunk@508 16f28f9a-4ce2-e073-06de-1de4eb20be90
-
- 28 Nov, 2012 1 commit
-
-
fbarchard@google.com authored
BUG=none TEST=lint Review URL: https://webrtc-codereview.appspot.com/964024 git-svn-id: http://libyuv.googlecode.com/svn/trunk@507 16f28f9a-4ce2-e073-06de-1de4eb20be90
-