[Mplayer-cvslog] CVS: main/libmpdemux tvi_v4l.c,1.64,1.65
Jindrich Makovicka CVS
henry at mplayerhq.hu
Wed Aug 13 18:02:20 CEST 2003
- Previous message: [Mplayer-cvslog] CVS: 0_90 ChangeLog,1.49,1.50
- Next message: [Mplayer-cvslog] CVS: main/libmpdemux demux_rawaudio.c,1.8,1.9 demux_rawvideo.c,1.4,1.5 demux_xmms.c,1.7,1.8 open.c,1.85,1.86 stream.h,1.64,1.65
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv29277
Modified Files:
tvi_v4l.c
Log Message:
v4l2 check
Index: tvi_v4l.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/tvi_v4l.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- tvi_v4l.c 3 Jul 2003 20:16:09 -0000 1.64
+++ tvi_v4l.c 13 Aug 2003 16:01:53 -0000 1.65
@@ -404,6 +404,18 @@
}
}
+struct v4l2_capability
+{
+ __u8 driver[16]; /* i.e. "bttv" */
+ __u8 card[32]; /* i.e. "Hauppauge WinTV" */
+ __u8 bus_info[32]; /* "PCI:" + pci_dev->slot_name */
+ __u32 version; /* should use KERNEL_VERSION() */
+ __u32 capabilities; /* Device capabilities */
+ __u32 reserved[4];
+};
+
+#define VIDIOC_QUERYCAP _IOR ('V', 0, struct v4l2_capability)
+
static int init(priv_t *priv)
{
int i;
@@ -425,6 +437,16 @@
mp_msg(MSGT_TV, MSGL_ERR, "unable to open '%s': %s\n",
priv->video_device, strerror(errno));
goto err;
+ }
+
+ /* check for v4l2 */
+ if (ioctl(priv->video_fd, VIDIOC_QUERYCAP, &priv->capability) == 0) {
+ mp_msg(MSGT_TV, MSGL_ERR, "=================================================================\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " WARNING: YOU ARE USING V4L DEMUXER WITH V4L2 DRIVERS!!!\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " As the V4L1 compatibility layer is broken, this may not work.\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " If you encounter any problems, use driver=v4l2 instead.\n");
+ mp_msg(MSGT_TV, MSGL_ERR, " Bugreports on driver=v4l with v4l2 drivers will be ignored.\n");
+ mp_msg(MSGT_TV, MSGL_ERR, "=================================================================\n");
}
/* get capabilities (priv->capability is needed!) */
- Previous message: [Mplayer-cvslog] CVS: 0_90 ChangeLog,1.49,1.50
- Next message: [Mplayer-cvslog] CVS: main/libmpdemux demux_rawaudio.c,1.8,1.9 demux_rawvideo.c,1.4,1.5 demux_xmms.c,1.7,1.8 open.c,1.85,1.86 stream.h,1.64,1.65
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list