* [PATCH xawtv3 1/3] get_media_devices.c: Remove superfluous ; add end of functions
@ 2016-02-15 21:20 Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 2/3] mtt: Fix mtt not being able to tune tv channels Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 3/3] Add desktop and appdata files for xawtv, motv and mtt Hans de Goede
0 siblings, 2 replies; 3+ messages in thread
From: Hans de Goede @ 2016-02-15 21:20 UTC (permalink / raw)
To: Linux Media Mailing List; +Cc: Hans de Goede
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
common/get_media_devices.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/get_media_devices.c b/common/get_media_devices.c
index a2d6354..619734e 100644
--- a/common/get_media_devices.c
+++ b/common/get_media_devices.c
@@ -227,7 +227,7 @@ static int add_v4l_class(struct media_device_entry *md)
md->type = MEDIA_V4L_SUBDEV;
return 0;
-};
+}
static int add_snd_class(struct media_device_entry *md)
{
@@ -270,7 +270,7 @@ static int add_snd_class(struct media_device_entry *md)
md->node = strdup(node);
return 0;
-};
+}
static int add_dvb_class(struct media_device_entry *md)
{
@@ -294,7 +294,7 @@ static int add_dvb_class(struct media_device_entry *md)
md->type = MEDIA_DVB_OSD;
return 0;
-};
+}
static int sort_media_device_entry(const void *a, const void *b)
{
--
2.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH xawtv3 2/3] mtt: Fix mtt not being able to tune tv channels
2016-02-15 21:20 [PATCH xawtv3 1/3] get_media_devices.c: Remove superfluous ; add end of functions Hans de Goede
@ 2016-02-15 21:20 ` Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 3/3] Add desktop and appdata files for xawtv, motv and mtt Hans de Goede
1 sibling, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2016-02-15 21:20 UTC (permalink / raw)
To: Linux Media Mailing List; +Cc: Hans de Goede
Teletext should use the tv tuner not the radio tuner...
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
x11/vbi-gui.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11/vbi-gui.c b/x11/vbi-gui.c
index f4b19da..429c8b2 100644
--- a/x11/vbi-gui.c
+++ b/x11/vbi-gui.c
@@ -917,7 +917,7 @@ static void vbi_station_cb(Widget widget, XtPointer client, XtPointer call)
struct v4l2_frequency frequency;
memset (&frequency, 0, sizeof(frequency));
- frequency.type = V4L2_TUNER_RADIO;
+ frequency.type = V4L2_TUNER_ANALOG_TV;
frequency.frequency = channels[i]->freq;
if (-1 == ioctl(vbi->fd, VIDIOC_S_FREQUENCY, &frequency))
perror("ioctl VIDIOCSFREQ");
--
2.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH xawtv3 3/3] Add desktop and appdata files for xawtv, motv and mtt
2016-02-15 21:20 [PATCH xawtv3 1/3] get_media_devices.c: Remove superfluous ; add end of functions Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 2/3] mtt: Fix mtt not being able to tune tv channels Hans de Goede
@ 2016-02-15 21:20 ` Hans de Goede
1 sibling, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2016-02-15 21:20 UTC (permalink / raw)
To: Linux Media Mailing List; +Cc: Hans de Goede
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
contrib/motv.desktop | 10 ++++++++++
contrib/motv.metainfo.xml | 11 +++++++++++
contrib/mtt.desktop | 10 ++++++++++
contrib/mtt.metainfo.xml | 11 +++++++++++
contrib/xawtv.appdata.xml | 33 +++++++++++++++++++++++++++++++++
contrib/xawtv.desktop | 10 ++++++++++
6 files changed, 85 insertions(+)
create mode 100644 contrib/motv.desktop
create mode 100644 contrib/motv.metainfo.xml
create mode 100644 contrib/mtt.desktop
create mode 100644 contrib/mtt.metainfo.xml
create mode 100644 contrib/xawtv.appdata.xml
create mode 100644 contrib/xawtv.desktop
diff --git a/contrib/motv.desktop b/contrib/motv.desktop
new file mode 100644
index 0000000..37093d4
--- /dev/null
+++ b/contrib/motv.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Comment=Analog TV viewing application
+Icon=xawtv
+Exec=motv
+Name=MoTV Television Viewer
+Terminal=false
+StartupNotify=false
+Type=Application
+Categories=AudioVideo;Video;
+Keywords=video;tv;viewer;v4l;v4l2;video4linux;
diff --git a/contrib/motv.metainfo.xml b/contrib/motv.metainfo.xml
new file mode 100644
index 0000000..7d3bc31
--- /dev/null
+++ b/contrib/motv.metainfo.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<component type="addon">
+ <id>motv.desktop</id>
+ <extends>xawtv.desktop</extends>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>GPL-2.0+</project_license>
+ <name>MoTV Television Viewer</name>
+ <summary>Motif UI version of xawtv</summary>
+ <url type="homepage">http://linuxtv.org/wiki/index.php/Xawtv</url>
+ <updatecontact>jwrdegoede_at_fedoraproject.org</updatecontact>
+</component>
diff --git a/contrib/mtt.desktop b/contrib/mtt.desktop
new file mode 100644
index 0000000..f04c29a
--- /dev/null
+++ b/contrib/mtt.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Comment=Analog TV Teletext viewing application
+Icon=xawtv
+Exec=mtt
+Name=MTT Teletext Viewer
+Terminal=false
+StartupNotify=false
+Type=Application
+Categories=AudioVideo;Video;
+Keywords=video;tv;viewer;v4l;v4l2;video4linux;teletext;
diff --git a/contrib/mtt.metainfo.xml b/contrib/mtt.metainfo.xml
new file mode 100644
index 0000000..28f5c84
--- /dev/null
+++ b/contrib/mtt.metainfo.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<component type="addon">
+ <id>mtt.desktop</id>
+ <extends>xawtv.desktop</extends>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>GPL-2.0+</project_license>
+ <name>MTT Teletext Viewer</name>
+ <summary>Easy to use Teletext GUI</summary>
+ <url type="homepage">http://linuxtv.org/wiki/index.php/Xawtv</url>
+ <updatecontact>jwrdegoede_at_fedoraproject.org</updatecontact>
+</component>
diff --git a/contrib/xawtv.appdata.xml b/contrib/xawtv.appdata.xml
new file mode 100644
index 0000000..92959d2
--- /dev/null
+++ b/contrib/xawtv.appdata.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<component type="desktop">
+ <id>xawtv.desktop</id>
+ <metadata_license>CC0-1.0</metadata_license>
+ <project_license>GPL-2.0+</project_license>
+ <name>xawtv</name>
+ <summary>Analog TV viewing application</summary>
+ <description>
+ <p>
+ xawtv was originally just an analog TV viewing application for Bttv
+ devices (bt848, bt878) using the Athena widgets, but evolved into a
+ small suite of X11 applications for V4L devices.
+ </p>
+ <p>
+ The xawtv package includes a number of useful console commandline
+ utilities:
+ </p>
+ <ul>
+ <li>alevtd - a http deamon for use with analogue TV teletext</li>
+ <li>radio -- a console radio listening app </li>
+ <li>scantv -- an analogue TV frequency scanner</li>
+ <li>v4l-conf -- current video mode (size and color depth)</li>
+ <li>v4lctl -- used to control a v4l device and set varying image parameters</li>
+ <li>webcam -- capture images from a webcam </li>
+ </ul>
+ </description>
+ <url type="homepage">http://linuxtv.org/wiki/index.php/Xawtv</url>
+ <screenshots>
+ <screenshot type="default">http://www.easylinux.de/Artikel/ausgabe/2004/01/036-xawtv/tv_8.png</screenshot>
+ <screenshot>http://www.easylinux.de/Artikel/ausgabe/2004/01/036-xawtv/xawtv1.png</screenshot>
+ </screenshots>
+ <updatecontact>jwrdegoede_at_fedoraproject.org</updatecontact>
+</component>
diff --git a/contrib/xawtv.desktop b/contrib/xawtv.desktop
new file mode 100644
index 0000000..349394d
--- /dev/null
+++ b/contrib/xawtv.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Comment=Analog TV viewing application
+Icon=xawtv
+Exec=xawtv
+Name=XawTV Television Viewer
+Terminal=false
+StartupNotify=false
+Type=Application
+Categories=AudioVideo;Video;
+Keywords=video;tv;viewer;v4l;v4l2;video4linux;
--
2.7.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-15 21:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-15 21:20 [PATCH xawtv3 1/3] get_media_devices.c: Remove superfluous ; add end of functions Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 2/3] mtt: Fix mtt not being able to tune tv channels Hans de Goede
2016-02-15 21:20 ` [PATCH xawtv3 3/3] Add desktop and appdata files for xawtv, motv and mtt Hans de Goede
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).