[MPlayer-cvslog] r28975 - in trunk/stream: tv.c tv.h tvi_v4l2.c

reimar subversion at mplayerhq.hu
Mon Mar 16 18:12:29 CET 2009


Author: reimar
Date: Mon Mar 16 18:12:29 2009
New Revision: 28975

Log:
Add TVI_CONTROL_VID_SET_WIDTH_HEIGHT to set width and height together for v4l2,
otherwise some drivers will always stay stuck in the lowest resolution.

Modified:
   trunk/stream/tv.c
   trunk/stream/tv.h
   trunk/stream/tvi_v4l2.c

Modified: trunk/stream/tv.c
==============================================================================
--- trunk/stream/tv.c	Mon Mar 16 15:25:03 2009	(r28974)
+++ trunk/stream/tv.c	Mon Mar 16 18:12:29 2009	(r28975)
@@ -439,6 +439,12 @@ static int open_tv(tvi_handle_t *tvh)
 #endif
 
     /* limits on w&h are norm-dependent -- JM */
+    if (tvh->tv_param->width != -1 && tvh->tv_param->height != -1) {
+        // first tell the driver both width and height, some drivers do not support setting them independently.
+        int dim[2];
+        dim[0] = tvh->tv_param->width; dim[1] = tvh->tv_param->height;
+        funcs->control(tvh->priv, TVI_CONTROL_VID_SET_WIDTH_HEIGHT, dim);
+    }
     /* set width */
     if (tvh->tv_param->width != -1)
     {

Modified: trunk/stream/tv.h
==============================================================================
--- trunk/stream/tv.h	Mon Mar 16 15:25:03 2009	(r28974)
+++ trunk/stream/tv.h	Mon Mar 16 18:12:29 2009	(r28975)
@@ -175,6 +175,7 @@ typedef struct {
 #define TVI_CONTROL_VID_SET_PICTURE	0x11e
 #define TVI_CONTROL_VID_SET_GAIN	0x11f
 #define TVI_CONTROL_VID_GET_GAIN	0x120
+#define TVI_CONTROL_VID_SET_WIDTH_HEIGHT	0x121
 
 /* TUNER controls */
 #define TVI_CONTROL_TUN_GET_FREQ	0x201

Modified: trunk/stream/tvi_v4l2.c
==============================================================================
--- trunk/stream/tvi_v4l2.c	Mon Mar 16 15:25:03 2009	(r28974)
+++ trunk/stream/tvi_v4l2.c	Mon Mar 16 18:12:29 2009	(r28975)
@@ -780,6 +780,14 @@ static int control(priv_t *priv, int cmd
         return TVI_CONTROL_TRUE;
     case TVI_CONTROL_VID_CHK_WIDTH:
         return TVI_CONTROL_TRUE;
+    case TVI_CONTROL_VID_SET_WIDTH_HEIGHT:
+        if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
+        priv->format.fmt.pix.width = ((int *)arg)[0];
+        priv->format.fmt.pix.height = ((int *)arg)[1];
+        priv->format.fmt.pix.field = V4L2_FIELD_ANY;
+        if (ioctl(priv->video_fd, VIDIOC_S_FMT, &priv->format) < 0)
+            return TVI_CONTROL_FALSE;
+        return TVI_CONTROL_TRUE;
     case TVI_CONTROL_VID_SET_WIDTH:
         if (getfmt(priv) < 0) return TVI_CONTROL_FALSE;
         priv->format.fmt.pix.width = *(int *)arg;



More information about the MPlayer-cvslog mailing list