From: Edgard Lima Date: Thu, 20 Apr 2006 17:29:56 +0000 (+0000) Subject: Added a couple of ifdefs to make it compile with other kernels. X-Git-Tag: RELEASE-0_10_3~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6470f4c597655095c49ade1ebd76bcb6007e333b;p=platform%2Fupstream%2Fgst-plugins-good.git Added a couple of ifdefs to make it compile with other kernels. Original commit message from CVS: Added a couple of ifdefs to make it compile with other kernels. --- diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c index 9a881d3..82fb875 100644 --- a/sys/v4l2/gstv4l2src.c +++ b/sys/v4l2/gstv4l2src.c @@ -102,7 +102,9 @@ static guint32 gst_v4l2_formats[] = { V4L2_PIX_FMT_HI240, /* see http://www.siliconimaging.com/RGB%20Bayer.htm */ +#ifdef V4L2_PIX_FMT_SBGGR8 V4L2_PIX_FMT_SBGGR8, +#endif /* compressed formats */ V4L2_PIX_FMT_MJPEG, @@ -111,10 +113,17 @@ static guint32 gst_v4l2_formats[] = { V4L2_PIX_FMT_MPEG, /* Vendor-specific formats */ - V4L2_PIX_FMT_WNVA - /* V4L2_PIX_FMT_SN9C10X FIX */ - /* V4L2_PIX_FMT_PWC1 FIX */ - /* V4L2_PIX_FMT_PWC2 FIX */ + V4L2_PIX_FMT_WNVA, + +#ifdef V4L2_PIX_FMT_SN9C10X + V4L2_PIX_FMT_SN9C10X, +#endif +#ifdef V4L2_PIX_FMT_PWC1 + V4L2_PIX_FMT_PWC1, +#endif +#ifdef V4L2_PIX_FMT_PWC2 + V4L2_PIX_FMT_PWC2, +#endif };