Skip to content

Commit

Permalink
[media] cx23885: ensure video is streaming before allowing vbi to stream
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Steven Toth authored and Mauro Carvalho Chehab committed Oct 14, 2011
1 parent af76e9f commit 24465b4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/media/video/cx23885/cx23885-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1100,6 +1100,14 @@ static int vidioc_streamon(struct file *file, void *priv,

if (unlikely(!res_get(dev, fh, get_resource(fh))))
return -EBUSY;

/* Don't start VBI streaming unless vida streaming
* has already started.
*/
if ((fh->type == V4L2_BUF_TYPE_VBI_CAPTURE) &&
((cx_read(VID_A_DMA_CTL) & 0x11) == 0))
return -EINVAL;

return videobuf_streamon(get_queue(fh));
}

Expand Down

0 comments on commit 24465b4

Please sign in to comment.