]> git.sesse.net Git - vlc/commitdiff
v4l2: Since the frame size and frame intervals ioctls are new in Linux 2.6.19, add...
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 24 Nov 2007 22:24:34 +0000 (22:24 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 24 Nov 2007 22:24:34 +0000 (22:24 +0000)
modules/access/v4l2.c

index 7835e1120c6b76c6d3b72ba06e8a3692623c2f17..5cd1b0a9db8706368bf4a1d8cccffcbf1a08eb8d 100644 (file)
@@ -1310,6 +1310,8 @@ int OpenVideoDev( demux_t *p_demux, char *psz_device )
     if( fmt.fmt.pix.sizeimage < i_min )
         fmt.fmt.pix.sizeimage = i_min;
 
+#ifdef VIDIOC_ENUM_FRAMEINTERVALS
+    /* This is new in Linux 2.6.19 */
     /* List supported frame rates */
     struct v4l2_frmivalenum frmival;
     frmival.index = 0;
@@ -1352,6 +1354,7 @@ int OpenVideoDev( demux_t *p_demux, char *psz_device )
                 break;
         }
     }
+#endif
 
     /* Init vout Picture */
     vout_InitPicture( VLC_OBJECT(p_demux), &p_sys->pic, p_sys->i_fourcc,
@@ -1774,6 +1777,8 @@ vlc_bool_t ProbeVideoDev( demux_t *p_demux, char *psz_device )
                                 psz_fourcc,
                                 p_sys->p_codecs[i_index].description );
 
+#ifdef VIDIOC_ENUM_FRAMESIZES
+                    /* This is new in Linux 2.6.19 */
                     /* List valid frame sizes for this format */
                     struct v4l2_frmsizeenum frmsize;
                     frmsize.index = 0;
@@ -1810,6 +1815,7 @@ vlc_bool_t ProbeVideoDev( demux_t *p_demux, char *psz_device )
                                 break;
                         }
                     }
+#endif
                 }
             }
             if( !b_codec_supported )