1 #ifdef __GNUC__
2 #  pragma GCC diagnostic ignored "-Wmissing-declarations"
3 #  if defined __clang__ || defined __APPLE__
4 #    pragma GCC diagnostic ignored "-Wmissing-prototypes"
5 #    pragma GCC diagnostic ignored "-Wextra"
6 #  endif
7 #endif
8 
9 #ifndef __OPENCV_VIDEO_PRECOMP_HPP__
10 #define __OPENCV_VIDEO_PRECOMP_HPP__
11 
12 #include "opencv2/ts.hpp"
13 #include <opencv2/imgproc.hpp>
14 #include <opencv2/video.hpp>
15 #include <opencv2/imgcodecs.hpp>
16 
17 #ifdef GTEST_CREATE_SHARED_LIBRARY
18 #error no modules except ts should have GTEST_CREATE_SHARED_LIBRARY defined
19 #endif
20 
21 #endif
22