fbarchard@google.com 632c50f29c include posix source for 64 bit clang builds.
BUG=440
TESTED=ninja -C out\Release_x64
R=bcornell@google.com

Review URL: https://webrtc-codereview.appspot.com/46259004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@1407 16f28f9a-4ce2-e073-06de-1de4eb20be90
2015-05-14 21:40:05 +00:00
..
compare_common.cc compare_common visual c port 2014-01-09 19:11:09 +00:00
compare_neon64.cc fix for warning on ios 64 bit that int width doesnt match %2 size which is 64 bit by default. change size to explicitely 32 bit with %w2. 2015-05-04 21:16:03 +00:00
compare_neon.cc change vector range notation to a list of registers for clang compatibility. break compare into 2 neon files for consistency with other neon64 files. 2014-09-15 23:39:43 +00:00
compare_posix.cc Remove ifdef __SSE2__ and native client ifdef for r14 in register usage declarations. 2015-02-05 23:09:15 +00:00
compare_win.cc include posix source for 64 bit clang builds. 2015-05-14 21:40:05 +00:00
compare.cc Enable assembly for clangcl build on Windows. Previously assembly was disabled so clangcl would work, but only with C code. As clangcl mimics both Visual C and GCC, ifdefs need to pick one or the other or often you'll end up with both. In this CL we disable most Visual C code and use the GCC versions which allow assembly for both 32 and 64 bit intel. 2015-03-19 20:36:31 +00:00
convert_argb.cc ARGB4444ToARGB and ARGB1555ToARGB ported to AVX2. 2015-04-07 23:52:57 +00:00
convert_from_argb.cc ARGBToYJRow_AVX2 hooked up for ARGBToJ422 2015-04-07 00:39:25 +00:00
convert_from.cc Remove unused variable 'I422ToRGB565Row' that breaks osx builds. 2015-04-14 02:50:35 +00:00
convert_jpeg.cc libyuv::MJPGToI420() and libyuv::MJPGToARGB() return failure if callback to JPeg fails. 2014-01-28 03:08:59 +00:00
convert_to_argb.cc Remove Q420 fourcc support. 2015-02-11 18:20:54 +00:00
convert_to_i420.cc Remove Q420 fourcc support. 2015-02-11 18:20:54 +00:00
convert.cc ARGB4444ToARGB and ARGB1555ToARGB ported to AVX2. 2015-04-07 23:52:57 +00:00
cpu_id.cc Enable assembly for clangcl build on Windows. Previously assembly was disabled so clangcl would work, but only with C code. As clangcl mimics both Visual C and GCC, ifdefs need to pick one or the other or often you'll end up with both. In this CL we disable most Visual C code and use the GCC versions which allow assembly for both 32 and 64 bit intel. 2015-03-19 20:36:31 +00:00
mjpeg_decoder.cc disable stucture padded warnings on win64 builds. 2015-04-28 23:18:07 +00:00
mjpeg_validate.cc Remove code alignment declspec from Visual C versions for vs2014 compatibility. 2015-04-12 23:54:26 +00:00
planar_functions.cc ARGBToUV AVX2 functions hooked up. 2015-04-07 00:10:52 +00:00
rotate_argb.cc Fix the bug (0 extension from int to int64) in ScaleARGBRowDownEven_NEON. 2015-02-10 06:04:12 +00:00
rotate_mips.cc only enable mips assembly for old 32 bit abi. new 32 bit abi and 64 bit bit able remove t4 to t7 and add a4 to a7 2014-06-24 23:40:52 +00:00
rotate_neon64.cc Copy width to 64 bit register to work around clang 3.4 warning 2014-10-13 23:26:17 +00:00
rotate_neon.cc Change ifdefs for arm 32 and 64 bit so there will only be 32 bit in legacy mode. 2014-09-15 22:05:01 +00:00
rotate.cc Remove code alignment declspec from Visual C versions for vs2014 compatibility. 2015-04-12 23:54:26 +00:00
row_any.cc ARGB4444ToARGB and ARGB1555ToARGB ported to AVX2. 2015-04-07 23:52:57 +00:00
row_common.cc Enable assembly for clangcl build on Windows. Previously assembly was disabled so clangcl would work, but only with C code. As clangcl mimics both Visual C and GCC, ifdefs need to pick one or the other or often you'll end up with both. In this CL we disable most Visual C code and use the GCC versions which allow assembly for both 32 and 64 bit intel. 2015-03-19 20:36:31 +00:00
row_mips.cc build fixe for InterpolateRow_MIPS_DSPR2 2015-02-07 01:01:30 +00:00
row_neon64.cc sobel use LL for constants to be passed in as int64 2015-05-06 02:34:16 +00:00
row_neon.cc add nacl macros for arm to YUV422TORGB_SETUP_REG. 2015-05-12 21:33:32 +00:00
row_posix.cc Fix bug in YUV to RGB for gcc/clang and enable affected functions. 2015-04-08 02:32:33 +00:00
row_win.cc include posix source for 64 bit clang builds. 2015-05-14 21:40:05 +00:00
scale_any.cc scale to 3/4 bug fix for odd widths. multiply to index into source by scale factor should be 4 / 3 not 3 / 4. 2015-04-30 17:18:13 +00:00
scale_argb.cc Add ScaleARGBFilterCols_NEON for ARM32/64 2015-04-07 03:45:29 +00:00
scale_common.cc ScaleAddRows_Any_SSE2 functions for handling odd widths. 2015-04-22 00:51:56 +00:00
scale_mips.cc only enable mips assembly for old 32 bit abi. new 32 bit abi and 64 bit bit able remove t4 to t7 and add a4 to a7 2014-06-24 23:40:52 +00:00
scale_neon64.cc work arounds for ios 64 bit compiler where int passed into assembly needs to be explicitely cast to 'w' register. 2015-05-05 22:46:16 +00:00
scale_neon.cc fix for arm builds where tmp for assembly produces an error if its uninitialized. 2015-04-30 18:21:19 +00:00
scale_posix.cc Port box filter to AVX2. 2015-04-14 00:21:15 +00:00
scale_win.cc include posix source for 64 bit clang builds. 2015-05-14 21:40:05 +00:00
scale.cc AVX2 port of ScaleDownBy4. 2015-04-30 01:58:32 +00:00
video_common.cc Remove bayer format support from libyuv. This format is very rare and used on legacy hardware. Its not well optimized and has bugs related to odd widths. Removing the format will allow tests to pass under more circumstances, run faster and allow focus on higher priority quality and performance issues. 2015-02-09 19:58:19 +00:00