Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 366859
b: refs/heads/master
c: a2cf96f
h: refs/heads/master
i:
  366857: 6a3a134
  366855: 2211661
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 25, 2013
1 parent 7038666 commit 722b90d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 38823b29e70ab6d6b7092ce2fcafe299d0c5dd74
refs/heads/master: a2cf96f929d54cb2c8041358053656bf76be2c34
35 changes: 26 additions & 9 deletions trunk/drivers/media/usb/au0828/au0828-video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1373,10 +1373,13 @@ static int vidioc_enum_input(struct file *file, void *priv,
input->index = tmp;
strcpy(input->name, inames[AUVI_INPUT(tmp).type]);
if ((AUVI_INPUT(tmp).type == AU0828_VMUX_TELEVISION) ||
(AUVI_INPUT(tmp).type == AU0828_VMUX_CABLE))
(AUVI_INPUT(tmp).type == AU0828_VMUX_CABLE)) {
input->type |= V4L2_INPUT_TYPE_TUNER;
else
input->audioset = 1;
} else {
input->type |= V4L2_INPUT_TYPE_CAMERA;
input->audioset = 2;
}

input->std = dev->vdev->tvnorms;

Expand Down Expand Up @@ -1408,12 +1411,15 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
switch (AUVI_INPUT(index).type) {
case AU0828_VMUX_SVIDEO:
dev->input_type = AU0828_VMUX_SVIDEO;
dev->ctrl_ainput = 1;
break;
case AU0828_VMUX_COMPOSITE:
dev->input_type = AU0828_VMUX_COMPOSITE;
dev->ctrl_ainput = 1;
break;
case AU0828_VMUX_TELEVISION:
dev->input_type = AU0828_VMUX_TELEVISION;
dev->ctrl_ainput = 0;
break;
default:
dprintk(1, "VIDIOC_S_INPUT unknown input type set [%d]\n",
Expand Down Expand Up @@ -1450,30 +1456,40 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
return 0;
}

static int vidioc_enumaudio(struct file *file, void *priv, struct v4l2_audio *a)
{
if (a->index > 1)
return -EINVAL;

if (a->index == 0)
strcpy(a->name, "Television");
else
strcpy(a->name, "Line in");

a->capability = V4L2_AUDCAP_STEREO;
return 0;
}

static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
{
struct au0828_fh *fh = priv;
struct au0828_dev *dev = fh->dev;
unsigned int index = a->index;

if (a->index > 1)
return -EINVAL;

index = dev->ctrl_ainput;
if (index == 0)
a->index = dev->ctrl_ainput;
if (a->index == 0)
strcpy(a->name, "Television");
else
strcpy(a->name, "Line in");

a->capability = V4L2_AUDCAP_STEREO;
a->index = index;
return 0;
}

static int vidioc_s_audio(struct file *file, void *priv, const struct v4l2_audio *a)
{
struct au0828_fh *fh = priv;
struct au0828_dev *dev = fh->dev;

if (a->index != dev->ctrl_ainput)
return -EINVAL;
return 0;
Expand Down Expand Up @@ -1877,6 +1893,7 @@ static const struct v4l2_ioctl_ops video_ioctl_ops = {
.vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
.vidioc_g_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
.vidioc_s_fmt_vbi_cap = vidioc_g_fmt_vbi_cap,
.vidioc_enumaudio = vidioc_enumaudio,
.vidioc_g_audio = vidioc_g_audio,
.vidioc_s_audio = vidioc_s_audio,
.vidioc_cropcap = vidioc_cropcap,
Expand Down

0 comments on commit 722b90d

Please sign in to comment.