gigesimsink: allow compiling with GStreamer < 1.10

IYU2 was added in 1.10, but we'd like to be able to build against 1.2,
so define the pixel type if it doesn't exist.
This commit is contained in:
Joshua M. Doe 2019-10-10 07:36:51 -04:00
parent 73708059f6
commit 5839020c33

View File

@ -39,6 +39,11 @@
#include "gstgigesim.h" #include "gstgigesim.h"
/* IYU2 was added in GStreamer 1.10, define here if needed */
#ifndef GST_VIDEO_FORMAT_IYU2
#define GST_VIDEO_FORMAT_IYU2 63
#endif
/* GObject prototypes */ /* GObject prototypes */
static void gst_gigesimsink_set_property (GObject * object, static void gst_gigesimsink_set_property (GObject * object,
guint property_id, const GValue * value, GParamSpec * pspec); guint property_id, const GValue * value, GParamSpec * pspec);