| 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();
|
| }
|
|
|