Added Nid and Tid menuitems to channel editor and updated README.

This commit is contained in:
Rolf Ahrenberg 2007-10-11 23:34:27 +00:00
parent 6327cbe7ed
commit a3ac10b921
3 changed files with 35 additions and 16 deletions

9
README
View File

@ -101,3 +101,12 @@ Configuration:
# IGMP required by multicasts
iptables -A INPUT -i eth0 -p igmp -d 224.0.0.0/4 -j ACCEPT
Notes:
- Working EIT requires correct Nid/Tid/Sid values as the NIT filter cannot
determine the type (satellite/cable/terrestrial) of the IPTV transport
stream.
- The following section filters are recommended to be disabled:
"NIT (0x40)", "SDT (0x42)", "TDT (0x70)"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: VDR 1.5.7\n"
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
"POT-Creation-Date: 2007-10-10 22:27+0300\n"
"POT-Creation-Date: 2007-10-12 02:23+0300\n"
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
"Last-Translator: Rolf Ahrenberg\n"
"Language-Team: <vdr@linuxtv.org>\n"
@ -76,62 +76,70 @@ msgid "Port"
msgstr "Portti"
#: setup.c:197
msgid "Nid"
msgstr "Verkko-ID"
#: setup.c:198
msgid "Tid"
msgstr "Lähete-ID"
#: setup.c:199
msgid "Rid"
msgstr "Radio-ID"
#: setup.c:269
#: setup.c:271
msgid "Cannot find unique channel settings!"
msgstr "Yksilöllisiä kanava-asetuksia ei löydetä!"
#: setup.c:343
#: setup.c:345
msgid "IPTV Channels"
msgstr "IPTV-kanavat"
#: setup.c:493
#: setup.c:495
msgid "IPTV Information"
msgstr "IPTV-tiedot"
#: setup.c:496
#: setup.c:498
msgid "Bits/bytes"
msgstr "Bitit/tavut"
#: setup.c:496
#: setup.c:498
msgid "Filters"
msgstr "Suodattimet"
#: setup.c:496
#: setup.c:498
msgid "General"
msgstr "Yleiset"
#: setup.c:496
#: setup.c:498
msgid "Pids"
msgstr "Pidit"
#: setup.c:509
#: setup.c:511
msgid "IPTV information not available!"
msgstr "IPTV-tietoja ei saatavilla!"
#: setup.c:589
#: setup.c:591
msgid "TS buffer size [MB]"
msgstr "TS-puskurin koko [MB]"
#: setup.c:590
#: setup.c:592
msgid "TS buffer prefill ratio [%]"
msgstr "TS-puskurin esitäyttöaste [%]"
#: setup.c:591
#: setup.c:593
msgid "Use section filtering"
msgstr "Käytä sektioiden suodatusta"
#: setup.c:593
#: setup.c:595
msgid "Scan Sid automatically"
msgstr "Etsi palvelu-ID automaattisesti"
#: setup.c:594
#: setup.c:596
msgid "Disable filters"
msgstr "Poista suodattimia käytöstä"
#. TRANSLATORS: note the singular!
#: setup.c:597
#: setup.c:599
msgid "Disable filter"
msgstr "Poista suodatin käytöstä"

View File

@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
* $Id: setup.c,v 1.30 2007/10/11 19:54:20 rahrenbe Exp $
* $Id: setup.c,v 1.31 2007/10/11 23:34:27 rahrenbe Exp $
*/
#include <string.h>
@ -194,6 +194,8 @@ void cIptvMenuEditChannel::Setup(void)
Add(new cMenuEditIntItem(trVDR("Tpid"), &data.tpid, 0, 0x1FFF));
Add(new cMenuEditIntItem(trVDR("CA"), &data.caids[0], 0, 0xFFFF));
Add(new cMenuEditIntItem(trVDR("Sid"), &data.sid, 1, 0xFFFF));
Add(new cMenuEditIntItem(tr ("Nid"), &data.nid, 0, 0xFFFF));
Add(new cMenuEditIntItem(tr ("Tid"), &data.tid, 0, 0xFFFF));
Add(new cMenuEditIntItem(tr ("Rid"), &data.rid, 0, 0x1FFF));
SetCurrent(Get(current));
Display();