mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
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.
This commit is contained in:
parent
67ac819e29
commit
13058bdf4c
2 changed files with 18 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2006-04-20 Edgard Lima <edgard.lima@indt.org.br>
|
||||||
|
|
||||||
|
* sys/v4l2/gstv4l2src.c:
|
||||||
|
Added a couple of ifdefs to make it compile with other kernels.
|
||||||
|
|
||||||
2006-04-20 Wim Taymans <wim@fluendo.com>
|
2006-04-20 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
Patch by: j^ <j at bootlab dot org>
|
Patch by: j^ <j at bootlab dot org>
|
||||||
|
|
|
@ -102,7 +102,9 @@ static guint32 gst_v4l2_formats[] = {
|
||||||
V4L2_PIX_FMT_HI240,
|
V4L2_PIX_FMT_HI240,
|
||||||
|
|
||||||
/* see http://www.siliconimaging.com/RGB%20Bayer.htm */
|
/* see http://www.siliconimaging.com/RGB%20Bayer.htm */
|
||||||
|
#ifdef V4L2_PIX_FMT_SBGGR8
|
||||||
V4L2_PIX_FMT_SBGGR8,
|
V4L2_PIX_FMT_SBGGR8,
|
||||||
|
#endif
|
||||||
|
|
||||||
/* compressed formats */
|
/* compressed formats */
|
||||||
V4L2_PIX_FMT_MJPEG,
|
V4L2_PIX_FMT_MJPEG,
|
||||||
|
@ -111,10 +113,17 @@ static guint32 gst_v4l2_formats[] = {
|
||||||
V4L2_PIX_FMT_MPEG,
|
V4L2_PIX_FMT_MPEG,
|
||||||
|
|
||||||
/* Vendor-specific formats */
|
/* Vendor-specific formats */
|
||||||
V4L2_PIX_FMT_WNVA
|
V4L2_PIX_FMT_WNVA,
|
||||||
/* V4L2_PIX_FMT_SN9C10X FIX */
|
|
||||||
/* V4L2_PIX_FMT_PWC1 FIX */
|
#ifdef V4L2_PIX_FMT_SN9C10X
|
||||||
/* V4L2_PIX_FMT_PWC2 FIX */
|
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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue