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

Unified Diff: source/libvpx/test/test_libvpx.cc

Issue 1124333011: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: only update to last nights LKGR Created 5 years, 7 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
« no previous file with comments | « source/libvpx/test/test.mk ('k') | source/libvpx/test/test_vector_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/test/test_libvpx.cc
diff --git a/source/libvpx/test/test_libvpx.cc b/source/libvpx/test/test_libvpx.cc
index fc035af8f38e04c2ac73d6e9fffa44a1d4c9523d..edbeec294148cf1c3b4f4329e1b55ded7692a723 100644
--- a/source/libvpx/test/test_libvpx.cc
+++ b/source/libvpx/test/test_libvpx.cc
@@ -15,10 +15,12 @@
extern "C" {
#if CONFIG_VP8
extern void vp8_rtcd();
-#endif
+#endif // CONFIG_VP8
#if CONFIG_VP9
extern void vp9_rtcd();
-#endif
+#endif // CONFIG_VP9
+extern void vpx_dsp_rtcd();
+extern void vpx_scale_rtcd();
}
#include "third_party/googletest/src/include/gtest/gtest.h"
@@ -59,11 +61,13 @@ int main(int argc, char **argv) {
#if CONFIG_VP8
vp8_rtcd();
-#endif
+#endif // CONFIG_VP8
#if CONFIG_VP9
vp9_rtcd();
-#endif
-#endif
+#endif // CONFIG_VP9
+ vpx_dsp_rtcd();
+ vpx_scale_rtcd();
+#endif // !CONFIG_SHARED
return RUN_ALL_TESTS();
}
« no previous file with comments | « source/libvpx/test/test.mk ('k') | source/libvpx/test/test_vector_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698