summaryrefslogtreecommitdiff
path: root/test/test_libvpx.cc
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2015-04-16 14:51:22 -0400
committerJohann <johannkoenig@google.com>2015-04-16 15:04:59 -0400
commite8645ce9f98662e68d3eafbf04bd3b40d1b89043 (patch)
treeac0738eedfe4a3f4592d6dbe7338b772f1fdb93e /test/test_libvpx.cc
parent3701dcc5c15bd6a182addfb2ff10941f87d4f414 (diff)
downloadlibvpx-e8645ce9f98662e68d3eafbf04bd3b40d1b89043.tar
libvpx-e8645ce9f98662e68d3eafbf04bd3b40d1b89043.tar.gz
libvpx-e8645ce9f98662e68d3eafbf04bd3b40d1b89043.tar.bz2
libvpx-e8645ce9f98662e68d3eafbf04bd3b40d1b89043.zip
Use extern for *_rtcd() in test/test_libvpx.cc
This partially reverts commit 14ef4aeafb Including the rtcd headers to get the function definitions causes problems on VS9. Change-Id: I780874d9e03af2d3124192ab0e3907301f22674c
Diffstat (limited to 'test/test_libvpx.cc')
-rw-r--r--test/test_libvpx.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_libvpx.cc b/test/test_libvpx.cc
index dcf5fc52b..30a5255b2 100644
--- a/test/test_libvpx.cc
+++ b/test/test_libvpx.cc
@@ -14,12 +14,12 @@
#endif
extern "C" {
#if CONFIG_VP8
-#include "./vp8_rtcd.h"
+extern void vp8_rtcd();
#endif // CONFIG_VP8
#if CONFIG_VP9
-#include "./vp9_rtcd.h"
+extern void vp9_rtcd();
#endif // CONFIG_VP9
-#include "./vpx_scale_rtcd.h"
+extern void vpx_scale_rtcd();
}
#include "third_party/googletest/src/include/gtest/gtest.h"