Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: source/libvpx/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c

Issue 668403002: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/libvpx/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c
===================================================================
--- source/libvpx/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c (revision 292608)
+++ source/libvpx/vp8/encoder/arm/neon/vp8_shortwalsh4x4_neon.c (working copy)
@@ -9,11 +9,9 @@
*/
#include <arm_neon.h>
+#include "vpx_ports/arm.h"
-#if (__GNUC__ == 4 && (__GNUC_MINOR__ == 6))
-#warning Using GCC 4.6 is not recommended
-// Some versions of gcc4.6 do not correctly process this function. When built
-// with any gcc4.6, use the C code.
+#ifdef VPX_INCOMPATIBLE_GCC
#include "./vp8_rtcd.h"
void vp8_short_walsh4x4_neon(
int16_t *input,
@@ -128,4 +126,4 @@
vst1q_s16(output + 8, q1s16);
return;
}
-#endif // (__GNUC__ == 4 && (__GNUC_MINOR__ == 6))
+#endif // VPX_INCOMPATIBLE_GCC
« no previous file with comments | « source/libvpx/vp8/common/arm/neon/loopfiltersimpleverticaledge_neon.c ('k') | source/libvpx/vp8/encoder/denoising.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698