Fix compiler error due to missing pthread header (Issue #2953)

pull/990/head
Alexander Smorkalov 12 years ago
parent 6faf00b8e5
commit 37b67fa50d
  1. 3
      modules/highgui/src/cap_ffmpeg_impl.hpp

@ -41,6 +41,9 @@
//M*/ //M*/
#include "cap_ffmpeg_api.hpp" #include "cap_ffmpeg_api.hpp"
#if !(defined(WIN32) || defined(_WIN32) || defined(WINCE))
# include <pthread.h>
#endif
#include <assert.h> #include <assert.h>
#include <algorithm> #include <algorithm>
#include <limits> #include <limits>

Loading…
Cancel
Save