summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/gstreamer/gstreamer.cpp
blob: 6ef85e1be502e13528fc37548279e26ee84f41d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <gst/gst.h>
#include <gst/interfaces/propertyprobe.h>
#include <gst/interfaces/xoverlay.h>

#if !defined(GST_VERSION_MAJOR) \
    || !defined(GST_VERSION_MINOR)
#  error "No GST_VERSION_* macros"
#elif GST_VERION_MAJOR != 0 && GST_VERSION_MINOR != 10
#  error "Incompatible version of GStreamer found (Version 0.10.x is required)."
#endif

int main(int argc, char **argv)
{
}