shithub: libvpx

Download patch

ref: a53c495b3e7dd40c033d454008e1fc7bebd19b9f
parent: 278593c9a9297e4627ebc30f390bc396493989f3
parent: e8645ce9f98662e68d3eafbf04bd3b40d1b89043
author: Johann <johannkoenig@google.com>
date: Thu Apr 16 09:42:34 EDT 2015

Merge "Use extern for *_rtcd() in test/test_libvpx.cc"

--- 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"