shithub: libvpx

Download patch

ref: 3d0a1edadd0befc7a6ebe3fb746a11ce3dfc6485
parent: 0618ff14d6eeca27d6cca6b3999e4cd10fe7b096
author: Yaowu Xu <yaowu@google.com>
date: Wed Jul 7 06:26:30 EDT 2010

Fix a compiling error on armv6

The issue was caused by a bad merge in Change I5559d1e8

Change-Id: I6563f652bc1500202de361f8f51d11cc6ddf3331

--- a/vp8/encoder/dct.h
+++ b/vp8/encoder/dct.h
@@ -32,6 +32,15 @@
 #endif
 extern prototype_fdct(vp8_fdct_short8x4);
 
+// There is no fast4x4 (for now)
+#ifndef vp8_fdct_fast4x4
+#define vp8_fdct_fast4x4  vp8_short_fdct4x4_c
+#endif
+
+#ifndef vp8_fdct_fast8x4
+#define vp8_fdct_fast8x4  vp8_short_fdct8x4_c
+#endif
+
 #ifndef vp8_fdct_walsh_short4x4
 #define vp8_fdct_walsh_short4x4  vp8_short_walsh4x4_c
 #endif