diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/openh264/gstopenh264dec.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/openh264/gstopenh264dec.cpp b/ext/openh264/gstopenh264dec.cpp index f82231a45..303ce87dd 100644 --- a/ext/openh264/gstopenh264dec.cpp +++ b/ext/openh264/gstopenh264dec.cpp @@ -28,6 +28,10 @@ #endif #include "gstopenh264dec.h" + +#include <wels/codec_ver.h> +#define OPENH264_VERSION_CHECK(maj,min) ((OPENH264_MAJOR > (maj)) || (OPENH264_MAJOR == (maj) && OPENH264_MINOR >= (min))) + #include <gst/gst.h> #include <gst/video/video.h> #include <gst/video/gstvideodecoder.h> |