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

This commit is contained in:
Johann 2015-04-16 13:42:34 -07:00 коммит произвёл Gerrit Code Review
Родитель 278593c9a9 e8645ce9f9
Коммит a53c495b3e
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

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