mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
Fix for bttv driver (which doesn't seem to follow the v4l2 spec 100%?
Original commit message from CVS: Fix for bttv driver (which doesn't seem to follow the v4l2 spec 100%?
This commit is contained in:
parent
1bc371768a
commit
f0517f7165
1 changed files with 6 additions and 1 deletions
|
@ -266,12 +266,17 @@ gst_v4l2src_capture_init (GstV4l2Src *v4l2src)
|
|||
p.parm.capture.readbuffers = v4l2src->breq.count;
|
||||
ioctl(GST_V4L2ELEMENT(v4l2src)->video_fd,
|
||||
VIDIOC_S_PARM, &p);
|
||||
v4l2src->breq.count = p.parm.capture.readbuffers;
|
||||
}
|
||||
}
|
||||
if (v4l2src->breq.count < MIN_BUFFERS_QUEUED) {
|
||||
v4l2src->breq.count = MIN_BUFFERS_QUEUED;
|
||||
}
|
||||
|
||||
/* request buffer info */
|
||||
v4l2src->breq.type = v4l2src->format.type;
|
||||
if (ioctl(GST_V4L2ELEMENT(v4l2src)->video_fd, VIDIOC_REQBUFS, &v4l2src->breq) < 0) {
|
||||
if (ioctl(GST_V4L2ELEMENT(v4l2src)->video_fd,
|
||||
VIDIOC_REQBUFS, &v4l2src->breq) < 0) {
|
||||
gst_element_error(GST_ELEMENT(v4l2src),
|
||||
"Error requesting buffers (%d) for %s: %s",
|
||||
v4l2src->breq.count, GST_V4L2ELEMENT(v4l2src)->device, g_strerror(errno));
|
||||
|
|
Loading…
Reference in a new issue