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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/stream/tvi_v4l.c b/stream/tvi_v4l.c
index bfcf62d916..adbdf927c7 100644
--- a/stream/tvi_v4l.c
+++ b/stream/tvi_v4l.c
@@ -1441,6 +1441,16 @@ static int control(priv_t *priv, int cmd, void *arg)
return(TVI_CONTROL_TRUE);
}
+ case TVI_CONTROL_TUN_GET_SIGNAL:
+ {
+ if (ioctl(priv->video_fd, VIDIOCGTUNER, &priv->tuner) == -1)
+ {
+ mp_msg(MSGT_TV, MSGL_ERR, "ioctl get tuner failed: %s\n", strerror(errno));
+ return(TVI_CONTROL_FALSE);
+ }
+ *(int*)arg=100*(priv->tuner.signal>>8)/255;
+ return(TVI_CONTROL_TRUE);
+ }
/* ========== AUDIO controls =========== */
case TVI_CONTROL_AUD_GET_FORMAT: