Commit 76834848 authored by Christophe Massiot's avatar Christophe Massiot

* modules/access/pvr/pvr.c: Fixed width/height selection with latest ivtv

  drivers.
parent 9a58cddc
...@@ -509,6 +509,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -509,6 +509,7 @@ static int Open( vlc_object_t * p_this )
/* set the picture size */ /* set the picture size */
if ( p_sys->i_width != -1 || p_sys->i_height != -1 ) if ( p_sys->i_width != -1 || p_sys->i_height != -1 )
{ {
vfmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
if ( ioctl( p_sys->i_fd, VIDIOC_G_FMT, &vfmt ) < 0 ) if ( ioctl( p_sys->i_fd, VIDIOC_G_FMT, &vfmt ) < 0 )
{ {
msg_Warn( p_access, "VIDIOC_G_FMT failed" ); msg_Warn( p_access, "VIDIOC_G_FMT failed" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment