summaryrefslogtreecommitdiffstats
path: root/stream/tvi_v4l.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/tvi_v4l.c')
-rw-r--r--stream/tvi_v4l.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stream/tvi_v4l.c b/stream/tvi_v4l.c
index 819f0e2e01..4f73c03bec 100644
--- a/stream/tvi_v4l.c
+++ b/stream/tvi_v4l.c
@@ -496,14 +496,14 @@ static int init(priv_t *priv)
/* get capabilities (priv->capability is needed!) */
if (ioctl(priv->video_fd, VIDIOCGCAP, &priv->capability) == -1)
{
- mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilites failed: %s\n", strerror(errno));
+ mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilities failed: %s\n", strerror(errno));
goto err;
}
fcntl(priv->video_fd, F_SETFD, FD_CLOEXEC);
mp_msg(MSGT_TV, MSGL_INFO, "Selected device: %s\n", priv->capability.name);
- mp_msg(MSGT_TV, MSGL_INFO, " Capabilites: ");
+ mp_msg(MSGT_TV, MSGL_INFO, " Capabilities: ");
for (i = 0; device_cap2name[i] != NULL; i++)
if (priv->capability.type & (1 << i))
mp_msg(MSGT_TV, MSGL_INFO, "%s ", device_cap2name[i]);
@@ -810,7 +810,7 @@ static int vbi_init(priv_t* priv,char* device)
}
if(ioctl(vbi_fd,VIDIOCGCAP,&cap)<0){
- mp_msg(MSGT_TV,MSGL_ERR,"vbi: Query capatibilities failed for %s\n",priv->vbi_dev);
+ mp_msg(MSGT_TV,MSGL_ERR,"vbi: Query capabilities failed for %s\n",priv->vbi_dev);
close(vbi_fd);
return TVI_CONTROL_FALSE;
}
@@ -1397,7 +1397,7 @@ static int control(priv_t *priv, int cmd, void *arg)
}
if (ioctl(priv->video_fd, VIDIOCGCAP, &priv->capability) == -1) {
- mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilites failed: %s\n", strerror(errno));
+ mp_msg(MSGT_TV, MSGL_ERR, "ioctl get capabilities failed: %s\n", strerror(errno));
return TVI_CONTROL_FALSE;
}