From e8645ce9f98662e68d3eafbf04bd3b40d1b89043 Mon Sep 17 00:00:00 2001 From: Johann Date: Thu, 16 Apr 2015 14:51:22 -0400 Subject: 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 --- test/test_libvpx.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/test_libvpx.cc') 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" -- cgit v1.2.3