Version 1.7.15

- Added Macedonian language texts (thanks to Dimitar Petrovski).
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Added handling of EnhancedAC3DescriptorTag (thanks to Eric Valette).
- The default SVDRP port is now 6419 (registered with ICANN/IANA by Christian Tramnitz).
  Use '-p 2001' to switch back to the old port if necessary.
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- cDvbDevice::ProvidesTransponder() now checks the modulation capabilities of the
  device (as far as the driver allows this).
- Fixed cFrameDetector::Analyze() in case part of the data has been processed and
  there is less than MIN_TS_PACKETS_FOR_FRAME_DETECTOR left (reported by Derek Kelly).
- Added a note about not deleting cDeviceHook objects to device.h.
- Added user defined key kUser0 (suggested by Ulf Kiener).
- Include paths are now added instead of overwriting INCLUDES in the Makefile (thanks
  to Paul Menzel).
- The various modulation types are now taken into account when selecting a device for
  a recording or live viewing, so that devices that provide more capabilities are
  spared.
- Fixed generating PMT language descriptors for multi language PIDs (thanks to Rolf
  Ahrenberg).
- Transponders that use "8psk turbo fec" (a non-standard mode used by North American
  providers) are now identified by assuming that all 8psk transponders on DVB-S use
  "turbo fec". In order to determine whether a certain device can handle "turbo fec",
  the new driver flag FE_CAN_TURBO_FEC is checked. If your device can handle "turbo
  fec", and your driver doesn't have that flag, yet, you can apply the patch from
  ftp://ftp.tvdr.de/vdr/Developer/v4l-dvb-add-FE_CAN_TURBO_FEC.diff. A temporary
  macro in dvbdevice.c defines the flag for all those who don't need this in the
  driver, so that they can continue using an unmodified driver.
  Thanks to Derek Kelly for testing this.
- Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
- Fixed handling "none" color entries in XPM files (thanks to Thomas Günther).
- Fixed a crash when creating a new channel if the channel list is empty (reported
  by Halim Sahin).
- Updated the Czech OSD texts (thanks to Radek Stastny).
- Fixed a possible out of buffer memory access in case of bad TS data (reported
  by Rolf Ahrenberg).
- Implemented handling of HD resolution subtitles according to v1.3.1 of
  ETSI EN 300 743, chapter 7.2.1 (thanks to Rolf Ahrenberg).
- The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio).
- Fixed a problem with external Dolby Digital processing via the '-a' option in live
  mode and with TS recordings (reported by Christopher Reimer).
- Added handling MPEG audio types "ISO/IEC 14496-3 Audio with LATM transport syntax"
  and "ISO/IEC 13818-7 Audio with ADTS transport syntax" (suggested by Luis Fernandes).
  See man vdr(5) on how the APID section of channels has been extended to store
  this information.
- Added detecting channels that use service type 0x16.
- Added full handling of the stream types of Dolby Digital pids
  (thanks to Jose Alberto Reguero).
- The new setup option "OSD/Number keys for characters" can be used to control whether
  the number keys can be used to enter characters in a text input field (suggested
  by Stefan Huskamp).
This commit is contained in:
Klaus Schmidinger 2010-06-06 14:49:00 +02:00
parent 1eb12b4973
commit c2c45d68c6
58 changed files with 2500 additions and 774 deletions

View File

@ -1093,6 +1093,10 @@ Rolf Ahrenberg <rahrenbe@cc.hut.fi>
suggesting to add plain text error messages to log entries from cOsd::SetAreas() suggesting to add plain text error messages to log entries from cOsd::SetAreas()
for keeping subtitles visible when pausing replay for keeping subtitles visible when pausing replay
for suggesting to assign the source character 'I' to "IPTV" for suggesting to assign the source character 'I' to "IPTV"
for fixing generating PMT language descriptors for multi language PIDs
for reporting a possible out of buffer memory access in case of bad TS data
for implementing handling of HD resolution subtitles according to v1.3.1 of
ETSI EN 300 743, chapter 7.2.1
Ralf Klueber <ralf.klueber@vodafone.com> Ralf Klueber <ralf.klueber@vodafone.com>
for reporting a bug in cutting a recording if there is only a single editing mark for reporting a bug in cutting a recording if there is only a single editing mark
@ -1358,6 +1362,7 @@ Christian Tramnitz <maillist@tramnitz.com>
for terrestrial transponders for terrestrial transponders
for his support in debugging a problem in setting the source type for newly for his support in debugging a problem in setting the source type for newly
detected terrestrial transponders detected terrestrial transponders
for registering the default SVDRP port (6419) with ICANN/IANA
Jens Rosenboom <me@jayr.de> Jens Rosenboom <me@jayr.de>
for fixing the SVDRP command 'STAT DISK' to avoid a 'division by 0' in case for fixing the SVDRP command 'STAT DISK' to avoid a 'division by 0' in case
@ -1952,6 +1957,7 @@ Thomas G
strings strings
for suggesting to make the 'Allowed' parameter in cMenuEditStrItem() NULL by default, for suggesting to make the 'Allowed' parameter in cMenuEditStrItem() NULL by default,
which results in using tr(FileNameChars) which results in using tr(FileNameChars)
for fixing handling "none" color entries in XPM files
David Woodhouse <dwmw2@infradead.org> David Woodhouse <dwmw2@infradead.org>
for his help in replacing the get/put_unaligned() macros from asm/unaligned.h with for his help in replacing the get/put_unaligned() macros from asm/unaligned.h with
@ -2336,6 +2342,7 @@ Boguslaw Juza <bogdan@uci.agh.edu.pl>
Ulf Kiener <webmaster@ulf-kiener.de> Ulf Kiener <webmaster@ulf-kiener.de>
for reporting a problem with audio track descriptions in the DVD plugin after a for reporting a problem with audio track descriptions in the DVD plugin after a
replay has been stopped replay has been stopped
for suggesting to add user defined key kUser0
Jörg Wendel <vdr-ml@jwendel.de> Jörg Wendel <vdr-ml@jwendel.de>
for reporting that cPlugin::Active() was called too often for reporting that cPlugin::Active() was called too often
@ -2362,6 +2369,7 @@ Alexander Riedel <alexander-riedel@t-online.de>
Jose Alberto Reguero <jareguero@telefonica.net> Jose Alberto Reguero <jareguero@telefonica.net>
for a patch that fixed part of a crash in i18n character set conversion for a patch that fixed part of a crash in i18n character set conversion
for fixing cDvbPlayer::NextFile() to handle files larger than 2GB for fixing cDvbPlayer::NextFile() to handle files larger than 2GB
for implementing full handling of the stream types of Dolby Digital pids
Patrice Staudt <staudt@engsystem.net> Patrice Staudt <staudt@engsystem.net>
for adding full weekday names to i18n.c for plugins to use for adding full weekday names to i18n.c for plugins to use
@ -2393,6 +2401,7 @@ Halim Sahin <halim.sahin@t-online.de>
channel in the channel list channel in the channel list
for suggesting to make the "Source" item in the "Edit channel" menu wrap around the for suggesting to make the "Source" item in the "Edit channel" menu wrap around the
list of sources list of sources
for reporting a crash when creating a new channel if the channel list is empty
Denis Knauf <denis.knauf@gmail.com> Denis Knauf <denis.knauf@gmail.com>
for reporting a missing '-' at the next to last line of SVDRP help texts for reporting a missing '-' at the next to last line of SVDRP help texts
@ -2524,6 +2533,8 @@ Derek Kelly (user.vdr@gmail.com)
for reporting a problem with HD NTSC broadcasts that split frames over several payload for reporting a problem with HD NTSC broadcasts that split frames over several payload
units units
for updating sources.conf for updating sources.conf
for reporting a problem where the frame rate was not detected correctly
for testing the implementation of FE_CAN_TURBO_FEC
Marcel Unbehaun <frostworks@gmx.de> Marcel Unbehaun <frostworks@gmx.de>
for adding cRecordingInfo::GetEvent() for adding cRecordingInfo::GetEvent()
@ -2579,3 +2590,27 @@ Lars Hanisch <dvb@flensrocker.de>
Alex Lasnier <alex@fepg.org> Alex Lasnier <alex@fepg.org>
for adding tuning support for ATSC devices for adding tuning support for ATSC devices
Dimitar Petrovski <dimeptr@gmail.com>
for translating OSD texts to the Macedonian language
Eric Valette <eric.valette@free.fr>
for adding handling of EnhancedAC3DescriptorTag
Paul Menzel <paulepanter@users.sourceforge.net>
for making include paths be added instead of overwriting INCLUDES in the Makefile
Radek Stastny <dedkus@gmail.com>
for translating OSD texts to the Czech language
Luis Fernandes <telping@gmail.com>
for suggesting to add handling MPEG audio type "ISO/IEC 14496-3 Audio with LATM
transport syntax"
Christopher Reimer <reimer.christopher@freenet.de>
for reporting a problem with external Dolby Digital processing via the '-a' option
in live mode and with TS recordings
Stefan Huskamp <coca_cola1@gmx.de>
for suggesting to make entering characters via the number keys
configurable

54
HISTORY
View File

@ -6410,3 +6410,57 @@ Video Disk Recorder Revision History
during replay. during replay.
- The new setup option "Folders in timer menu" controls whether the file names in - The new setup option "Folders in timer menu" controls whether the file names in
the timer menu are shown with their full folder path. the timer menu are shown with their full folder path.
2010-06-06: Version 1.7.15
- Added Macedonian language texts (thanks to Dimitar Petrovski).
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Added handling of EnhancedAC3DescriptorTag (thanks to Eric Valette).
- The default SVDRP port is now 6419 (registered with ICANN/IANA by Christian Tramnitz).
Use '-p 2001' to switch back to the old port if necessary.
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- cDvbDevice::ProvidesTransponder() now checks the modulation capabilities of the
device (as far as the driver allows this).
- Fixed cFrameDetector::Analyze() in case part of the data has been processed and
there is less than MIN_TS_PACKETS_FOR_FRAME_DETECTOR left (reported by Derek Kelly).
- Added a note about not deleting cDeviceHook objects to device.h.
- Added user defined key kUser0 (suggested by Ulf Kiener).
- Include paths are now added instead of overwriting INCLUDES in the Makefile (thanks
to Paul Menzel).
- The various modulation types are now taken into account when selecting a device for
a recording or live viewing, so that devices that provide more capabilities are
spared.
- Fixed generating PMT language descriptors for multi language PIDs (thanks to Rolf
Ahrenberg).
- Transponders that use "8psk turbo fec" (a non-standard mode used by North American
providers) are now identified by assuming that all 8psk transponders on DVB-S use
"turbo fec". In order to determine whether a certain device can handle "turbo fec",
the new driver flag FE_CAN_TURBO_FEC is checked. If your device can handle "turbo
fec", and your driver doesn't have that flag, yet, you can apply the patch from
ftp://ftp.tvdr.de/vdr/Developer/v4l-dvb-add-FE_CAN_TURBO_FEC.diff. A temporary
macro in dvbdevice.c defines the flag for all those who don't need this in the
driver, so that they can continue using an unmodified driver.
Thanks to Derek Kelly for testing this.
- Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
- Fixed handling "none" color entries in XPM files (thanks to Thomas Günther).
- Fixed a crash when creating a new channel if the channel list is empty (reported
by Halim Sahin).
- Updated the Czech OSD texts (thanks to Radek Stastny).
- Fixed a possible out of buffer memory access in case of bad TS data (reported
by Rolf Ahrenberg).
- Implemented handling of HD resolution subtitles according to v1.3.1 of
ETSI EN 300 743, chapter 7.2.1 (thanks to Rolf Ahrenberg).
- The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio).
- Fixed a problem with external Dolby Digital processing via the '-a' option in live
mode and with TS recordings (reported by Christopher Reimer).
- Added handling MPEG audio types "ISO/IEC 14496-3 Audio with LATM transport syntax"
and "ISO/IEC 13818-7 Audio with ADTS transport syntax" (suggested by Luis Fernandes).
See man vdr(5) on how the APID section of channels has been extended to store
this information.
- Added detecting channels that use service type 0x16.
- Added full handling of the stream types of Dolby Digital pids
(thanks to Jose Alberto Reguero).
- The new setup option "OSD/Number keys for characters" can be used to control whether
the number keys can be used to enter characters in a text input field (suggested
by Stefan Huskamp).

View File

@ -66,7 +66,7 @@ messages (tail -f /var/log/messages) to see if there are any problems.
The program can be controlled via a network connection to its SVDRP The program can be controlled via a network connection to its SVDRP
port ("Simple Video Disk Recorder Protocol"). By default, it listens port ("Simple Video Disk Recorder Protocol"). By default, it listens
on port 2001 (use the --port=PORT option to change this). For details on port 6419 (use the --port=PORT option to change this). For details
about the SVDRP syntax see the source file 'svdrp.c'. about the SVDRP syntax see the source file 'svdrp.c'.
WARNING: DUE TO THE OPEN SVDRP PORT THIS PROGRAM MAY CONSTITUTE A WARNING: DUE TO THE OPEN SVDRP PORT THIS PROGRAM MAY CONSTITUTE A

5
MANUAL
View File

@ -588,6 +588,11 @@ Version 1.6
Controls whether the full folder path is shown in the Controls whether the full folder path is shown in the
"Timers" menu, or just the basic recording name. "Timers" menu, or just the basic recording name.
Number keys for characters = yes
Controls whether the number keys can be used to enter
characters in a text input field. You may want to set this
to "no" if you are using an actual keyboard to control VDR.
EPG: EPG:
EPG scan timeout = 5 The time (in hours) of user inactivity after which the EPG scan timeout = 5 The time (in hours) of user inactivity after which the

View File

@ -4,7 +4,7 @@
# See the main source file 'vdr.c' for copyright information and # See the main source file 'vdr.c' for copyright information and
# how to reach the author. # how to reach the author.
# #
# $Id: Makefile 2.8 2010/02/21 11:44:38 kls Exp $ # $Id: Makefile 2.9 2010/04/10 12:40:15 kls Exp $
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -21,7 +21,7 @@ MANDIR = $(PREFIX)/share/man
BINDIR = $(PREFIX)/bin BINDIR = $(PREFIX)/bin
LOCDIR = ./locale LOCDIR = ./locale
LIBS = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig LIBS = -ljpeg -lpthread -ldl -lcap -lrt -lfreetype -lfontconfig
INCLUDES = -I/usr/include/freetype2 INCLUDES ?= -I/usr/include/freetype2
PLUGINDIR= ./PLUGINS PLUGINDIR= ./PLUGINS
PLUGINLIBDIR= $(PLUGINDIR)/lib PLUGINLIBDIR= $(PLUGINDIR)/lib

4
README
View File

@ -34,3 +34,7 @@ file management and even "on disk editing". The menus
of commercial set-top boxes usually are a lot more fancy than of commercial set-top boxes usually are a lot more fancy than
the ones in this system, but here we have the full source code the ones in this system, but here we have the full source code
and can modify the menus in whatever way desired. and can modify the menus in whatever way desired.
"VDR Video Disk Recorder" is a registered trademark of Klaus Schmidinger.
"TVDR TV Done Right" is a registered trademark of Klaus Schmidinger.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: audio.c 2.1 2008/07/06 11:42:58 kls Exp $ * $Id: audio.c 2.2 2010/05/16 13:30:11 kls Exp $
*/ */
#include "audio.h" #include "audio.h"
@ -56,6 +56,7 @@ cExternalAudio::cExternalAudio(const char *Command)
{ {
command = strdup(Command); command = strdup(Command);
mute = false; mute = false;
cDvbDevice::SetTransferModeForDolbyDigital(2);
} }
cExternalAudio::~cExternalAudio() cExternalAudio::~cExternalAudio()
@ -68,7 +69,6 @@ void cExternalAudio::Play(const uchar *Data, int Length, uchar Id)
if (command && !mute) { if (command && !mute) {
if (pipe || pipe.Open(command, "w")) { if (pipe || pipe.Open(command, "w")) {
if (0x80 <= Id && Id <= 0x87 || Id == 0xBD) { // AC3 if (0x80 <= Id && Id <= 0x87 || Id == 0xBD) { // AC3
cDvbDevice::SetTransferModeForDolbyDigital(2);
int written = Data[8] + 9; // skips the PES header int written = Data[8] + 9; // skips the PES header
if (Id != 0xBD) if (Id != 0xBD)
written += 4; // skips AC3 bytes written += 4; // skips AC3 bytes

View File

@ -4,13 +4,14 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: channels.c 2.13 2010/02/21 13:36:04 kls Exp $ * $Id: channels.c 2.16 2010/06/05 13:33:57 kls Exp $
*/ */
#include "channels.h" #include "channels.h"
#include <ctype.h> #include <ctype.h>
#include "device.h" #include "device.h"
#include "epg.h" #include "epg.h"
#include "libsi/si.h"
#include "timers.h" #include "timers.h"
// IMPORTANT NOTE: in the 'sscanf()' calls there is a blank after the '%d' // IMPORTANT NOTE: in the 'sscanf()' calls there is a blank after the '%d'
@ -61,6 +62,7 @@ cChannel::cChannel(void)
provider = strdup(""); provider = strdup("");
portalName = strdup(""); portalName = strdup("");
memset(&__BeginData__, 0, (char *)&__EndData__ - (char *)&__BeginData__); memset(&__BeginData__, 0, (char *)&__EndData__ - (char *)&__BeginData__);
parameters = "";
modification = CHANNELMOD_NONE; modification = CHANNELMOD_NONE;
schedule = NULL; schedule = NULL;
linkChannels = NULL; linkChannels = NULL;
@ -270,14 +272,21 @@ static int IntArraysDiffer(const int *a, const int *b, const char na[][MAXLANGCO
return result; return result;
} }
static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[][MAXLANGCODE2] = NULL) static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[][MAXLANGCODE2] = NULL, const int *t = NULL)
{ {
char *q = s; char *q = s;
int i = 0; int i = 0;
while (a[i] || i == 0) { while (a[i] || i == 0) {
q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]); q += sprintf(q, Base == 16 ? "%s%X" : "%s%d", i ? "," : "", a[i]);
if (a[i] && n && *n[i]) const char *Delim = "=";
q += sprintf(q, "=%s", n[i]); if (a[i]) {
if (n && *n[i]) {
q += sprintf(q, "%s%s", Delim, n[i]);
Delim = "";
}
if (t && t[i])
q += sprintf(q, "%s@%d", Delim, t[i]);
}
if (!a[i]) if (!a[i])
break; break;
i++; i++;
@ -286,32 +295,32 @@ static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[]
return q - s; return q - s;
} }
void cChannel::SetPids(int Vpid, int Ppid, int Vtype, int *Apids, char ALangs[][MAXLANGCODE2], int *Dpids, char DLangs[][MAXLANGCODE2], int *Spids, char SLangs[][MAXLANGCODE2], int Tpid) void cChannel::SetPids(int Vpid, int Ppid, int Vtype, int *Apids, int *Atypes, char ALangs[][MAXLANGCODE2], int *Dpids, int *Dtypes, char DLangs[][MAXLANGCODE2], int *Spids, char SLangs[][MAXLANGCODE2], int Tpid)
{ {
int mod = CHANNELMOD_NONE; int mod = CHANNELMOD_NONE;
if (vpid != Vpid || ppid != Ppid || vtype != Vtype || tpid != Tpid) if (vpid != Vpid || ppid != Ppid || vtype != Vtype || tpid != Tpid)
mod |= CHANNELMOD_PIDS; mod |= CHANNELMOD_PIDS;
int m = IntArraysDiffer(apids, Apids, alangs, ALangs) | IntArraysDiffer(dpids, Dpids, dlangs, DLangs) | IntArraysDiffer(spids, Spids, slangs, SLangs); int m = IntArraysDiffer(apids, Apids, alangs, ALangs) | IntArraysDiffer(atypes, Atypes) | IntArraysDiffer(dpids, Dpids, dlangs, DLangs) | IntArraysDiffer(dtypes, Dtypes) | IntArraysDiffer(spids, Spids, slangs, SLangs);
if (m & STRDIFF) if (m & STRDIFF)
mod |= CHANNELMOD_LANGS; mod |= CHANNELMOD_LANGS;
if (m & VALDIFF) if (m & VALDIFF)
mod |= CHANNELMOD_PIDS; mod |= CHANNELMOD_PIDS;
if (mod) { if (mod) {
const int BufferSize = (MAXAPIDS + MAXDPIDS) * (5 + 1 + MAXLANGCODE2) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod+cod', +10: paranoia const int BufferSize = (MAXAPIDS + MAXDPIDS) * (5 + 1 + MAXLANGCODE2 + 5) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod+cod@type', +10: paranoia
char OldApidsBuf[BufferSize]; char OldApidsBuf[BufferSize];
char NewApidsBuf[BufferSize]; char NewApidsBuf[BufferSize];
char *q = OldApidsBuf; char *q = OldApidsBuf;
q += IntArrayToString(q, apids, 10, alangs); q += IntArrayToString(q, apids, 10, alangs, atypes);
if (dpids[0]) { if (dpids[0]) {
*q++ = ';'; *q++ = ';';
q += IntArrayToString(q, dpids, 10, dlangs); q += IntArrayToString(q, dpids, 10, dlangs, dtypes);
} }
*q = 0; *q = 0;
q = NewApidsBuf; q = NewApidsBuf;
q += IntArrayToString(q, Apids, 10, ALangs); q += IntArrayToString(q, Apids, 10, ALangs, Atypes);
if (Dpids[0]) { if (Dpids[0]) {
*q++ = ';'; *q++ = ';';
q += IntArrayToString(q, Dpids, 10, DLangs); q += IntArrayToString(q, Dpids, 10, DLangs, Dtypes);
} }
*q = 0; *q = 0;
const int SBufferSize = MAXSPIDS * (5 + 1 + MAXLANGCODE2) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod', +10: paranoia const int SBufferSize = MAXSPIDS * (5 + 1 + MAXLANGCODE2) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod', +10: paranoia
@ -330,11 +339,13 @@ void cChannel::SetPids(int Vpid, int Ppid, int Vtype, int *Apids, char ALangs[][
vtype = Vtype; vtype = Vtype;
for (int i = 0; i < MAXAPIDS; i++) { for (int i = 0; i < MAXAPIDS; i++) {
apids[i] = Apids[i]; apids[i] = Apids[i];
atypes[i] = Atypes[i];
strn0cpy(alangs[i], ALangs[i], MAXLANGCODE2); strn0cpy(alangs[i], ALangs[i], MAXLANGCODE2);
} }
apids[MAXAPIDS] = 0; apids[MAXAPIDS] = 0;
for (int i = 0; i < MAXDPIDS; i++) { for (int i = 0; i < MAXDPIDS; i++) {
dpids[i] = Dpids[i]; dpids[i] = Dpids[i];
dtypes[i] = Dtypes[i];
strn0cpy(dlangs[i], DLangs[i], MAXLANGCODE2); strn0cpy(dlangs[i], DLangs[i], MAXLANGCODE2);
} }
dpids[MAXDPIDS] = 0; dpids[MAXDPIDS] = 0;
@ -484,13 +495,13 @@ cString cChannel::ToText(const cChannel *Channel)
if (Channel->vpid && Channel->vtype) if (Channel->vpid && Channel->vtype)
q += snprintf(q, sizeof(vpidbuf) - (q - vpidbuf), "=%d", Channel->vtype); q += snprintf(q, sizeof(vpidbuf) - (q - vpidbuf), "=%d", Channel->vtype);
*q = 0; *q = 0;
const int BufferSize = (MAXAPIDS + MAXDPIDS) * (5 + 1 + MAXLANGCODE2) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod+cod', +10: paranoia const int BufferSize = (MAXAPIDS + MAXDPIDS) * (5 + 1 + MAXLANGCODE2 + 5) + 10; // 5 digits plus delimiting ',' or ';' plus optional '=cod+cod@type', +10: paranoia
char apidbuf[BufferSize]; char apidbuf[BufferSize];
q = apidbuf; q = apidbuf;
q += IntArrayToString(q, Channel->apids, 10, Channel->alangs); q += IntArrayToString(q, Channel->apids, 10, Channel->alangs, Channel->atypes);
if (Channel->dpids[0]) { if (Channel->dpids[0]) {
*q++ = ';'; *q++ = ';';
q += IntArrayToString(q, Channel->dpids, 10, Channel->dlangs); q += IntArrayToString(q, Channel->dpids, 10, Channel->dlangs, Channel->dtypes);
} }
*q = 0; *q = 0;
char caidbuf[MAXCAIDS * 5 + 10]; // 5: 4 digits plus delimiting ',', 10: paranoia char caidbuf[MAXCAIDS * 5 + 10]; // 5: 4 digits plus delimiting ',', 10: paranoia
@ -546,7 +557,9 @@ bool cChannel::Parse(const char *s)
vpid = ppid = 0; vpid = ppid = 0;
vtype = 0; vtype = 0;
apids[0] = 0; apids[0] = 0;
atypes[0] = 0;
dpids[0] = 0; dpids[0] = 0;
dtypes[0] = 0;
ok = false; ok = false;
if (parambuf && sourcebuf && vpidbuf && apidbuf) { if (parambuf && sourcebuf && vpidbuf && apidbuf) {
parameters = parambuf; parameters = parambuf;
@ -579,9 +592,15 @@ bool cChannel::Parse(const char *s)
char *strtok_next; char *strtok_next;
while ((q = strtok_r(p, ",", &strtok_next)) != NULL) { while ((q = strtok_r(p, ",", &strtok_next)) != NULL) {
if (NumApids < MAXAPIDS) { if (NumApids < MAXAPIDS) {
atypes[NumApids] = 4; // backwards compatibility
char *l = strchr(q, '='); char *l = strchr(q, '=');
if (l) { if (l) {
*l++ = 0; *l++ = 0;
char *t = strchr(l, '@');
if (t) {
*t++ = 0;
atypes[NumApids] = strtol(t, NULL, 10);
}
strn0cpy(alangs[NumApids], l, MAXLANGCODE2); strn0cpy(alangs[NumApids], l, MAXLANGCODE2);
} }
else else
@ -593,6 +612,7 @@ bool cChannel::Parse(const char *s)
p = NULL; p = NULL;
} }
apids[NumApids] = 0; apids[NumApids] = 0;
atypes[NumApids] = 0;
if (dpidbuf) { if (dpidbuf) {
char *p = dpidbuf; char *p = dpidbuf;
char *q; char *q;
@ -600,9 +620,15 @@ bool cChannel::Parse(const char *s)
char *strtok_next; char *strtok_next;
while ((q = strtok_r(p, ",", &strtok_next)) != NULL) { while ((q = strtok_r(p, ",", &strtok_next)) != NULL) {
if (NumDpids < MAXDPIDS) { if (NumDpids < MAXDPIDS) {
dtypes[NumDpids] = SI::AC3DescriptorTag; // backwards compatibility
char *l = strchr(q, '='); char *l = strchr(q, '=');
if (l) { if (l) {
*l++ = 0; *l++ = 0;
char *t = strchr(l, '@');
if (t) {
*t++ = 0;
dtypes[NumDpids] = strtol(t, NULL, 10);
}
strn0cpy(dlangs[NumDpids], l, MAXLANGCODE2); strn0cpy(dlangs[NumDpids], l, MAXLANGCODE2);
} }
else else
@ -614,6 +640,7 @@ bool cChannel::Parse(const char *s)
p = NULL; p = NULL;
} }
dpids[NumDpids] = 0; dpids[NumDpids] = 0;
dtypes[NumDpids] = 0;
} }
if (caidbuf) { if (caidbuf) {

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: channels.h 2.10 2010/03/07 13:47:13 kls Exp $ * $Id: channels.h 2.12 2010/06/05 13:12:54 kls Exp $
*/ */
#ifndef __CHANNELS_H #ifndef __CHANNELS_H
@ -104,8 +104,10 @@ private:
int ppid; int ppid;
int vtype; int vtype;
int apids[MAXAPIDS + 1]; // list is zero-terminated int apids[MAXAPIDS + 1]; // list is zero-terminated
int atypes[MAXAPIDS + 1]; // list is zero-terminated
char alangs[MAXAPIDS][MAXLANGCODE2]; char alangs[MAXAPIDS][MAXLANGCODE2];
int dpids[MAXDPIDS + 1]; // list is zero-terminated int dpids[MAXDPIDS + 1]; // list is zero-terminated
int dtypes[MAXAPIDS + 1]; // list is zero-terminated
char dlangs[MAXDPIDS][MAXLANGCODE2]; char dlangs[MAXDPIDS][MAXLANGCODE2];
int spids[MAXSPIDS + 1]; // list is zero-terminated int spids[MAXSPIDS + 1]; // list is zero-terminated
char slangs[MAXSPIDS][MAXLANGCODE2]; char slangs[MAXSPIDS][MAXLANGCODE2];
@ -156,6 +158,8 @@ public:
const char *Alang(int i) const { return (0 <= i && i < MAXAPIDS) ? alangs[i] : ""; } const char *Alang(int i) const { return (0 <= i && i < MAXAPIDS) ? alangs[i] : ""; }
const char *Dlang(int i) const { return (0 <= i && i < MAXDPIDS) ? dlangs[i] : ""; } const char *Dlang(int i) const { return (0 <= i && i < MAXDPIDS) ? dlangs[i] : ""; }
const char *Slang(int i) const { return (0 <= i && i < MAXSPIDS) ? slangs[i] : ""; } const char *Slang(int i) const { return (0 <= i && i < MAXSPIDS) ? slangs[i] : ""; }
int Atype(int i) const { return (0 <= i && i < MAXAPIDS) ? atypes[i] : 0; }
int Dtype(int i) const { return (0 <= i && i < MAXDPIDS) ? dtypes[i] : 0; }
uchar SubtitlingType(int i) const { return (0 <= i && i < MAXSPIDS) ? subtitlingTypes[i] : uchar(0); } uchar SubtitlingType(int i) const { return (0 <= i && i < MAXSPIDS) ? subtitlingTypes[i] : uchar(0); }
uint16_t CompositionPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? compositionPageIds[i] : uint16_t(0); } uint16_t CompositionPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? compositionPageIds[i] : uint16_t(0); }
uint16_t AncillaryPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? ancillaryPageIds[i] : uint16_t(0); } uint16_t AncillaryPageId(int i) const { return (0 <= i && i < MAXSPIDS) ? ancillaryPageIds[i] : uint16_t(0); }
@ -185,7 +189,7 @@ public:
void SetId(int Nid, int Tid, int Sid, int Rid = 0); void SetId(int Nid, int Tid, int Sid, int Rid = 0);
void SetName(const char *Name, const char *ShortName, const char *Provider); void SetName(const char *Name, const char *ShortName, const char *Provider);
void SetPortalName(const char *PortalName); void SetPortalName(const char *PortalName);
void SetPids(int Vpid, int Ppid, int Vtype, int *Apids, char ALangs[][MAXLANGCODE2], int *Dpids, char DLangs[][MAXLANGCODE2], int *Spids, char SLangs[][MAXLANGCODE2], int Tpid); void SetPids(int Vpid, int Ppid, int Vtype, int *Apids, int *Atypes, char ALangs[][MAXLANGCODE2], int *Dpids, int *Dtypes, char DLangs[][MAXLANGCODE2], int *Spids, char SLangs[][MAXLANGCODE2], int Tpid);
void SetCaIds(const int *CaIds); // list must be zero-terminated void SetCaIds(const int *CaIds); // list must be zero-terminated
void SetCaDescriptors(int Level); void SetCaDescriptors(int Level);
void SetLinkChannels(cLinkChannels *LinkChannels); void SetLinkChannels(cLinkChannels *LinkChannels);

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.c 2.12 2010/03/12 16:41:37 kls Exp $ * $Id: config.c 2.13 2010/06/06 10:06:43 kls Exp $
*/ */
#include "config.h" #include "config.h"
@ -355,6 +355,7 @@ cSetup::cSetup(void)
VpsMargin = 120; VpsMargin = 120;
RecordingDirs = 1; RecordingDirs = 1;
FoldersInTimerMenu = 1; FoldersInTimerMenu = 1;
NumberKeysForChars = 1;
VideoDisplayFormat = 1; VideoDisplayFormat = 1;
VideoFormat = 0; VideoFormat = 0;
UpdateChannels = 5; UpdateChannels = 5;
@ -545,6 +546,7 @@ bool cSetup::Parse(const char *Name, const char *Value)
else if (!strcasecmp(Name, "VpsMargin")) VpsMargin = atoi(Value); else if (!strcasecmp(Name, "VpsMargin")) VpsMargin = atoi(Value);
else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value); else if (!strcasecmp(Name, "RecordingDirs")) RecordingDirs = atoi(Value);
else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value); else if (!strcasecmp(Name, "FoldersInTimerMenu")) FoldersInTimerMenu = atoi(Value);
else if (!strcasecmp(Name, "NumberKeysForChars")) NumberKeysForChars = atoi(Value);
else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value); else if (!strcasecmp(Name, "VideoDisplayFormat")) VideoDisplayFormat = atoi(Value);
else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value); else if (!strcasecmp(Name, "VideoFormat")) VideoFormat = atoi(Value);
else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value); else if (!strcasecmp(Name, "UpdateChannels")) UpdateChannels = atoi(Value);
@ -640,6 +642,7 @@ bool cSetup::Save(void)
Store("VpsMargin", VpsMargin); Store("VpsMargin", VpsMargin);
Store("RecordingDirs", RecordingDirs); Store("RecordingDirs", RecordingDirs);
Store("FoldersInTimerMenu", FoldersInTimerMenu); Store("FoldersInTimerMenu", FoldersInTimerMenu);
Store("NumberKeysForChars", NumberKeysForChars);
Store("VideoDisplayFormat", VideoDisplayFormat); Store("VideoDisplayFormat", VideoDisplayFormat);
Store("VideoFormat", VideoFormat); Store("VideoFormat", VideoFormat);
Store("UpdateChannels", UpdateChannels); Store("UpdateChannels", UpdateChannels);

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: config.h 2.25 2010/03/12 16:02:53 kls Exp $ * $Id: config.h 2.27 2010/06/06 09:53:02 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -22,13 +22,13 @@
// VDR's own version number: // VDR's own version number:
#define VDRVERSION "1.7.14" #define VDRVERSION "1.7.15"
#define VDRVERSNUM 10714 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 10715 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number: // The plugin API's version number:
#define APIVERSION "1.7.14" #define APIVERSION "1.7.15"
#define APIVERSNUM 10714 // Version * 10000 + Major * 100 + Minor #define APIVERSNUM 10715 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which // When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to // may be smaller than VDRVERSION in case there have been no changes to
@ -254,6 +254,7 @@ public:
int VpsMargin; int VpsMargin;
int RecordingDirs; int RecordingDirs;
int FoldersInTimerMenu; int FoldersInTimerMenu;
int NumberKeysForChars;
int VideoDisplayFormat; int VideoDisplayFormat;
int VideoFormat; int VideoFormat;
int UpdateChannels; int UpdateChannels;

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: device.c 2.35 2010/02/07 11:54:42 kls Exp $ * $Id: device.c 2.37 2010/06/03 13:35:02 kls Exp $
*/ */
#include "device.h" #include "device.h"
@ -152,7 +152,7 @@ int cDevice::NextCardIndex(int n)
esyslog("ERROR: nextCardIndex too big (%d)", nextCardIndex); esyslog("ERROR: nextCardIndex too big (%d)", nextCardIndex);
} }
else if (n < 0) else if (n < 0)
esyslog("ERROR: invalid value in IncCardIndex(%d)", n); esyslog("ERROR: invalid value in nextCardIndex(%d)", n);
return nextCardIndex; return nextCardIndex;
} }
@ -215,7 +215,7 @@ cDevice *cDevice::GetDevice(int Index)
static int GetClippedNumProvidedSystems(int AvailableBits, cDevice *Device) static int GetClippedNumProvidedSystems(int AvailableBits, cDevice *Device)
{ {
int MaxNumProvidedSystems = 1 << AvailableBits; int MaxNumProvidedSystems = (1 << AvailableBits) - 1;
int NumProvidedSystems = Device->NumProvidedSystems(); int NumProvidedSystems = Device->NumProvidedSystems();
if (NumProvidedSystems > MaxNumProvidedSystems) { if (NumProvidedSystems > MaxNumProvidedSystems) {
esyslog("ERROR: device %d supports %d modulation systems but cDevice::GetDevice() currently only supports %d delivery systems which should be fixed", Device->CardIndex() + 1, NumProvidedSystems, MaxNumProvidedSystems); esyslog("ERROR: device %d supports %d modulation systems but cDevice::GetDevice() currently only supports %d delivery systems which should be fixed", Device->CardIndex() + 1, NumProvidedSystems, MaxNumProvidedSystems);
@ -281,7 +281,7 @@ cDevice *cDevice::GetDevice(const cChannel *Channel, int Priority, bool LiveView
imp <<= 1; imp |= LiveView ? !device[i]->IsPrimaryDevice() || ndr : 0; // prefer the primary device for live viewing if we don't need to detach existing receivers imp <<= 1; imp |= LiveView ? !device[i]->IsPrimaryDevice() || ndr : 0; // prefer the primary device for live viewing if we don't need to detach existing receivers
imp <<= 1; imp |= !device[i]->Receiving() && (device[i] != cTransferControl::ReceiverDevice() || device[i]->IsPrimaryDevice()) || ndr; // use receiving devices if we don't need to detach existing receivers, but avoid primary device in local transfer mode imp <<= 1; imp |= !device[i]->Receiving() && (device[i] != cTransferControl::ReceiverDevice() || device[i]->IsPrimaryDevice()) || ndr; // use receiving devices if we don't need to detach existing receivers, but avoid primary device in local transfer mode
imp <<= 1; imp |= device[i]->Receiving(); // avoid devices that are receiving imp <<= 1; imp |= device[i]->Receiving(); // avoid devices that are receiving
imp <<= 2; imp |= GetClippedNumProvidedSystems(2, device[i]) - 1; // avoid cards which support multiple delivery systems imp <<= 4; imp |= GetClippedNumProvidedSystems(4, device[i]) - 1; // avoid cards which support multiple delivery systems
imp <<= 1; imp |= device[i] == cTransferControl::ReceiverDevice(); // avoid the Transfer Mode receiver device imp <<= 1; imp |= device[i] == cTransferControl::ReceiverDevice(); // avoid the Transfer Mode receiver device
imp <<= 8; imp |= min(max(device[i]->Priority() + MAXPRIORITY, 0), 0xFF); // use the device with the lowest priority (+MAXPRIORITY to assure that values -99..99 can be used) imp <<= 8; imp |= min(max(device[i]->Priority() + MAXPRIORITY, 0), 0xFF); // use the device with the lowest priority (+MAXPRIORITY to assure that values -99..99 can be used)
imp <<= 8; imp |= min(max((NumUsableSlots ? SlotPriority[j] : 0) + MAXPRIORITY, 0), 0xFF); // use the CAM slot with the lowest priority (+MAXPRIORITY to assure that values -99..99 can be used) imp <<= 8; imp |= min(max((NumUsableSlots ? SlotPriority[j] : 0) + MAXPRIORITY, 0), 0xFF); // use the CAM slot with the lowest priority (+MAXPRIORITY to assure that values -99..99 can be used)

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: device.h 2.21 2010/02/06 14:34:41 kls Exp $ * $Id: device.h 2.22 2010/04/05 09:51:29 kls Exp $
*/ */
#ifndef __DEVICE_H #ifndef __DEVICE_H
@ -91,6 +91,9 @@ class cLiveSubtitle;
class cDeviceHook : public cListObject { class cDeviceHook : public cListObject {
public: public:
cDeviceHook(void); cDeviceHook(void);
///< Creates a new device hook object.
///< Do not delete this object - it will be automatically deleted when the
///< program ends.
virtual bool DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const; virtual bool DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const;
///< Returns true if the given Device can provide the given Channel's transponder. ///< Returns true if the given Device can provide the given Channel's transponder.
}; };

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: dvbdevice.c 2.32 2010/03/07 13:58:24 kls Exp $ * $Id: dvbdevice.c 2.38 2010/05/01 09:47:13 kls Exp $
*/ */
#include "dvbdevice.h" #include "dvbdevice.h"
@ -21,6 +21,8 @@
#include "menuitems.h" #include "menuitems.h"
#include "sourceparams.h" #include "sourceparams.h"
#define FE_CAN_TURBO_FEC 0x8000000 // TODO: remove this once it is defined in the driver
#define DVBS_TUNE_TIMEOUT 9000 //ms #define DVBS_TUNE_TIMEOUT 9000 //ms
#define DVBS_LOCK_TIMEOUT 2000 //ms #define DVBS_LOCK_TIMEOUT 2000 //ms
#define DVBC_TUNE_TIMEOUT 9000 //ms #define DVBC_TUNE_TIMEOUT 9000 //ms
@ -149,6 +151,14 @@ int MapToUser(int Value, const tDvbParameterMap *Map, const char **String)
return -1; return -1;
} }
const char *MapToUserString(int Value, const tDvbParameterMap *Map)
{
int n = DriverIndex(Value, Map);
if (n >= 0)
return Map[n].userString;
return "???";
}
int MapToDriver(int Value, const tDvbParameterMap *Map) int MapToDriver(int Value, const tDvbParameterMap *Map)
{ {
int n = UserIndex(Value, Map); int n = UserIndex(Value, Map);
@ -692,7 +702,22 @@ cDvbDevice::cDvbDevice(int Adapter, int Frontend)
numProvidedSystems++; numProvidedSystems++;
if (frontendType == SYS_DVBS2) if (frontendType == SYS_DVBS2)
numProvidedSystems++; numProvidedSystems++;
isyslog("frontend %d/%d provides %s (\"%s\")", adapter, frontend, DeliverySystems[frontendType], frontendInfo.name); char Modulations[64];
char *p = Modulations;
if (frontendInfo.caps & FE_CAN_QPSK) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QPSK, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_QAM_16) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QAM_16, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_QAM_32) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QAM_32, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_QAM_64) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QAM_64, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_QAM_128) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QAM_128, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_QAM_256) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(QAM_256, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_8VSB) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(VSB_8, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_16VSB) { numProvidedSystems++; p += sprintf(p, ",%s", MapToUserString(VSB_16, ModulationValues)); }
if (frontendInfo.caps & FE_CAN_TURBO_FEC){numProvidedSystems++; p += sprintf(p, ",%s", "TURBO_FEC"); }
if (p != Modulations)
p = Modulations + 1; // skips first ','
else
p = (char *)"unknown modulations";
isyslog("frontend %d/%d provides %s with %s (\"%s\")", adapter, frontend, DeliverySystems[frontendType], p, frontendInfo.name);
dvbTuner = new cDvbTuner(CardIndex() + 1, fd_frontend, adapter, frontend, frontendType); dvbTuner = new cDvbTuner(CardIndex() + 1, fd_frontend, adapter, frontend, frontendType);
} }
} }
@ -886,12 +911,21 @@ bool cDvbDevice::ProvidesTransponder(const cChannel *Channel) const
{ {
if (!ProvidesSource(Channel->Source())) if (!ProvidesSource(Channel->Source()))
return false; // doesn't provide source return false; // doesn't provide source
if (!cSource::IsSat(Channel->Source()))
return DeviceHooksProvidesTransponder(Channel); // source is sufficient for non sat
cDvbTransponderParameters dtp(Channel->Parameters()); cDvbTransponderParameters dtp(Channel->Parameters());
if (frontendType == SYS_DVBS && dtp.System() == SYS_DVBS2) if (dtp.System() == SYS_DVBS2 && frontendType == SYS_DVBS ||
dtp.Modulation() == QPSK && !(frontendInfo.caps & FE_CAN_QPSK) ||
dtp.Modulation() == QAM_16 && !(frontendInfo.caps & FE_CAN_QAM_16) ||
dtp.Modulation() == QAM_32 && !(frontendInfo.caps & FE_CAN_QAM_32) ||
dtp.Modulation() == QAM_64 && !(frontendInfo.caps & FE_CAN_QAM_64) ||
dtp.Modulation() == QAM_128 && !(frontendInfo.caps & FE_CAN_QAM_128) ||
dtp.Modulation() == QAM_256 && !(frontendInfo.caps & FE_CAN_QAM_256) ||
dtp.Modulation() == QAM_AUTO && !(frontendInfo.caps & FE_CAN_QAM_AUTO) ||
dtp.Modulation() == VSB_8 && !(frontendInfo.caps & FE_CAN_8VSB) ||
dtp.Modulation() == VSB_16 && !(frontendInfo.caps & FE_CAN_16VSB) ||
dtp.Modulation() == PSK_8 && !(frontendInfo.caps & FE_CAN_TURBO_FEC) && dtp.System() == SYS_DVBS) // "turbo fec" is a non standard FEC used by North American broadcasters - this is a best guess to determine this condition
return false; // requires modulation system which frontend doesn't provide return false; // requires modulation system which frontend doesn't provide
if (!Setup.DiSEqC || Diseqcs.Get(CardIndex() + 1, Channel->Source(), Channel->Frequency(), dtp.Polarization())) if (!cSource::IsSat(Channel->Source()) ||
!Setup.DiSEqC || Diseqcs.Get(CardIndex() + 1, Channel->Source(), Channel->Frequency(), dtp.Polarization()))
return DeviceHooksProvidesTransponder(Channel); return DeviceHooksProvidesTransponder(Channel);
return false; return false;
} }

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: dvbdevice.h 2.13 2010/02/21 14:06:08 kls Exp $ * $Id: dvbdevice.h 2.14 2010/04/11 10:29:37 kls Exp $
*/ */
#ifndef __DVBDEVICE_H #ifndef __DVBDEVICE_H
@ -37,6 +37,7 @@ struct tDvbParameterMap {
const char *userString; const char *userString;
}; };
const char *MapToUserString(int Value, const tDvbParameterMap *Map);
int MapToUser(int Value, const tDvbParameterMap *Map, const char **String = NULL); int MapToUser(int Value, const tDvbParameterMap *Map, const char **String = NULL);
int MapToDriver(int Value, const tDvbParameterMap *Map); int MapToDriver(int Value, const tDvbParameterMap *Map);
int UserIndex(int Value, const tDvbParameterMap *Map); int UserIndex(int Value, const tDvbParameterMap *Map);

View File

@ -7,7 +7,7 @@
* Original author: Marco Schlüßler <marco@lordzodiac.de> * Original author: Marco Schlüßler <marco@lordzodiac.de>
* With some input from the "subtitle plugin" by Pekka Virtanen <pekka.virtanen@sci.fi> * With some input from the "subtitle plugin" by Pekka Virtanen <pekka.virtanen@sci.fi>
* *
* $Id: dvbsubtitle.c 2.4 2010/02/07 12:08:13 kls Exp $ * $Id: dvbsubtitle.c 2.6 2010/06/05 14:03:55 kls Exp $
*/ */
#include "dvbsubtitle.h" #include "dvbsubtitle.h"
@ -17,6 +17,7 @@
#define REGION_COMPOSITION_SEGMENT 0x11 #define REGION_COMPOSITION_SEGMENT 0x11
#define CLUT_DEFINITION_SEGMENT 0x12 #define CLUT_DEFINITION_SEGMENT 0x12
#define OBJECT_DATA_SEGMENT 0x13 #define OBJECT_DATA_SEGMENT 0x13
#define DISPLAY_DEFINITION_SEGMENT 0x14
#define END_OF_DISPLAY_SET_SEGMENT 0x80 #define END_OF_DISPLAY_SET_SEGMENT 0x80
// Set these to 'true' for debug output: // Set these to 'true' for debug output:
@ -659,6 +660,11 @@ cDvbSubtitleConverter::cDvbSubtitleConverter(void)
dvbSubtitleAssembler = new cDvbSubtitleAssembler; dvbSubtitleAssembler = new cDvbSubtitleAssembler;
osd = NULL; osd = NULL;
frozen = false; frozen = false;
ddsVersionNumber = 0;
displayWidth = 720;
displayHeight = 576;
displayHorizontalOffset = 0;
displayVerticalOffset = 0;
pages = new cList<cDvbSubtitlePage>; pages = new cList<cDvbSubtitlePage>;
bitmaps = new cList<cDvbSubtitleBitmaps>; bitmaps = new cList<cDvbSubtitleBitmaps>;
Start(); Start();
@ -687,6 +693,11 @@ void cDvbSubtitleConverter::Reset(void)
bitmaps->Clear(); bitmaps->Clear();
DELETENULL(osd); DELETENULL(osd);
frozen = false; frozen = false;
ddsVersionNumber = 0;
displayWidth = 720;
displayHeight = 576;
displayHorizontalOffset = 0;
displayVerticalOffset = 0;
Unlock(); Unlock();
} }
@ -842,7 +853,7 @@ tColor cDvbSubtitleConverter::yuv2rgb(int Y, int Cb, int Cr)
bool cDvbSubtitleConverter::AssertOsd(void) bool cDvbSubtitleConverter::AssertOsd(void)
{ {
return osd || (osd = cOsdProvider::NewOsd(0, Setup.SubtitleOffset, OSD_LEVEL_SUBTITLES)); return osd || (osd = cOsdProvider::NewOsd(displayHorizontalOffset, displayVerticalOffset + Setup.SubtitleOffset, OSD_LEVEL_SUBTITLES));
} }
int cDvbSubtitleConverter::ExtractSegment(const uchar *Data, int Length, int64_t Pts) int cDvbSubtitleConverter::ExtractSegment(const uchar *Data, int Length, int64_t Pts)
@ -1001,6 +1012,26 @@ int cDvbSubtitleConverter::ExtractSegment(const uchar *Data, int Length, int64_t
} }
break; break;
} }
case DISPLAY_DEFINITION_SEGMENT: {
dbgsegments("DISPLAY_DEFINITION_SEGMENT\n");
int version = (Data[6] & 0xF0) >> 4;
if (version != ddsVersionNumber) {
int displayWindowFlag = (Data[6] & 0x08) >> 3;
displayHorizontalOffset = 0;
displayVerticalOffset = 0;
displayWidth = ((Data[7] << 8) | Data[8]) + 1;
displayHeight = ((Data[9] << 8) | Data[10]) + 1;
if (displayWindowFlag) {
displayHorizontalOffset = (Data[11] << 8) | Data[12]; // displayWindowHorizontalPositionMinimum
displayWidth = ((Data[13] << 8) | Data[14]) - displayHorizontalOffset + 1; // displayWindowHorizontalPositionMaximum
displayVerticalOffset = (Data[15] << 8) | Data[16]; // displayWindowVerticalPositionMinimum
displayHeight = ((Data[17] << 8) | Data[18]) - displayVerticalOffset + 1; // displayWindowVerticalPositionMaximum
}
SetupChanged();
ddsVersionNumber = version;
}
break;
}
case END_OF_DISPLAY_SET_SEGMENT: { case END_OF_DISPLAY_SET_SEGMENT: {
dbgsegments("END_OF_DISPLAY_SET_SEGMENT\n"); dbgsegments("END_OF_DISPLAY_SET_SEGMENT\n");
FinishPage(page); FinishPage(page);

View File

@ -6,7 +6,7 @@
* *
* Original author: Marco Schlüßler <marco@lordzodiac.de> * Original author: Marco Schlüßler <marco@lordzodiac.de>
* *
* $Id: dvbsubtitle.h 2.2 2010/02/07 11:55:14 kls Exp $ * $Id: dvbsubtitle.h 2.3 2010/05/13 14:43:44 kls Exp $
*/ */
#ifndef __DVBSUBTITLE_H #ifndef __DVBSUBTITLE_H
@ -26,6 +26,11 @@ private:
cDvbSubtitleAssembler *dvbSubtitleAssembler; cDvbSubtitleAssembler *dvbSubtitleAssembler;
cOsd *osd; cOsd *osd;
bool frozen; bool frozen;
int ddsVersionNumber;
int displayWidth;
int displayHeight;
int displayHorizontalOffset;
int displayVerticalOffset;
cList<cDvbSubtitlePage> *pages; cList<cDvbSubtitlePage> *pages;
cList<cDvbSubtitleBitmaps> *bitmaps; cList<cDvbSubtitleBitmaps> *bitmaps;
tColor yuv2rgb(int Y, int Cb, int Cr); tColor yuv2rgb(int Y, int Cb, int Cr);

4
eit.c
View File

@ -8,7 +8,7 @@
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>. * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
* *
* $Id: eit.c 2.11 2010/01/08 15:17:09 kls Exp $ * $Id: eit.c 2.12 2010/05/14 14:08:35 kls Exp $
*/ */
#include "eit.h" #include "eit.h"
@ -257,7 +257,7 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
SI::ComponentDescriptor *cd = (SI::ComponentDescriptor *)d; SI::ComponentDescriptor *cd = (SI::ComponentDescriptor *)d;
uchar Stream = cd->getStreamContent(); uchar Stream = cd->getStreamContent();
uchar Type = cd->getComponentType(); uchar Type = cd->getComponentType();
if (1 <= Stream && Stream <= 4 && Type != 0) { // 1=video, 2=audio, 3=subtitles, 4=AC3 if (1 <= Stream && Stream <= 6 && Type != 0) { // 1=MPEG2-video, 2=MPEG1-audio, 3=subtitles, 4=AC3-audio, 5=H.264-video, 6=HEAAC-audio
if (!Components) if (!Components)
Components = new cComponents; Components = new cComponents;
char buffer[Utf8BufSize(256)]; char buffer[Utf8BufSize(256)];

3
keys.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: keys.c 2.0 2008/02/10 14:08:48 kls Exp $ * $Id: keys.c 2.1 2010/04/05 10:05:58 kls Exp $
*/ */
#include "keys.h" #include "keys.h"
@ -56,6 +56,7 @@ static tKey keyTable[] = { // "Up" and "Down" must be the first two keys!
{ kRecordings, trNOOP("Key$Recordings") }, { kRecordings, trNOOP("Key$Recordings") },
{ kSetup, trNOOP("Key$Setup") }, { kSetup, trNOOP("Key$Setup") },
{ kCommands, trNOOP("Key$Commands") }, { kCommands, trNOOP("Key$Commands") },
{ kUser0, trNOOP("Key$User0") },
{ kUser1, trNOOP("Key$User1") }, { kUser1, trNOOP("Key$User1") },
{ kUser2, trNOOP("Key$User2") }, { kUser2, trNOOP("Key$User2") },
{ kUser3, trNOOP("Key$User3") }, { kUser3, trNOOP("Key$User3") },

4
keys.h
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: keys.h 2.0 2007/08/26 12:34:50 kls Exp $ * $Id: keys.h 2.1 2010/04/05 10:06:04 kls Exp $
*/ */
#ifndef __KEYS_H #ifndef __KEYS_H
@ -50,7 +50,7 @@ enum eKeys { // "Up" and "Down" must be the first two keys!
kRecordings, kRecordings,
kSetup, kSetup,
kCommands, kCommands,
kUser1, kUser2, kUser3, kUser4, kUser5, kUser6, kUser7, kUser8, kUser9, kUser0, kUser1, kUser2, kUser3, kUser4, kUser5, kUser6, kUser7, kUser8, kUser9,
kNone, kNone,
kKbd, kKbd,
// The following codes are used internally: // The following codes are used internally:

8
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: menu.c 2.21 2010/03/12 16:03:07 kls Exp $ * $Id: menu.c 2.24 2010/06/06 09:56:16 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -210,16 +210,18 @@ cMenuEditChannel::cMenuEditChannel(cChannel *Channel, bool New)
{ {
channel = Channel; channel = Channel;
sourceParam = NULL; sourceParam = NULL;
*name = 0;
if (channel) { if (channel) {
data = *channel; data = *channel;
strn0cpy(name, data.name, sizeof(name));
if (New) { if (New) {
channel = NULL; channel = NULL;
data.nid = 0; data.nid = 0;
data.tid = 0; data.tid = 0;
data.rid = 0; data.rid = 0;
} }
Setup();
} }
Setup();
} }
void cMenuEditChannel::Setup(void) void cMenuEditChannel::Setup(void)
@ -229,7 +231,6 @@ void cMenuEditChannel::Setup(void)
Clear(); Clear();
// Parameters for all types of sources: // Parameters for all types of sources:
strn0cpy(name, data.name, sizeof(name));
Add(new cMenuEditStrItem( tr("Name"), name, sizeof(name))); Add(new cMenuEditStrItem( tr("Name"), name, sizeof(name)));
Add(new cMenuEditSrcItem( tr("Source"), &data.source)); Add(new cMenuEditSrcItem( tr("Source"), &data.source));
Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency)); Add(new cMenuEditIntItem( tr("Frequency"), &data.frequency));
@ -2568,6 +2569,7 @@ void cMenuSetupOSD::Set(void)
Add(new cMenuEditBoolItem(tr("Setup.OSD$Menu key closes"), &data.MenuKeyCloses)); Add(new cMenuEditBoolItem(tr("Setup.OSD$Menu key closes"), &data.MenuKeyCloses));
Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs)); Add(new cMenuEditBoolItem(tr("Setup.OSD$Recording directories"), &data.RecordingDirs));
Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu)); Add(new cMenuEditBoolItem(tr("Setup.OSD$Folders in timer menu"), &data.FoldersInTimerMenu));
Add(new cMenuEditBoolItem(tr("Setup.OSD$Number keys for characters"), &data.NumberKeysForChars));
SetCurrent(Get(current)); SetCurrent(Get(current));
Display(); Display();
} }

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: menuitems.c 2.6 2010/02/16 14:44:35 kls Exp $ * $Id: menuitems.c 2.7 2010/06/06 10:37:08 kls Exp $
*/ */
#include "menuitems.h" #include "menuitems.h"
@ -488,6 +488,20 @@ uint cMenuEditStrItem::Inc(uint c, bool Up)
return *p; return *p;
} }
void cMenuEditStrItem::Type(uint c)
{
if (insert && lengthUtf8 < length - 1)
Insert();
valueUtf8[pos] = c;
if (pos < length - 2)
pos++;
if (pos >= lengthUtf8) {
valueUtf8[pos] = ' ';
valueUtf8[pos + 1] = 0;
lengthUtf8 = pos + 1;
}
}
void cMenuEditStrItem::Insert(void) void cMenuEditStrItem::Insert(void)
{ {
memmove(valueUtf8 + pos + 1, valueUtf8 + pos, (lengthUtf8 - pos + 1) * sizeof(*valueUtf8)); memmove(valueUtf8 + pos + 1, valueUtf8 + pos, (lengthUtf8 - pos + 1) * sizeof(*valueUtf8));
@ -597,39 +611,43 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
case k0|k_Repeat ... k9|k_Repeat: case k0|k_Repeat ... k9|k_Repeat:
case k0 ... k9: { case k0 ... k9: {
if (InEditMode()) { if (InEditMode()) {
if (!SameKey) { if (Setup.NumberKeysForChars) {
if (!newchar) if (!SameKey) {
AdvancePos(); if (!newchar)
currentCharUtf8 = NULL; AdvancePos();
} currentCharUtf8 = NULL;
if (!currentCharUtf8 || !*currentCharUtf8 || *currentCharUtf8 == '\t') { }
// find the beginning of the character map entry for Key if (!currentCharUtf8 || !*currentCharUtf8 || *currentCharUtf8 == '\t') {
int n = NORMALKEY(Key) - k0; // find the beginning of the character map entry for Key
currentCharUtf8 = charMapUtf8; int n = NORMALKEY(Key) - k0;
while (n > 0 && *currentCharUtf8) { currentCharUtf8 = charMapUtf8;
if (*currentCharUtf8++ == '\t') while (n > 0 && *currentCharUtf8) {
n--; if (*currentCharUtf8++ == '\t')
} n--;
// find first allowed character }
while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8)) // find first allowed character
currentCharUtf8++; while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8))
} currentCharUtf8++;
if (*currentCharUtf8 && *currentCharUtf8 != '\t') { }
if (insert && newchar) { if (*currentCharUtf8 && *currentCharUtf8 != '\t') {
// create a new character in insert mode if (insert && newchar) {
if (lengthUtf8 < length - 1) // create a new character in insert mode
Insert(); if (lengthUtf8 < length - 1)
Insert();
}
valueUtf8[pos] = *currentCharUtf8;
if (uppercase)
valueUtf8[pos] = Utf8to(upper, valueUtf8[pos]);
// find next allowed character
do {
currentCharUtf8++;
} while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8));
newchar = false;
autoAdvanceTimeout.Set(AUTO_ADVANCE_TIMEOUT);
} }
valueUtf8[pos] = *currentCharUtf8;
if (uppercase)
valueUtf8[pos] = Utf8to(upper, valueUtf8[pos]);
// find next allowed character
do {
currentCharUtf8++;
} while (*currentCharUtf8 && *currentCharUtf8 != '\t' && !IsAllowed(*currentCharUtf8));
newchar = false;
autoAdvanceTimeout.Set(AUTO_ADVANCE_TIMEOUT);
} }
else
Type('0' + NORMALKEY(Key) - k0);
} }
else else
return cMenuEditItem::ProcessKey(Key); return cMenuEditItem::ProcessKey(Key);
@ -645,19 +663,8 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
default: if (InEditMode() && BASICKEY(Key) == kKbd) { default: if (InEditMode() && BASICKEY(Key) == kKbd) {
int c = KEYKBD(Key); int c = KEYKBD(Key);
if (c <= 0xFF) { // FIXME what about other UTF-8 characters? if (c <= 0xFF) { // FIXME what about other UTF-8 characters?
uint *p = IsAllowed(Utf8to(lower, c)); if (IsAllowed(Utf8to(lower, c)))
if (p) { Type(c);
if (insert && lengthUtf8 < length - 1)
Insert();
valueUtf8[pos] = c;
if (pos < length - 2)
pos++;
if (pos >= lengthUtf8) {
valueUtf8[pos] = ' ';
valueUtf8[pos + 1] = 0;
lengthUtf8 = pos + 1;
}
}
else { else {
switch (c) { switch (c) {
case 0x7F: // backspace case 0x7F: // backspace

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: menuitems.h 2.3 2010/02/21 13:58:21 kls Exp $ * $Id: menuitems.h 2.4 2010/06/06 10:32:38 kls Exp $
*/ */
#ifndef __MENUITEMS_H #ifndef __MENUITEMS_H
@ -108,6 +108,7 @@ private:
void AdvancePos(void); void AdvancePos(void);
virtual void Set(void); virtual void Set(void);
uint Inc(uint c, bool Up); uint Inc(uint c, bool Up);
void Type(uint c);
void Insert(void); void Insert(void);
void Delete(void); void Delete(void);
protected: protected:

8
osd.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: osd.c 2.9 2010/01/22 15:58:39 kls Exp $ * $Id: osd.c 2.10 2010/05/02 13:56:53 kls Exp $
*/ */
#include "osd.h" #include "osd.h"
@ -360,10 +360,10 @@ bool cBitmap::SetXpm(const char *const Xpm[], bool IgnoreNone)
} }
s = skipspace(s + 1); s = skipspace(s + 1);
if (strcasecmp(s, "none") == 0) { if (strcasecmp(s, "none") == 0) {
s = "#00000000";
NoneColorIndex = i; NoneColorIndex = i;
if (IgnoreNone) if (!IgnoreNone)
continue; SetColor(i, clrTransparent);
continue;
} }
if (*s != '#') { if (*s != '#') {
esyslog("ERROR: unknown color code in XPM: '%c'", *s); esyslog("ERROR: unknown color code in XPM: '%c'", *s);

13
pat.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: pat.c 2.8 2010/03/06 12:00:30 kls Exp $ * $Id: pat.c 2.11 2010/06/05 13:26:47 kls Exp $
*/ */
#include "pat.h" #include "pat.h"
@ -332,7 +332,9 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
int Ppid = 0; int Ppid = 0;
int Vtype = 0; int Vtype = 0;
int Apids[MAXAPIDS + 1] = { 0 }; // these lists are zero-terminated int Apids[MAXAPIDS + 1] = { 0 }; // these lists are zero-terminated
int Atypes[MAXDPIDS + 1] = { 0 };
int Dpids[MAXDPIDS + 1] = { 0 }; int Dpids[MAXDPIDS + 1] = { 0 };
int Dtypes[MAXDPIDS + 1] = { 0 };
int Spids[MAXSPIDS + 1] = { 0 }; int Spids[MAXSPIDS + 1] = { 0 };
uchar SubtitlingTypes[MAXSPIDS + 1] = { 0 }; uchar SubtitlingTypes[MAXSPIDS + 1] = { 0 };
uint16_t CompositionPageIds[MAXSPIDS + 1] = { 0 }; uint16_t CompositionPageIds[MAXSPIDS + 1] = { 0 };
@ -358,9 +360,12 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
break; break;
case 3: // STREAMTYPE_11172_AUDIO case 3: // STREAMTYPE_11172_AUDIO
case 4: // STREAMTYPE_13818_AUDIO case 4: // STREAMTYPE_13818_AUDIO
case 0x0F: // ISO/IEC 13818-7 Audio with ADTS transport sytax
case 0x11: // ISO/IEC 14496-3 Audio with LATM transport syntax
{ {
if (NumApids < MAXAPIDS) { if (NumApids < MAXAPIDS) {
Apids[NumApids] = esPid; Apids[NumApids] = esPid;
Atypes[NumApids] = stream.getStreamType();
SI::Descriptor *d; SI::Descriptor *d;
for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) { for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) {
switch (d->getDescriptorTag()) { switch (d->getDescriptorTag()) {
@ -395,12 +400,15 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
//XXX case 8: // STREAMTYPE_13818_DSMCC //XXX case 8: // STREAMTYPE_13818_DSMCC
{ {
int dpid = 0; int dpid = 0;
int dtype = 0;
char lang[MAXLANGCODE1] = { 0 }; char lang[MAXLANGCODE1] = { 0 };
SI::Descriptor *d; SI::Descriptor *d;
for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) { for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) {
switch (d->getDescriptorTag()) { switch (d->getDescriptorTag()) {
case SI::AC3DescriptorTag: case SI::AC3DescriptorTag:
case SI::EnhancedAC3DescriptorTag:
dpid = esPid; dpid = esPid;
dtype = d->getDescriptorTag();
ProcessCaDescriptors = true; ProcessCaDescriptors = true;
break; break;
case SI::SubtitlingDescriptorTag: case SI::SubtitlingDescriptorTag:
@ -441,6 +449,7 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
if (dpid) { if (dpid) {
if (NumDpids < MAXDPIDS) { if (NumDpids < MAXDPIDS) {
Dpids[NumDpids] = dpid; Dpids[NumDpids] = dpid;
Dtypes[NumDpids] = dtype;
strn0cpy(DLangs[NumDpids], lang, MAXLANGCODE1); strn0cpy(DLangs[NumDpids], lang, MAXLANGCODE1);
NumDpids++; NumDpids++;
} }
@ -480,7 +489,7 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
} }
} }
if (Setup.UpdateChannels >= 2) { if (Setup.UpdateChannels >= 2) {
Channel->SetPids(Vpid, Ppid, Vtype, Apids, ALangs, Dpids, DLangs, Spids, SLangs, Tpid); Channel->SetPids(Vpid, Ppid, Vtype, Apids, Atypes, ALangs, Dpids, Dtypes, DLangs, Spids, SLangs, Tpid);
Channel->SetCaIds(CaDescriptors->CaIds()); Channel->SetCaIds(CaDescriptors->CaIds());
Channel->SetSubtitlingDescriptors(SubtitlingTypes, CompositionPageIds, AncillaryPageIds); Channel->SetSubtitlingDescriptors(SubtitlingTypes, CompositionPageIds, AncillaryPageIds);
} }

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n" "Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Catalanian\n" "Language-Team: Catalanian\n"
@ -478,6 +478,9 @@ msgstr "Configuraci
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Ordres" msgstr "Ordres"
msgid "Key$User0"
msgstr "Usuari 0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Usuari 1" msgstr "Usuari 1"
@ -839,6 +842,9 @@ msgstr "Gravacions en subcarpetes"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Guia de Programes" msgstr "Guia de Programes"

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n" "Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
@ -475,6 +475,9 @@ msgstr "Indstillinger"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Kommandoer" msgstr "Kommandoer"
msgid "Key$User0"
msgstr "Bruger0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Bruger1" msgstr "Bruger1"
@ -836,6 +839,9 @@ msgstr "Optagelser i foldere"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2010-01-16 16:46+0100\n" "PO-Revision-Date: 2010-01-16 16:46+0100\n"
"Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n" "Last-Translator: Klaus Schmidinger <kls@tvdr.de>\n"
"Language-Team: German\n" "Language-Team: German\n"
@ -475,6 +475,9 @@ msgstr "Einstellungen"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Befehle" msgstr "Befehle"
msgid "Key$User0"
msgstr "Benutzer0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Benutzer1" msgstr "Benutzer1"
@ -836,6 +839,9 @@ msgstr "Aufnahmeverzeichnisse"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "Verzeichnisse im Timer-Menü" msgstr "Verzeichnisse im Timer-Menü"
msgid "Setup.OSD$Number keys for characters"
msgstr "Nummerntasten für Zeichen"
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n" "Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
@ -475,6 +475,9 @@ msgstr "
msgid "Key$Commands" msgid "Key$Commands"
msgstr "ÅíôïëÝò" msgstr "ÅíôïëÝò"
msgid "Key$User0"
msgstr ""
msgid "Key$User1" msgid "Key$User1"
msgstr "" msgstr ""
@ -836,6 +839,9 @@ msgstr "
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Çëåêôñïíéêüò ïäçãüò ðñïãñÜììáôïò" msgstr "Çëåêôñïíéêüò ïäçãüò ðñïãñÜììáôïò"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-02 19:02+0100\n" "PO-Revision-Date: 2008-03-02 19:02+0100\n"
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n" "Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
@ -476,6 +476,9 @@ msgstr "Configuraci
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Órdenes" msgstr "Órdenes"
msgid "Key$User0"
msgstr "Usuario 0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Usuario 1" msgstr "Usuario 1"
@ -837,6 +840,9 @@ msgstr "Mostrar directorios de grabaciones"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Guía de Programación" msgstr "Guía de Programación"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n" "Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
"Language-Team: Estonian\n" "Language-Team: Estonian\n"
@ -475,6 +475,9 @@ msgstr "S
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Käsud" msgstr "Käsud"
msgid "Key$User0"
msgstr "Lisaklahv0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Lisaklahv1" msgstr "Lisaklahv1"
@ -834,6 +837,9 @@ msgid "Setup.OSD$Recording directories"
msgstr "Kausta nime salvestamine" msgstr "Kausta nime salvestamine"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "Kaustad taimeri menüüs"
msgid "Setup.OSD$Number keys for characters"
msgstr "" msgstr ""
msgid "EPG" msgid "EPG"
@ -911,7 +917,7 @@ msgid "Setup.DVB$Update channels"
msgstr "Kanalite uuendamine" msgstr "Kanalite uuendamine"
msgid "Setup.DVB$Audio languages" msgid "Setup.DVB$Audio languages"
msgstr "Audio keeli" msgstr "Audio keeled"
msgid "Setup.DVB$Audio language" msgid "Setup.DVB$Audio language"
msgstr "Audio keel" msgstr "Audio keel"
@ -920,7 +926,7 @@ msgid "Setup.DVB$Display subtitles"
msgstr "Subtiitrite kuvamine" msgstr "Subtiitrite kuvamine"
msgid "Setup.DVB$Subtitle languages" msgid "Setup.DVB$Subtitle languages"
msgstr "Subtiitrite keeli" msgstr "Subtiitrite keeled"
msgid "Setup.DVB$Subtitle language" msgid "Setup.DVB$Subtitle language"
msgstr "Subtiitri keel" msgstr "Subtiitri keel"
@ -989,7 +995,7 @@ msgid "pause live video"
msgstr "peatada" msgstr "peatada"
msgid "confirm" msgid "confirm"
msgstr "" msgstr "kinnitada"
msgid "yes" msgid "yes"
msgstr "jah" msgstr "jah"
@ -1046,13 +1052,13 @@ msgid "Setup.Recording$Split edited files"
msgstr "Failide jupitamine" msgstr "Failide jupitamine"
msgid "Setup.Recording$Delete timeshift recording" msgid "Setup.Recording$Delete timeshift recording"
msgstr "" msgstr "Kustutada ajanihke salvestus"
msgid "Replay" msgid "Replay"
msgstr "Taasesitus" msgstr "Taasesitus"
msgid "Setup.Replay$Multi speed mode" msgid "Setup.Replay$Multi speed mode"
msgstr "Multi-kiiruse moodus" msgstr "Mitmekiiruse moodus"
msgid "Setup.Replay$Show replay mode" msgid "Setup.Replay$Show replay mode"
msgstr "Korduse moodus" msgstr "Korduse moodus"
@ -1166,7 +1172,7 @@ msgid "Pausing live video..."
msgstr "Otseülekande peatamine..." msgstr "Otseülekande peatamine..."
msgid "Delete timeshift recording?" msgid "Delete timeshift recording?"
msgstr "" msgstr "Kustutada ajanihke salvestus?"
#. TRANSLATORS: note the trailing blank! #. TRANSLATORS: note the trailing blank!
msgid "Jump: " msgid "Jump: "

View File

@ -2,7 +2,7 @@
# Copyright (C) 2008 Klaus Schmidinger <kls@tvdr.de> # Copyright (C) 2008 Klaus Schmidinger <kls@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Hannu Savolainen <hannu@opensound.com>, 2002 # Hannu Savolainen <hannu@opensound.com>, 2002
# Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002, 2003 # Jaakko Hyvätti <jaakko@hyvatti.iki.fi>, 2002, 2003
# Niko Tarnanen <niko.tarnanen@hut.fi>, 2003 # Niko Tarnanen <niko.tarnanen@hut.fi>, 2003
# Rolf Ahrenberg <rahrenbe@cc.hut.fi>, 2003, 2004, 2005, 2006, 2007, 2008 # Rolf Ahrenberg <rahrenbe@cc.hut.fi>, 2003, 2004, 2005, 2006, 2007, 2008
# #
@ -10,34 +10,34 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n" "Last-Translator: Rolf Ahrenberg <rahrenbe@cc.hut.fi>\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
msgid "*** Invalid Channel ***" msgid "*** Invalid Channel ***"
msgstr "*** Virheellinen kanavavalinta ***" msgstr "*** Virheellinen kanavavalinta ***"
msgid "Channel not available!" msgid "Channel not available!"
msgstr "Kanava ei ole käytettävissä!" msgstr "Kanava ei ole käytettävissä!"
msgid "Can't start Transfer Mode!" msgid "Can't start Transfer Mode!"
msgstr "Siirtotilan aloitus epäonnistui!" msgstr "Siirtotilan aloitus epäonnistui!"
msgid "off" msgid "off"
msgstr "poissa" msgstr "poissa"
msgid "on" msgid "on"
msgstr "päällä" msgstr "päällä"
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
msgid "none" msgid "none"
msgstr "tyhjä" msgstr "tyhjä"
msgid "Polarization" msgid "Polarization"
msgstr "Polarisaatio" msgstr "Polarisaatio"
@ -67,7 +67,7 @@ msgid "Transmission"
msgstr "Transmissio" msgstr "Transmissio"
msgid "Guard" msgid "Guard"
msgstr "Suojaväli" msgstr "Suojaväli"
msgid "Hierarchy" msgid "Hierarchy"
msgstr "Hierarkia" msgstr "Hierarkia"
@ -76,13 +76,13 @@ msgid "Rolloff"
msgstr "Rolloff" msgstr "Rolloff"
msgid "Starting EPG scan" msgid "Starting EPG scan"
msgstr "Ohjelmaoppaan päivitys aloitettu" msgstr "Ohjelmaoppaan päivitys aloitettu"
msgid "Content$Movie/Drama" msgid "Content$Movie/Drama"
msgstr "Elokuva/draama" msgstr "Elokuva/draama"
msgid "Content$Detective/Thriller" msgid "Content$Detective/Thriller"
msgstr "Etsivä/trilleri" msgstr "Etsivä/trilleri"
msgid "Content$Adventure/Western/War" msgid "Content$Adventure/Western/War"
msgstr "Seikkailu/western/sota" msgstr "Seikkailu/western/sota"
@ -109,7 +109,7 @@ msgid "Content$News/Current Affairs"
msgstr "Uutiset/ajankohtaisohjelma" msgstr "Uutiset/ajankohtaisohjelma"
msgid "Content$News/Weather Report" msgid "Content$News/Weather Report"
msgstr "Uutiset/säätiedot" msgstr "Uutiset/säätiedot"
msgid "Content$News Magazine" msgid "Content$News Magazine"
msgstr "Uutismakasiini" msgstr "Uutismakasiini"
@ -118,7 +118,7 @@ msgid "Content$Documentary"
msgstr "Dokumentti" msgstr "Dokumentti"
msgid "Content$Discussion/Inverview/Debate" msgid "Content$Discussion/Inverview/Debate"
msgstr "Keskustelu/haastattelu/väittely" msgstr "Keskustelu/haastattelu/väittely"
msgid "Content$Show/Game Show" msgid "Content$Show/Game Show"
msgstr "Show/visailu" msgstr "Show/visailu"
@ -172,7 +172,7 @@ msgid "Content$Children's/Youth Programme"
msgstr "Lasten ja nuorten ohjelma" msgstr "Lasten ja nuorten ohjelma"
msgid "Content$Pre-school Children's Programme" msgid "Content$Pre-school Children's Programme"
msgstr "Alle kouluikäisten ohjelma" msgstr "Alle kouluikäisten ohjelma"
msgid "Content$Entertainment Programme for 6 to 14" msgid "Content$Entertainment Programme for 6 to 14"
msgstr "Viihdeohjelma 6-14 vuotiaille" msgstr "Viihdeohjelma 6-14 vuotiaille"
@ -232,7 +232,7 @@ msgid "Content$Experimental Film/Video"
msgstr "Kokeellinen elokuva/video" msgstr "Kokeellinen elokuva/video"
msgid "Content$Broadcasting/Press" msgid "Content$Broadcasting/Press"
msgstr "Televisio/radio/lehdistö" msgstr "Televisio/radio/lehdistö"
msgid "Content$New Media" msgid "Content$New Media"
msgstr "Uusmedia" msgstr "Uusmedia"
@ -253,19 +253,19 @@ msgid "Content$Economics/Social Advisory"
msgstr "Talous/yhteiskunnallinen neuvonta" msgstr "Talous/yhteiskunnallinen neuvonta"
msgid "Content$Remarkable People" msgid "Content$Remarkable People"
msgstr "Merkittävät henkilöt" msgstr "Merkittävät henkilöt"
msgid "Content$Education/Science/Factual" msgid "Content$Education/Science/Factual"
msgstr "Koulutus/tiede" msgstr "Koulutus/tiede"
msgid "Content$Nature/Animals/Environment" msgid "Content$Nature/Animals/Environment"
msgstr "Luonto/eläimet/ympäristö" msgstr "Luonto/eläimet/ympäristö"
msgid "Content$Technology/Natural Sciences" msgid "Content$Technology/Natural Sciences"
msgstr "Teknologia/luonnontiede" msgstr "Teknologia/luonnontiede"
msgid "Content$Medicine/Physiology/Psychology" msgid "Content$Medicine/Physiology/Psychology"
msgstr "Lääketiede/fysiologia/psykologia" msgstr "Lääketiede/fysiologia/psykologia"
msgid "Content$Foreign Countries/Expeditions" msgid "Content$Foreign Countries/Expeditions"
msgstr "Vieraat maat/tutkimusretket" msgstr "Vieraat maat/tutkimusretket"
@ -286,7 +286,7 @@ msgid "Content$Tourism/Travel"
msgstr "Turismi/matkustaminen" msgstr "Turismi/matkustaminen"
msgid "Content$Handicraft" msgid "Content$Handicraft"
msgstr "Käsityöt" msgstr "Käsityöt"
msgid "Content$Motoring" msgid "Content$Motoring"
msgstr "Autoilu" msgstr "Autoilu"
@ -304,7 +304,7 @@ msgid "Content$Gardening"
msgstr "Puutarhanhoito" msgstr "Puutarhanhoito"
msgid "Content$Original Language" msgid "Content$Original Language"
msgstr "Alkuperäiskieli" msgstr "Alkuperäiskieli"
msgid "Content$Black & White" msgid "Content$Black & White"
msgstr "Mustavalkoinen" msgstr "Mustavalkoinen"
@ -313,14 +313,14 @@ msgid "Content$Unpublished"
msgstr "Julkaisematon" msgstr "Julkaisematon"
msgid "Content$Live Broadcast" msgid "Content$Live Broadcast"
msgstr "Suoralähetys" msgstr "Suoralähetys"
#, c-format #, c-format
msgid "ParentalRating$from %d" msgid "ParentalRating$from %d"
msgstr "K-%d" msgstr "K-%d"
msgid "No title" msgid "No title"
msgstr "Ei esitystä" msgstr "Ei esitystä"
#. TRANSLATORS: The name of the language, as written natively #. TRANSLATORS: The name of the language, as written natively
msgid "LanguageName$English" msgid "LanguageName$English"
@ -334,47 +334,47 @@ msgid "Phase 1: Detecting RC code type"
msgstr "Vaihe 1: Koodauksen tunnistaminen" msgstr "Vaihe 1: Koodauksen tunnistaminen"
msgid "Press any key on the RC unit" msgid "Press any key on the RC unit"
msgstr "Paina mitä tahansa kaukosäätimen näppäintä" msgstr "Paina mitä tahansa kaukosäätimen näppäintä"
msgid "RC code detected!" msgid "RC code detected!"
msgstr "Näppäinpainallus vastaanotettu!" msgstr "Näppäinpainallus vastaanotettu!"
msgid "Do not press any key..." msgid "Do not press any key..."
msgstr "Älä paina kaukosäätimen näppäimiä..." msgstr "Älä paina kaukosäätimen näppäimiä..."
msgid "Phase 2: Learning specific key codes" msgid "Phase 2: Learning specific key codes"
msgstr "Vaihe 2: Näppäinkoodien opettelu" msgstr "Vaihe 2: Näppäinkoodien opettelu"
#, c-format #, c-format
msgid "Press key for '%s'" msgid "Press key for '%s'"
msgstr "Paina näppäintä toiminnolle '%s'" msgstr "Paina näppäintä toiminnolle '%s'"
msgid "Press 'Up' to confirm" msgid "Press 'Up' to confirm"
msgstr "Hyväksy painamalla 'Ylös'" msgstr "Hyväksy painamalla 'Ylös'"
msgid "Press 'Down' to continue" msgid "Press 'Down' to continue"
msgstr "Jatka painamalla 'Alas'" msgstr "Jatka painamalla 'Alas'"
msgid "(press 'Up' to go back)" msgid "(press 'Up' to go back)"
msgstr "(palaa takaisin painamalla 'Ylös')" msgstr "(palaa takaisin painamalla 'Ylös')"
msgid "(press 'Down' to end key definition)" msgid "(press 'Down' to end key definition)"
msgstr "(lopeta opettaminen painamalla 'Alas')" msgstr "(lopeta opettaminen painamalla 'Alas')"
msgid "(press 'Menu' to skip this key)" msgid "(press 'Menu' to skip this key)"
msgstr "näppäimen puuttuessa paina 'Valikko'" msgstr "näppäimen puuttuessa paina 'Valikko'"
msgid "Learning Remote Control Keys" msgid "Learning Remote Control Keys"
msgstr "Kaukosäätimen opettaminen" msgstr "Kaukosäätimen opettaminen"
msgid "Phase 3: Saving key codes" msgid "Phase 3: Saving key codes"
msgstr "Vaihe 3: Näppäinkoodien tallentaminen" msgstr "Vaihe 3: Näppäinkoodien tallentaminen"
msgid "Press 'Up' to save, 'Down' to cancel" msgid "Press 'Up' to save, 'Down' to cancel"
msgstr "Paina 'Ylös' tallentaaksesi ja 'Alas' peruuttaaksesi" msgstr "Paina 'Ylös' tallentaaksesi ja 'Alas' peruuttaaksesi"
msgid "Key$Up" msgid "Key$Up"
msgstr "Ylös" msgstr "Ylös"
msgid "Key$Down" msgid "Key$Down"
msgstr "Alas" msgstr "Alas"
@ -398,7 +398,7 @@ msgid "Key$Red"
msgstr "Punainen" msgstr "Punainen"
msgid "Key$Green" msgid "Key$Green"
msgstr "Vihreä" msgstr "Vihreä"
msgid "Key$Yellow" msgid "Key$Yellow"
msgstr "Keltainen" msgstr "Keltainen"
@ -446,16 +446,16 @@ msgid "Key$PrevChannel"
msgstr "Edellinen kanava" msgstr "Edellinen kanava"
msgid "Key$Volume+" msgid "Key$Volume+"
msgstr "Äänenvoimakkuus +" msgstr "Äänenvoimakkuus +"
msgid "Key$Volume-" msgid "Key$Volume-"
msgstr "Äänenvoimakkuus -" msgstr "Äänenvoimakkuus -"
msgid "Key$Mute" msgid "Key$Mute"
msgstr "Mykistys" msgstr "Mykistys"
msgid "Key$Audio" msgid "Key$Audio"
msgstr "Ääni" msgstr "Ääni"
msgid "Key$Subtitles" msgid "Key$Subtitles"
msgstr "Tekstitys" msgstr "Tekstitys"
@ -478,32 +478,35 @@ msgstr "Asetukset"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Komennot" msgstr "Komennot"
msgid "Key$User0"
msgstr "Lisänäppäin 0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Lisänäppäin 1" msgstr "Lisänäppäin 1"
msgid "Key$User2" msgid "Key$User2"
msgstr "Lisänäppäin 2" msgstr "Lisänäppäin 2"
msgid "Key$User3" msgid "Key$User3"
msgstr "Lisänäppäin 3" msgstr "Lisänäppäin 3"
msgid "Key$User4" msgid "Key$User4"
msgstr "Lisänäppäin 4" msgstr "Lisänäppäin 4"
msgid "Key$User5" msgid "Key$User5"
msgstr "Lisänäppäin 5" msgstr "Lisänäppäin 5"
msgid "Key$User6" msgid "Key$User6"
msgstr "Lisänäppäin 6" msgstr "Lisänäppäin 6"
msgid "Key$User7" msgid "Key$User7"
msgstr "Lisänäppäin 7" msgstr "Lisänäppäin 7"
msgid "Key$User8" msgid "Key$User8"
msgstr "Lisänäppäin 8" msgstr "Lisänäppäin 8"
msgid "Key$User9" msgid "Key$User9"
msgstr "Lisänäppäin 9" msgstr "Lisänäppäin 9"
msgid "Disk" msgid "Disk"
msgstr "Levy" msgstr "Levy"
@ -524,7 +527,7 @@ msgid "Name"
msgstr "Nimi" msgstr "Nimi"
msgid "Source" msgid "Source"
msgstr "Lähde" msgstr "Lähde"
msgid "Frequency" msgid "Frequency"
msgstr "Taajuus" msgstr "Taajuus"
@ -536,10 +539,10 @@ msgid "Ppid"
msgstr "PCR-PID" msgstr "PCR-PID"
msgid "Apid1" msgid "Apid1"
msgstr "Ääni-PID (1)" msgstr "Ääni-PID (1)"
msgid "Apid2" msgid "Apid2"
msgstr "Ääni-PID (2)" msgstr "Ääni-PID (2)"
msgid "Dpid1" msgid "Dpid1"
msgstr "Dolby-PID (1)" msgstr "Dolby-PID (1)"
@ -563,7 +566,7 @@ msgid "Sid"
msgstr "Palvelu-ID" msgstr "Palvelu-ID"
msgid "Channel settings are not unique!" msgid "Channel settings are not unique!"
msgstr "Kanava-asetukset eivät ole yksilölliset!" msgstr "Kanava-asetukset eivät ole yksilölliset!"
msgid "Channels" msgid "Channels"
msgstr "Kanavat" msgstr "Kanavat"
@ -578,10 +581,10 @@ msgid "Button$Delete"
msgstr "Poista" msgstr "Poista"
msgid "Button$Mark" msgid "Button$Mark"
msgstr "Siirrä" msgstr "Siirrä"
msgid "Channel is being used by a timer!" msgid "Channel is being used by a timer!"
msgstr "Kanava on ajastimen käytössä!" msgstr "Kanava on ajastimen käytössä!"
msgid "Delete channel?" msgid "Delete channel?"
msgstr "Poistetaanko kanava?" msgstr "Poistetaanko kanava?"
@ -600,7 +603,7 @@ msgstr "Kansio on jo olemassa!"
#, c-format #, c-format
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Kansion nimessä ei saa olla '%c'-merkkiä!" msgstr "Kansion nimessä ei saa olla '%c'-merkkiä!"
msgid "Button$Select" msgid "Button$Select"
msgstr "Valitse" msgstr "Valitse"
@ -621,7 +624,7 @@ msgid "Channel"
msgstr "Kanava" msgstr "Kanava"
msgid "Day" msgid "Day"
msgstr "Päivä" msgstr "Päivä"
msgid "Start" msgid "Start"
msgstr "Aloitus" msgstr "Aloitus"
@ -636,7 +639,7 @@ msgid "Priority"
msgstr "Prioriteetti" msgstr "Prioriteetti"
msgid "Lifetime" msgid "Lifetime"
msgstr "Elinikä" msgstr "Elinikä"
msgid "File" msgid "File"
msgstr "Tiedosto" msgstr "Tiedosto"
@ -645,7 +648,7 @@ msgid "Button$Folder"
msgstr "Kansio" msgstr "Kansio"
msgid "First day" msgid "First day"
msgstr "1. päivä" msgstr "1. päivä"
msgid "Select folder" msgid "Select folder"
msgstr "Valitse kansio" msgstr "Valitse kansio"
@ -654,7 +657,7 @@ msgid "Timers"
msgstr "Ajastimet" msgstr "Ajastimet"
msgid "Button$On/Off" msgid "Button$On/Off"
msgstr "Päällä/Pois" msgstr "Päällä/Pois"
msgid "Button$Info" msgid "Button$Info"
msgstr "Tiedot" msgstr "Tiedot"
@ -663,7 +666,7 @@ msgid "Delete timer?"
msgstr "Poistetaanko ajastin?" msgstr "Poistetaanko ajastin?"
msgid "Timer still recording - really delete?" msgid "Timer still recording - really delete?"
msgstr "Ajastettu tallennus käynnissä - poistetaanko silti?" msgstr "Ajastettu tallennus käynnissä - poistetaanko silti?"
msgid "Event" msgid "Event"
msgstr "Tapahtuma" msgstr "Tapahtuma"
@ -701,17 +704,17 @@ msgstr "Ohjelmisto - %s"
#, c-format #, c-format
msgid "This event - %s" msgid "This event - %s"
msgstr "Tämä tapahtuma - %s" msgstr "Tämä tapahtuma - %s"
msgid "This event - all channels" msgid "This event - all channels"
msgstr "Tämä tapahtuma - kaikki kanavat" msgstr "Tämä tapahtuma - kaikki kanavat"
msgid "All events - all channels" msgid "All events - all channels"
msgstr "Kaikki tapahtumat - kaikki kanavat" msgstr "Kaikki tapahtumat - kaikki kanavat"
#, c-format #, c-format
msgid "Please enter %d digits!" msgid "Please enter %d digits!"
msgstr "Syötä %d numeroa!" msgstr "Syötä %d numeroa!"
msgid "CAM not responding!" msgid "CAM not responding!"
msgstr "CA-moduuli ei vastaa!" msgstr "CA-moduuli ei vastaa!"
@ -735,13 +738,13 @@ msgid "Commands"
msgstr "Komennot" msgstr "Komennot"
msgid "Error while accessing recording!" msgid "Error while accessing recording!"
msgstr "Tallenteen toistaminen epäonnistui!" msgstr "Tallenteen toistaminen epäonnistui!"
msgid "Delete recording?" msgid "Delete recording?"
msgstr "Poistetaanko tallenne?" msgstr "Poistetaanko tallenne?"
msgid "Error while deleting recording!" msgid "Error while deleting recording!"
msgstr "Tallenteen poistaminen epäonnistui!" msgstr "Tallenteen poistaminen epäonnistui!"
msgid "Recording commands" msgid "Recording commands"
msgstr "Tallennekomennot" msgstr "Tallennekomennot"
@ -756,7 +759,7 @@ msgid "always"
msgstr "aina" msgstr "aina"
msgid "OSD" msgid "OSD"
msgstr "Kuvaruutunäyttö" msgstr "Kuvaruutunäyttö"
msgid "Setup.OSD$Language" msgid "Setup.OSD$Language"
msgstr "Kieli" msgstr "Kieli"
@ -783,10 +786,10 @@ msgid "Setup.OSD$Message time (s)"
msgstr "Viestien esitysaika (s)" msgstr "Viestien esitysaika (s)"
msgid "Setup.OSD$Use small font" msgid "Setup.OSD$Use small font"
msgstr "Käytä pieniä kirjasimia" msgstr "Käytä pieniä kirjasimia"
msgid "Setup.OSD$Anti-alias" msgid "Setup.OSD$Anti-alias"
msgstr "Käytä reunan pehmennystä" msgstr "Käytä reunan pehmennystä"
msgid "Setup.OSD$Default font" msgid "Setup.OSD$Default font"
msgstr "Oletuskirjasintyyppi" msgstr "Oletuskirjasintyyppi"
@ -795,7 +798,7 @@ msgid "Setup.OSD$Small font"
msgstr "Pieni kirjasintyyppi" msgstr "Pieni kirjasintyyppi"
msgid "Setup.OSD$Fixed font" msgid "Setup.OSD$Fixed font"
msgstr "Tasavälinen kirjasintyyppi" msgstr "Tasavälinen kirjasintyyppi"
msgid "Setup.OSD$Default font size (%)" msgid "Setup.OSD$Default font size (%)"
msgstr "Oletuskirjasintyypin koko (%)" msgstr "Oletuskirjasintyypin koko (%)"
@ -804,7 +807,7 @@ msgid "Setup.OSD$Small font size (%)"
msgstr "Pienen kirjasintyypin koko (%)" msgstr "Pienen kirjasintyypin koko (%)"
msgid "Setup.OSD$Fixed font size (%)" msgid "Setup.OSD$Fixed font size (%)"
msgstr "Tasavälisen kirjasintyypin koko (%)" msgstr "Tasavälisen kirjasintyypin koko (%)"
msgid "Setup.OSD$Channel info position" msgid "Setup.OSD$Channel info position"
msgstr "Kanavatiedon sijainti" msgstr "Kanavatiedon sijainti"
@ -813,13 +816,13 @@ msgid "bottom"
msgstr "alareuna" msgstr "alareuna"
msgid "top" msgid "top"
msgstr "yläreuna" msgstr "yläreuna"
msgid "Setup.OSD$Channel info time (s)" msgid "Setup.OSD$Channel info time (s)"
msgstr "Kanavatiedon esitysaika (s)" msgstr "Kanavatiedon esitysaika (s)"
msgid "Setup.OSD$Info on channel switch" msgid "Setup.OSD$Info on channel switch"
msgstr "Näytä kanavatieto vaihdettaessa" msgstr "Näytä kanavatieto vaihdettaessa"
msgid "Setup.OSD$Timeout requested channel info" msgid "Setup.OSD$Timeout requested channel info"
msgstr "Sulje erikseen avattu kanavatieto" msgstr "Sulje erikseen avattu kanavatieto"
@ -828,31 +831,34 @@ msgid "Setup.OSD$Scroll pages"
msgstr "Valikoiden vieritys sivuttain" msgstr "Valikoiden vieritys sivuttain"
msgid "Setup.OSD$Scroll wraps" msgid "Setup.OSD$Scroll wraps"
msgstr "Valikoiden vieritys ympäri" msgstr "Valikoiden vieritys ympäri"
msgid "Setup.OSD$Menu key closes" msgid "Setup.OSD$Menu key closes"
msgstr "Sulje valikkonäppäimellä" msgstr "Sulje valikkonäppäimellä"
msgid "Setup.OSD$Recording directories" msgid "Setup.OSD$Recording directories"
msgstr "Näytä tallennehakemistot" msgstr "Näytä tallennehakemistot"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "Näytä kansiot ajastinvalikossa"
msgid "Setup.OSD$Number keys for characters"
msgstr "" msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Ohjelmaopas" msgstr "Ohjelmaopas"
msgid "Button$Scan" msgid "Button$Scan"
msgstr "Päivitä" msgstr "Päivitä"
msgid "Setup.EPG$EPG scan timeout (h)" msgid "Setup.EPG$EPG scan timeout (h)"
msgstr "Ohjelmaoppaan taustapäivitys (h)" msgstr "Ohjelmaoppaan taustapäivitys (h)"
msgid "Setup.EPG$EPG bugfix level" msgid "Setup.EPG$EPG bugfix level"
msgstr "Ohjelmaoppaan korjaustaso" msgstr "Ohjelmaoppaan korjaustaso"
msgid "Setup.EPG$EPG linger time (min)" msgid "Setup.EPG$EPG linger time (min)"
msgstr "Vanha tieto näkyy (min)" msgstr "Vanha tieto näkyy (min)"
msgid "Setup.EPG$Set system time" msgid "Setup.EPG$Set system time"
msgstr "Tahdista kellonaika" msgstr "Tahdista kellonaika"
@ -905,22 +911,22 @@ msgid "Setup.DVB$Video format"
msgstr "Kuvasuhde" msgstr "Kuvasuhde"
msgid "Setup.DVB$Video display format" msgid "Setup.DVB$Video display format"
msgstr "Näyttömuoto" msgstr "Näyttömuoto"
msgid "Setup.DVB$Use Dolby Digital" msgid "Setup.DVB$Use Dolby Digital"
msgstr "Käytä Dolby Digital -ääntä" msgstr "Käytä Dolby Digital -ääntä"
msgid "Setup.DVB$Update channels" msgid "Setup.DVB$Update channels"
msgstr "Päivitä kanavat" msgstr "Päivitä kanavat"
msgid "Setup.DVB$Audio languages" msgid "Setup.DVB$Audio languages"
msgstr "Äänen kielet" msgstr "Äänen kielet"
msgid "Setup.DVB$Audio language" msgid "Setup.DVB$Audio language"
msgstr "Äänen kieli" msgstr "Äänen kieli"
msgid "Setup.DVB$Display subtitles" msgid "Setup.DVB$Display subtitles"
msgstr "Näytä tekstitys" msgstr "Näytä tekstitys"
msgid "Setup.DVB$Subtitle languages" msgid "Setup.DVB$Subtitle languages"
msgstr "Tekstityskielet" msgstr "Tekstityskielet"
@ -932,16 +938,16 @@ msgid "Setup.DVB$Subtitle offset"
msgstr "Tekstityksen tasaus" msgstr "Tekstityksen tasaus"
msgid "Setup.DVB$Subtitle foreground transparency" msgid "Setup.DVB$Subtitle foreground transparency"
msgstr "Tekstityksen läpinäkyvyys" msgstr "Tekstityksen läpinäkyvyys"
msgid "Setup.DVB$Subtitle background transparency" msgid "Setup.DVB$Subtitle background transparency"
msgstr "Tekstityksen taustan läpinäkyvyys" msgstr "Tekstityksen taustan läpinäkyvyys"
msgid "LNB" msgid "LNB"
msgstr "LNB" msgstr "LNB"
msgid "Setup.LNB$Use DiSEqC" msgid "Setup.LNB$Use DiSEqC"
msgstr "Käytä DiSEqC-kytkintä" msgstr "Käytä DiSEqC-kytkintä"
msgid "Setup.LNB$SLOF (MHz)" msgid "Setup.LNB$SLOF (MHz)"
msgstr "LNB-rajataajuus (MHz)" msgstr "LNB-rajataajuus (MHz)"
@ -950,7 +956,7 @@ msgid "Setup.LNB$Low LNB frequency (MHz)"
msgstr "LNB-alataajuus (MHz)" msgstr "LNB-alataajuus (MHz)"
msgid "Setup.LNB$High LNB frequency (MHz)" msgid "Setup.LNB$High LNB frequency (MHz)"
msgstr "LNB-ylätaajuus (MHz)" msgstr "LNB-ylätaajuus (MHz)"
msgid "CAM reset" msgid "CAM reset"
msgstr "CAM nollaus" msgstr "CAM nollaus"
@ -977,25 +983,25 @@ msgid "Can't open CAM menu!"
msgstr "CA-moduulin valikko ei saatavilla" msgstr "CA-moduulin valikko ei saatavilla"
msgid "CAM is in use - really reset?" msgid "CAM is in use - really reset?"
msgstr "CA-moduuli käytössä - nollataanko?" msgstr "CA-moduuli käytössä - nollataanko?"
msgid "Can't reset CAM!" msgid "Can't reset CAM!"
msgstr "CA-moduulin nollaus epäonnistui!" msgstr "CA-moduulin nollaus epäonnistui!"
msgid "do not pause live video" msgid "do not pause live video"
msgstr "älä pysäytä lähetystä" msgstr "älä pysäytä lähetystä"
msgid "confirm pause live video" msgid "confirm pause live video"
msgstr "varmista lähetyksen pysäyttäminen" msgstr "varmista lähetyksen pysäyttäminen"
msgid "pause live video" msgid "pause live video"
msgstr "pysäytä lähetys" msgstr "pysäytä lähetys"
msgid "confirm" msgid "confirm"
msgstr "" msgstr "varmista"
msgid "yes" msgid "yes"
msgstr "kyllä" msgstr "kyllä"
msgid "Recording" msgid "Recording"
msgstr "Tallennus" msgstr "Tallennus"
@ -1013,22 +1019,22 @@ msgid "Setup.Recording$Default priority"
msgstr "Tallenteen oletusprioriteetti" msgstr "Tallenteen oletusprioriteetti"
msgid "Setup.Recording$Default lifetime (d)" msgid "Setup.Recording$Default lifetime (d)"
msgstr "Tallenteen oletuselinikä (d)" msgstr "Tallenteen oletuselinikä (d)"
msgid "Setup.Recording$Pause key handling" msgid "Setup.Recording$Pause key handling"
msgstr "Taukonäppäimen toiminta" msgstr "Taukonäppäimen toiminta"
msgid "Setup.Recording$Pause priority" msgid "Setup.Recording$Pause priority"
msgstr "Taukotallenteen prioriteetti" msgstr "Taukotallenteen prioriteetti"
msgid "Setup.Recording$Pause lifetime (d)" msgid "Setup.Recording$Pause lifetime (d)"
msgstr "Taukotallenteen elinikä (d)" msgstr "Taukotallenteen elinikä (d)"
msgid "Setup.Recording$Use episode name" msgid "Setup.Recording$Use episode name"
msgstr "Käytä jakson nimeä" msgstr "Käytä jakson nimeä"
msgid "Setup.Recording$Use VPS" msgid "Setup.Recording$Use VPS"
msgstr "Käytä VPS-toimintoa" msgstr "Käytä VPS-toimintoa"
msgid "Setup.Recording$VPS margin (s)" msgid "Setup.Recording$VPS margin (s)"
msgstr "VPS-toiminnon aloitusmarginaali (s)" msgstr "VPS-toiminnon aloitusmarginaali (s)"
@ -1037,7 +1043,7 @@ msgid "Setup.Recording$Mark instant recording"
msgstr "Merkitse pikatallenne" msgstr "Merkitse pikatallenne"
msgid "Setup.Recording$Name instant recording" msgid "Setup.Recording$Name instant recording"
msgstr "Nimeä pikatallenne" msgstr "Nimeä pikatallenne"
msgid "Setup.Recording$Instant rec. time (min)" msgid "Setup.Recording$Instant rec. time (min)"
msgstr "Pikatallennuksen kesto (min)" msgstr "Pikatallennuksen kesto (min)"
@ -1049,16 +1055,16 @@ msgid "Setup.Recording$Split edited files"
msgstr "Jaottele muokatut tallenteet" msgstr "Jaottele muokatut tallenteet"
msgid "Setup.Recording$Delete timeshift recording" msgid "Setup.Recording$Delete timeshift recording"
msgstr "" msgstr "Poista ajansiirtotallenne"
msgid "Replay" msgid "Replay"
msgstr "Toisto" msgstr "Toisto"
msgid "Setup.Replay$Multi speed mode" msgid "Setup.Replay$Multi speed mode"
msgstr "Käytä toiston moninopeustilaa" msgstr "Käytä toiston moninopeustilaa"
msgid "Setup.Replay$Show replay mode" msgid "Setup.Replay$Show replay mode"
msgstr "Näytä toiston tila" msgstr "Näytä toiston tila"
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "Tallenteen paluutunniste" msgstr "Tallenteen paluutunniste"
@ -1070,7 +1076,7 @@ msgid "Setup.Miscellaneous$Min. event timeout (min)"
msgstr "Tapahtuman odotusaika (min)" msgstr "Tapahtuman odotusaika (min)"
msgid "Setup.Miscellaneous$Min. user inactivity (min)" msgid "Setup.Miscellaneous$Min. user inactivity (min)"
msgstr "Käyttäjätoiminnon odotusaika (min)" msgstr "Käyttäjätoiminnon odotusaika (min)"
msgid "Setup.Miscellaneous$SVDRP timeout (s)" msgid "Setup.Miscellaneous$SVDRP timeout (s)"
msgstr "SVDRP-komennon odotusaika (s)" msgstr "SVDRP-komennon odotusaika (s)"
@ -1079,37 +1085,37 @@ msgid "Setup.Miscellaneous$Zap timeout (s)"
msgstr "Kanavavalinnan odotusaika (s)" msgstr "Kanavavalinnan odotusaika (s)"
msgid "Setup.Miscellaneous$Channel entry timeout (ms)" msgid "Setup.Miscellaneous$Channel entry timeout (ms)"
msgstr "Kanavasyötteen odotusaika (ms)" msgstr "Kanavasyötteen odotusaika (ms)"
msgid "Setup.Miscellaneous$Initial channel" msgid "Setup.Miscellaneous$Initial channel"
msgstr "Kanava käynnistettäessä" msgstr "Kanava käynnistettäessä"
msgid "Setup.Miscellaneous$as before" msgid "Setup.Miscellaneous$as before"
msgstr "edellinen" msgstr "edellinen"
msgid "Setup.Miscellaneous$Initial volume" msgid "Setup.Miscellaneous$Initial volume"
msgstr "Äänenvoimakkuus käynnistettäessä" msgstr "Äänenvoimakkuus käynnistettäessä"
msgid "Setup.Miscellaneous$Channels wrap" msgid "Setup.Miscellaneous$Channels wrap"
msgstr "Kanavien rullaus" msgstr "Kanavien rullaus"
msgid "Setup.Miscellaneous$Emergency exit" msgid "Setup.Miscellaneous$Emergency exit"
msgstr "Käytä hätäsammutusta" msgstr "Käytä hätäsammutusta"
msgid "Plugins" msgid "Plugins"
msgstr "Laajennokset" msgstr "Laajennokset"
msgid "This plugin has no setup parameters!" msgid "This plugin has no setup parameters!"
msgstr "Tällä laajennoksella ei ole asetuksia!" msgstr "Tällä laajennoksella ei ole asetuksia!"
msgid "Setup" msgid "Setup"
msgstr "Asetukset" msgstr "Asetukset"
msgid "Restart" msgid "Restart"
msgstr "Käynnistä uudelleen" msgstr "Käynnistä uudelleen"
msgid "Really restart?" msgid "Really restart?"
msgstr "Käynnistetäänkö uudelleen?" msgstr "Käynnistetäänkö uudelleen?"
#. TRANSLATORS: note the leading and trailing blanks! #. TRANSLATORS: note the leading and trailing blanks!
msgid " Stop recording " msgid " Stop recording "
@ -1126,7 +1132,7 @@ msgid " Stop replaying"
msgstr " Lopeta toisto" msgstr " Lopeta toisto"
msgid "Button$Audio" msgid "Button$Audio"
msgstr "Ääni" msgstr "Ääni"
msgid "Button$Pause" msgid "Button$Pause"
msgstr "Tauko" msgstr "Tauko"
@ -1148,10 +1154,10 @@ msgid "Cancel editing?"
msgstr "Perutaanko muokkaus?" msgstr "Perutaanko muokkaus?"
msgid "No audio available!" msgid "No audio available!"
msgstr "Äänen kieli ei ole valittavissa!" msgstr "Äänen kieli ei ole valittavissa!"
msgid "No subtitles" msgid "No subtitles"
msgstr "Ei tekstitystä" msgstr "Ei tekstitystä"
msgid "Button$Subtitles" msgid "Button$Subtitles"
msgstr "Tekstitys" msgstr "Tekstitys"
@ -1160,38 +1166,38 @@ msgid "No subtitles available!"
msgstr "Tekstitys ei ole valittavissa!" msgstr "Tekstitys ei ole valittavissa!"
msgid "Not enough disk space to start recording!" msgid "Not enough disk space to start recording!"
msgstr "Tallennustilan puute estää tallennuksen!" msgstr "Tallennustilan puute estää tallennuksen!"
msgid "No free DVB device to record!" msgid "No free DVB device to record!"
msgstr "Ei vapaata DVB-viritintä tallennukselle!" msgstr "Ei vapaata DVB-viritintä tallennukselle!"
msgid "Pausing live video..." msgid "Pausing live video..."
msgstr "Pysäytetään lähetys..." msgstr "Pysäytetään lähetys..."
msgid "Delete timeshift recording?" msgid "Delete timeshift recording?"
msgstr "" msgstr "Poistetaanko ajansiirtotallenne?"
#. TRANSLATORS: note the trailing blank! #. TRANSLATORS: note the trailing blank!
msgid "Jump: " msgid "Jump: "
msgstr "Siirry: " msgstr "Siirry: "
msgid "No editing marks defined!" msgid "No editing marks defined!"
msgstr "Muokkausmerkinnät puuttuvat!" msgstr "Muokkausmerkinnät puuttuvat!"
msgid "Can't start editing process!" msgid "Can't start editing process!"
msgstr "Muokkauksen aloitus epäonnistui!" msgstr "Muokkauksen aloitus epäonnistui!"
msgid "Editing process started" msgid "Editing process started"
msgstr "Muokkaus aloitettu" msgstr "Muokkaus aloitettu"
msgid "Editing process already active!" msgid "Editing process already active!"
msgstr "Muokkaus on jo käynnissä!" msgstr "Muokkaus on jo käynnissä!"
msgid "FileNameChars$ abcdefghijklmnopqrstuvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&" msgid "FileNameChars$ abcdefghijklmnopqrstuvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&"
msgstr " abcdefghijklmnopqrstuvwxyzåäö0123456789-.,#~\\^$[]|()*+?{}/:%@&" msgstr " abcdefghijklmnopqrstuvwxyzåäö0123456789-.,#~\\^$[]|()*+?{}/:%@&"
msgid "CharMap$ 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabc2\tdef3\tghi4\tjkl5\tmno6\tpqrs7\ttuv8\twxyz9" msgid "CharMap$ 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabc2\tdef3\tghi4\tjkl5\tmno6\tpqrs7\ttuv8\twxyz9"
msgstr " 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabcäå2\tdef3\tghi4\tjkl5\tmnoö6\tpqrs7\ttuv8\twxyz9" msgstr " 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabcäå2\tdef3\tghi4\tjkl5\tmnoö6\tpqrs7\ttuv8\twxyz9"
msgid "Button$ABC/abc" msgid "Button$ABC/abc"
msgstr "ABC/abc" msgstr "ABC/abc"
@ -1200,16 +1206,16 @@ msgid "Button$Overwrite"
msgstr "Korvaa" msgstr "Korvaa"
msgid "Button$Insert" msgid "Button$Insert"
msgstr "Lisää" msgstr "Lisää"
msgid "Plugin" msgid "Plugin"
msgstr "Laajennos" msgstr "Laajennos"
msgid "Up/Dn for new location - OK to move" msgid "Up/Dn for new location - OK to move"
msgstr "'Ylös/Alas' uusi paikka - 'OK' hyväksy" msgstr "'Ylös/Alas' uusi paikka - 'OK' hyväksy"
msgid "Channel locked (recording)!" msgid "Channel locked (recording)!"
msgstr "Kanava lukittu (tallennus käynnissä)!" msgstr "Kanava lukittu (tallennus käynnissä)!"
msgid "Low disk space!" msgid "Low disk space!"
msgstr "Tallennustila loppumassa!" msgstr "Tallennustila loppumassa!"
@ -1238,20 +1244,20 @@ msgstr "sammutetaanko?"
#, c-format #, c-format
msgid "Plugin %s wakes up in %ld min, continue?" msgid "Plugin %s wakes up in %ld min, continue?"
msgstr "Laajennos %s herää %ld minuutin kuluttua - sammutetaanko?" msgstr "Laajennos %s herää %ld minuutin kuluttua - sammutetaanko?"
msgid "Editing - restart anyway?" msgid "Editing - restart anyway?"
msgstr "Muokkaus kesken - käynnistetäänkö uudelleen?" msgstr "Muokkaus kesken - käynnistetäänkö uudelleen?"
msgid "Recording - restart anyway?" msgid "Recording - restart anyway?"
msgstr "Tallennus kesken - käynnistetäänkö uudelleen?" msgstr "Tallennus kesken - käynnistetäänkö uudelleen?"
msgid "restart anyway?" msgid "restart anyway?"
msgstr "käynnistetäänkö uudelleen?" msgstr "käynnistetäänkö uudelleen?"
#. TRANSLATORS: note the trailing blank! #. TRANSLATORS: note the trailing blank!
msgid "Volume " msgid "Volume "
msgstr "Äänenvoimakkuus " msgstr "Äänenvoimakkuus "
msgid "Classic VDR" msgid "Classic VDR"
msgstr "Klassinen VDR" msgstr "Klassinen VDR"
@ -1292,28 +1298,28 @@ msgid "Upcoming recording!"
msgstr "Tallennus on alkamassa!" msgstr "Tallennus on alkamassa!"
msgid "Pause live video?" msgid "Pause live video?"
msgstr "Pysäytetäänkö lähetys?" msgstr "Pysäytetäänkö lähetys?"
msgid "Recording started" msgid "Recording started"
msgstr "Tallennus aloitettu" msgstr "Tallennus aloitettu"
msgid "VDR will shut down later - press Power to force" msgid "VDR will shut down later - press Power to force"
msgstr "VDR sammuu myöhemmin - pakota virtanäppäimellä" msgstr "VDR sammuu myöhemmin - pakota virtanäppäimellä"
msgid "Press any key to cancel shutdown" msgid "Press any key to cancel shutdown"
msgstr "Peru sammutus painamalla mitä tahansa näppäintä" msgstr "Peru sammutus painamalla mitä tahansa näppäintä"
msgid "Switching primary DVB..." msgid "Switching primary DVB..."
msgstr "Vaihdetaan ensisijaista DVB-sovitinta..." msgstr "Vaihdetaan ensisijaista DVB-sovitinta..."
msgid "Editing process failed!" msgid "Editing process failed!"
msgstr "Muokkaus epäonnistui!" msgstr "Muokkaus epäonnistui!"
msgid "Editing process finished" msgid "Editing process finished"
msgstr "Muokkaus valmis" msgstr "Muokkaus valmis"
msgid "Press any key to cancel restart" msgid "Press any key to cancel restart"
msgstr "Peru uudelleenkäynnistys painamalla mitä tahansa näppäintä" msgstr "Peru uudelleenkäynnistys painamalla mitä tahansa näppäintä"
#, c-format #, c-format
msgid "VDR will shut down in %s minutes" msgid "VDR will shut down in %s minutes"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-02-27 18:14+0100\n" "PO-Revision-Date: 2008-02-27 18:14+0100\n"
"Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n" "Last-Translator: Jean-Claude Repetto <jc@repetto.org>\n"
"Language-Team: French\n" "Language-Team: French\n"
@ -481,6 +481,9 @@ msgstr "Configuration"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Commandes" msgstr "Commandes"
msgid "Key$User0"
msgstr "Utilisateur0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Utilisateur1" msgstr "Utilisateur1"
@ -842,6 +845,9 @@ msgstr "Dossiers d'enregistrements"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Guide des programmes" msgstr "Guide des programmes"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-17 19:00+0100\n" "PO-Revision-Date: 2008-03-17 19:00+0100\n"
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n" "Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
"Language-Team: Croatian\n" "Language-Team: Croatian\n"
@ -477,6 +477,9 @@ msgstr "Postavke"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Naredbe" msgstr "Naredbe"
msgid "Key$User0"
msgstr "Korisnik0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Korisnik1" msgstr "Korisnik1"
@ -838,6 +841,9 @@ msgstr "Imenik za snimke"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG (elektronski programski vodiè)" msgstr "EPG (elektronski programski vodiè)"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-12-01 21:42+0200\n" "PO-Revision-Date: 2007-12-01 21:42+0200\n"
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n" "Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
@ -478,6 +478,9 @@ msgstr "Be
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Parancsok" msgstr "Parancsok"
msgid "Key$User0"
msgstr "Felhasználó0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Felhasználó1" msgstr "Felhasználó1"
@ -839,6 +842,9 @@ msgstr "Felv
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -5,14 +5,14 @@
# Antonio Ospite <ospite@studenti.unina.it>, 2003, 2006 # Antonio Ospite <ospite@studenti.unina.it>, 2003, 2006
# Sean Carlos <seanc@libero.it>, 2005 # Sean Carlos <seanc@libero.it>, 2005
# Nino Gerbino <ngerb@interfree.it>, 2006 # Nino Gerbino <ngerb@interfree.it>, 2006
# Diego Pierotto <vdr-italian@tiscali.it>, 2007, 2008 # Diego Pierotto <vdr-italian@tiscali.it>, 2007, 2008, 2010
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2010-01-31 23:06+0100\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -482,6 +482,9 @@ msgstr "Opzioni"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Comandi" msgstr "Comandi"
msgid "Key$User0"
msgstr "Utente0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Utente1" msgstr "Utente1"
@ -841,6 +844,9 @@ msgid "Setup.OSD$Recording directories"
msgstr "Directory di registrazione" msgstr "Directory di registrazione"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "Cartelle nel menu timer"
msgid "Setup.OSD$Number keys for characters"
msgstr "" msgstr ""
msgid "EPG" msgid "EPG"
@ -996,7 +1002,7 @@ msgid "pause live video"
msgstr "pausa video dal vivo" msgstr "pausa video dal vivo"
msgid "confirm" msgid "confirm"
msgstr "" msgstr "conferma"
msgid "yes" msgid "yes"
msgstr "sì" msgstr "sì"
@ -1053,7 +1059,7 @@ msgid "Setup.Recording$Split edited files"
msgstr "Dividi i file modificati" msgstr "Dividi i file modificati"
msgid "Setup.Recording$Delete timeshift recording" msgid "Setup.Recording$Delete timeshift recording"
msgstr "" msgstr "Elimina registrazione timeshift"
msgid "Replay" msgid "Replay"
msgstr "Riproduzione" msgstr "Riproduzione"
@ -1173,7 +1179,7 @@ msgid "Pausing live video..."
msgstr "Pausa del canale in visione..." msgstr "Pausa del canale in visione..."
msgid "Delete timeshift recording?" msgid "Delete timeshift recording?"
msgstr "" msgstr "Eliminare registrazione timeshift?"
#. TRANSLATORS: note the trailing blank! #. TRANSLATORS: note the trailing blank!
msgid "Jump: " msgid "Jump: "
@ -1192,10 +1198,10 @@ msgid "Editing process already active!"
msgstr "Processo di modifica già attivo!" msgstr "Processo di modifica già attivo!"
msgid "FileNameChars$ abcdefghijklmnopqrstuvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&" msgid "FileNameChars$ abcdefghijklmnopqrstuvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&"
msgstr " aáàbcdeéèfghiìîjklmnoòpqrstuùvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&°" msgstr " aáàbcdeéèfghiíìjklmnoóòpqrstuúùvwxyz0123456789-.,#~\\^$[]|()*+?{}/:%@&°"
msgid "CharMap$ 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabc2\tdef3\tghi4\tjkl5\tmno6\tpqrs7\ttuv8\twxyz9" msgid "CharMap$ 0\t-.,1#~\\^$[]|()*+?{}/:%@&\tabc2\tdef3\tghi4\tjkl5\tmno6\tpqrs7\ttuv8\twxyz9"
msgstr " 0\t-.,1#~\\^$[]|()*+°?{}/:%@&\taàbc2\tdeèf3\tghiì4\tjkl5\tmnoò6\tpqrs7\ttuùv8\twxyz9" msgstr " 0\t-.,1#~\\^$[]|()*+°?{}/:%@&\taáàbc2\tdeéèf3\tghiíì4\tjkl5\tmnoóò6\tpqrs7\ttuúùv8\twxyz9"
msgid "Button$ABC/abc" msgid "Button$ABC/abc"
msgstr "ABC/abc" msgstr "ABC/abc"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.7.12\n" "Project-Id-Version: VDR 1.7.12\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2010-02-22 18:05+0200\n" "PO-Revision-Date: 2010-02-22 18:05+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n" "Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian\n" "Language-Team: Lithuanian\n"
@ -475,6 +475,9 @@ msgstr "Nustatymai"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Komandos" msgstr "Komandos"
msgid "Key$User0"
msgstr "Vartotojas0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Vartotojas1" msgstr "Vartotojas1"
@ -836,6 +839,9 @@ msgstr "Įrašų katalogai"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Elektroninis programų gidas (EPG)" msgstr "Elektroninis programų gidas (EPG)"

1324
po/mk_MK.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n" "PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n" "Last-Translator: Johan Schuring <johan.schuring@vetteblei.nl>\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
@ -479,6 +479,9 @@ msgstr "Instellingen"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Commando's" msgstr "Commando's"
msgid "Key$User0"
msgstr "Gebruiker0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Gebruiker1" msgstr "Gebruiker1"
@ -840,6 +843,9 @@ msgstr "Opname mappen"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2007-08-12 14:17+0200\n" "PO-Revision-Date: 2007-08-12 14:17+0200\n"
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n" "Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
@ -476,6 +476,9 @@ msgstr "Konfigurasjon"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Kommandoer" msgstr "Kommandoer"
msgid "Key$User0"
msgstr ""
msgid "Key$User1" msgid "Key$User1"
msgstr "" msgstr ""
@ -837,6 +840,9 @@ msgstr "Kataloger til opptak"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Programoversikt" msgstr "Programoversikt"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n" "PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Michael Rakowski <mrak@gmx.de>\n" "Last-Translator: Michael Rakowski <mrak@gmx.de>\n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
@ -476,6 +476,9 @@ msgstr "Ustawienia"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Polecenia" msgstr "Polecenia"
msgid "Key$User0"
msgstr "U¿ytkownik 0"
msgid "Key$User1" msgid "Key$User1"
msgstr "U¿ytkownik 1" msgstr "U¿ytkownik 1"
@ -837,6 +840,9 @@ msgstr "Katalogi nagra
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-18 17:04+0100\n" "PO-Revision-Date: 2008-03-18 17:04+0100\n"
"Last-Translator: anonymous\n" "Last-Translator: anonymous\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
@ -475,6 +475,9 @@ msgstr "Configura
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Comandos" msgstr "Comandos"
msgid "Key$User0"
msgstr "Definida0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Definida1" msgstr "Definida1"
@ -836,6 +839,9 @@ msgstr "Directorias de grava
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Guia de programação" msgstr "Guia de programação"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.7.12\n" "Project-Id-Version: VDR 1.7.12\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2010-02-11 13:38+0100\n" "PO-Revision-Date: 2010-02-11 13:38+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n" "Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
"Language-Team: Romanian\n" "Language-Team: Romanian\n"
@ -478,6 +478,9 @@ msgstr "Configura
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Comenzi" msgstr "Comenzi"
msgid "Key$User0"
msgstr "Utilizator0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Utilizator1" msgstr "Utilizator1"
@ -839,6 +842,9 @@ msgstr "Directoare
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-12-15 14:37+0100\n" "PO-Revision-Date: 2008-12-15 14:37+0100\n"
"Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n" "Last-Translator: Oleg Roitburd <oleg@roitburd.de>\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
@ -476,6 +476,9 @@ msgstr "
msgid "Key$Commands" msgid "Key$Commands"
msgstr "ºÞÜÐÝÔë" msgstr "ºÞÜÐÝÔë"
msgid "Key$User0"
msgstr "¿ÞÛì×ÞÒÐâÕÛì0"
msgid "Key$User1" msgid "Key$User1"
msgstr "¿ÞÛì×ÞÒÐâÕÛì1" msgstr "¿ÞÛì×ÞÒÐâÕÛì1"
@ -837,6 +840,9 @@ msgstr "
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "ÂÕÛÕÓØÔ" msgstr "ÂÕÛÕÓØÔ"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2009-09-30 12:50+0100\n" "PO-Revision-Date: 2009-09-30 12:50+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n" "Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak\n" "Language-Team: Slovak\n"
@ -476,6 +476,9 @@ msgstr "Nastavenie"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Príkazy" msgstr "Príkazy"
msgid "Key$User0"
msgstr "U¾ívateµ0"
msgid "Key$User1" msgid "Key$User1"
msgstr "U¾ívateµ1" msgstr "U¾ívateµ1"
@ -837,6 +840,9 @@ msgstr "Zoznam z
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-02-28 19:44+0100\n" "PO-Revision-Date: 2008-02-28 19:44+0100\n"
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n" "Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
"Language-Team: Slovenian\n" "Language-Team: Slovenian\n"
@ -476,6 +476,9 @@ msgstr "Nastavitve"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Ukazi" msgstr "Ukazi"
msgid "Key$User0"
msgstr "Uporabnik0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Uporabnik1" msgstr "Uporabnik1"
@ -837,6 +840,9 @@ msgstr "Direktoriji za posnetke"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Programski vodnik" msgstr "Programski vodnik"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-03-12 18:25+0100\n" "PO-Revision-Date: 2008-03-12 18:25+0100\n"
"Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n" "Last-Translator: Magnus Andersson <svankan@bahnhof.se>\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
@ -478,6 +478,9 @@ msgstr "Inst
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Kommandon" msgstr "Kommandon"
msgid "Key$User0"
msgstr "Användare0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Användare1" msgstr "Användare1"
@ -839,6 +842,9 @@ msgstr "Kataloger f
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2008-02-28 00:33+0100\n" "PO-Revision-Date: 2008-02-28 00:33+0100\n"
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n" "Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
@ -475,6 +475,9 @@ msgstr "Ayarlar"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Komutlar" msgstr "Komutlar"
msgid "Key$User0"
msgstr "Kullanýcý0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Kullanýcý1" msgstr "Kullanýcý1"
@ -836,6 +839,9 @@ msgstr "Kay
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "EPG" msgstr "EPG"

View File

@ -1,14 +1,14 @@
# VDR language source file. # VDR language source file.
# Copyright (C) 2008 Klaus Schmidinger <kls@tvdr.de> # Copyright (C) 2008 Klaus Schmidinger <kls@tvdr.de>
# This file is distributed under the same license as the VDR package. # This file is distributed under the same license as the VDR package.
# Yarema Aka Knedlyk <yupadmin@gmail.com>, 2007, 2008 # Yarema Aka Knedlyk <yupadmin@gmail.com>, 2007, 2008, 2010
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.7.7\n" "Project-Id-Version: VDR 1.7.7\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2009-05-31 13:17+0200\n" "PO-Revision-Date: 2010-04-25 16:35+0200\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n" "Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -34,7 +34,7 @@ msgid "auto"
msgstr "авто" msgstr "авто"
msgid "none" msgid "none"
msgstr "нічого" msgstr "нема"
msgid "Polarization" msgid "Polarization"
msgstr "Поляризація" msgstr "Поляризація"
@ -76,245 +76,245 @@ msgid "Starting EPG scan"
msgstr "Починаю EPG-сканування" msgstr "Починаю EPG-сканування"
msgid "Content$Movie/Drama" msgid "Content$Movie/Drama"
msgstr "" msgstr "Фільм/Драма"
msgid "Content$Detective/Thriller" msgid "Content$Detective/Thriller"
msgstr "" msgstr "Детектив/Тріллер"
msgid "Content$Adventure/Western/War" msgid "Content$Adventure/Western/War"
msgstr "" msgstr "Пригоди/Вестерн/Війна"
msgid "Content$Science Fiction/Fantasy/Horror" msgid "Content$Science Fiction/Fantasy/Horror"
msgstr "" msgstr "Наукова фантастика/Фантастика/Жахи"
msgid "Content$Comedy" msgid "Content$Comedy"
msgstr "" msgstr "Комедія"
msgid "Content$Soap/Melodrama/Folkloric" msgid "Content$Soap/Melodrama/Folkloric"
msgstr "" msgstr "Мильна опера/Мелодрама/Фольклор"
msgid "Content$Romance" msgid "Content$Romance"
msgstr "" msgstr "Романс"
msgid "Content$Serious/Classical/Religious/Historical Movie/Drama" msgid "Content$Serious/Classical/Religious/Historical Movie/Drama"
msgstr "" msgstr "Серйозне/Класика/Релігія/Історія/Драма"
msgid "Content$Adult Movie/Drama" msgid "Content$Adult Movie/Drama"
msgstr "" msgstr "Кіно для дорослих/Драма"
msgid "Content$News/Current Affairs" msgid "Content$News/Current Affairs"
msgstr "" msgstr "Новини/Поточні події"
msgid "Content$News/Weather Report" msgid "Content$News/Weather Report"
msgstr "" msgstr "Новини/Спорт"
msgid "Content$News Magazine" msgid "Content$News Magazine"
msgstr "" msgstr "Журнал новин"
msgid "Content$Documentary" msgid "Content$Documentary"
msgstr "" msgstr "Документальне"
msgid "Content$Discussion/Inverview/Debate" msgid "Content$Discussion/Inverview/Debate"
msgstr "" msgstr "Дискусія/Інтерв’ю/Дебати"
msgid "Content$Show/Game Show" msgid "Content$Show/Game Show"
msgstr "" msgstr "Шоу//Ігри"
msgid "Content$Game Show/Quiz/Contest" msgid "Content$Game Show/Quiz/Contest"
msgstr "" msgstr "Ігрове шоу/Тести"
msgid "Content$Variety Show" msgid "Content$Variety Show"
msgstr "" msgstr "Вар’єте"
msgid "Content$Talk Show" msgid "Content$Talk Show"
msgstr "" msgstr "Ток шоу"
msgid "Content$Sports" msgid "Content$Sports"
msgstr "" msgstr "Спорт"
msgid "Content$Special Event" msgid "Content$Special Event"
msgstr "" msgstr "Спеціальні події"
msgid "Content$Sport Magazine" msgid "Content$Sport Magazine"
msgstr "" msgstr "Спортивний журнал"
msgid "Content$Football/Soccer" msgid "Content$Football/Soccer"
msgstr "" msgstr "Футбол"
msgid "Content$Tennis/Squash" msgid "Content$Tennis/Squash"
msgstr "" msgstr "Теніс/Сквош"
msgid "Content$Team Sports" msgid "Content$Team Sports"
msgstr "" msgstr "Спортивні команди"
msgid "Content$Athletics" msgid "Content$Athletics"
msgstr "" msgstr "Атлетика"
msgid "Content$Motor Sport" msgid "Content$Motor Sport"
msgstr "" msgstr "Моторний спорт"
msgid "Content$Water Sport" msgid "Content$Water Sport"
msgstr "" msgstr "Водний спорт"
msgid "Content$Winter Sports" msgid "Content$Winter Sports"
msgstr "" msgstr "Зимовий спорт"
msgid "Content$Equestrian" msgid "Content$Equestrian"
msgstr "" msgstr "Кінний спорт"
msgid "Content$Martial Sports" msgid "Content$Martial Sports"
msgstr "" msgstr "Військовий спорт"
msgid "Content$Children's/Youth Programme" msgid "Content$Children's/Youth Programme"
msgstr "" msgstr "Дитяче/Молодіжні програми"
msgid "Content$Pre-school Children's Programme" msgid "Content$Pre-school Children's Programme"
msgstr "" msgstr "Дошкільні дитячі програми"
msgid "Content$Entertainment Programme for 6 to 14" msgid "Content$Entertainment Programme for 6 to 14"
msgstr "" msgstr "Програми для дітей від 6 до 14 років"
msgid "Content$Entertainment Programme for 10 to 16" msgid "Content$Entertainment Programme for 10 to 16"
msgstr "" msgstr "Програми для дітей від 10 до 16 років"
msgid "Content$Informational/Educational/School Programme" msgid "Content$Informational/Educational/School Programme"
msgstr "" msgstr "Інформаційні/Навчальні/Шкільна програма"
msgid "Content$Cartoons/Puppets" msgid "Content$Cartoons/Puppets"
msgstr "" msgstr "Мультфільми"
msgid "Content$Music/Ballet/Dance" msgid "Content$Music/Ballet/Dance"
msgstr "" msgstr "Музика/Балет/Танці"
msgid "Content$Rock/Pop" msgid "Content$Rock/Pop"
msgstr "" msgstr "Рок/Поп"
msgid "Content$Serious/Classical Music" msgid "Content$Serious/Classical Music"
msgstr "" msgstr "Серйозна/Класична музика"
msgid "Content$Folk/Tradional Music" msgid "Content$Folk/Tradional Music"
msgstr "" msgstr "Фльк/Традиційна музика"
msgid "Content$Jazz" msgid "Content$Jazz"
msgstr "" msgstr "Джаз"
msgid "Content$Musical/Opera" msgid "Content$Musical/Opera"
msgstr "" msgstr "Мюзикл/Опера"
msgid "Content$Ballet" msgid "Content$Ballet"
msgstr "" msgstr "Балет"
msgid "Content$Arts/Culture" msgid "Content$Arts/Culture"
msgstr "" msgstr "Мистецтво/Культура"
msgid "Content$Performing Arts" msgid "Content$Performing Arts"
msgstr "" msgstr "Дресирування"
msgid "Content$Fine Arts" msgid "Content$Fine Arts"
msgstr "" msgstr "Образотворче мистецтво"
msgid "Content$Religion" msgid "Content$Religion"
msgstr "" msgstr "Релігія"
msgid "Content$Popular Culture/Traditional Arts" msgid "Content$Popular Culture/Traditional Arts"
msgstr "" msgstr "Популярна культура/Традиційне мистецтво"
msgid "Content$Literature" msgid "Content$Literature"
msgstr "" msgstr "Література"
msgid "Content$Film/Cinema" msgid "Content$Film/Cinema"
msgstr "" msgstr "Кінофільм"
msgid "Content$Experimental Film/Video" msgid "Content$Experimental Film/Video"
msgstr "" msgstr "Експериментальний фільм/Відео"
msgid "Content$Broadcasting/Press" msgid "Content$Broadcasting/Press"
msgstr "" msgstr "Трансляція/Преса"
msgid "Content$New Media" msgid "Content$New Media"
msgstr "" msgstr "Нові медія"
msgid "Content$Arts/Culture Magazine" msgid "Content$Arts/Culture Magazine"
msgstr "" msgstr "Мистецтво/Культурний журнал"
msgid "Content$Fashion" msgid "Content$Fashion"
msgstr "" msgstr "Мода"
msgid "Content$Social/Political/Economics" msgid "Content$Social/Political/Economics"
msgstr "" msgstr "Соцільне/Політичне/Економічне"
msgid "Content$Magazine/Report/Documentary" msgid "Content$Magazine/Report/Documentary"
msgstr "" msgstr "Журнал/Рапорт/Документальне"
msgid "Content$Economics/Social Advisory" msgid "Content$Economics/Social Advisory"
msgstr "" msgstr "Економіка/Соціальний порадник"
msgid "Content$Remarkable People" msgid "Content$Remarkable People"
msgstr "" msgstr "Незвичайні люди"
msgid "Content$Education/Science/Factual" msgid "Content$Education/Science/Factual"
msgstr "" msgstr "Навчання/Наука/Факти"
msgid "Content$Nature/Animals/Environment" msgid "Content$Nature/Animals/Environment"
msgstr "" msgstr "Природа/Тварини/Навколишнє оточення"
msgid "Content$Technology/Natural Sciences" msgid "Content$Technology/Natural Sciences"
msgstr "" msgstr "Технологія/Природничі науки"
msgid "Content$Medicine/Physiology/Psychology" msgid "Content$Medicine/Physiology/Psychology"
msgstr "" msgstr "Медицина/Фізіологія/Психологія"
msgid "Content$Foreign Countries/Expeditions" msgid "Content$Foreign Countries/Expeditions"
msgstr "" msgstr "Зарубіжні країни/Експедиції"
msgid "Content$Social/Spiritual Sciences" msgid "Content$Social/Spiritual Sciences"
msgstr "" msgstr "Соціальна/Духовна наука"
msgid "Content$Further Education" msgid "Content$Further Education"
msgstr "" msgstr "Дальше навчання"
msgid "Content$Languages" msgid "Content$Languages"
msgstr "" msgstr "Мови"
msgid "Content$Leisure/Hobbies" msgid "Content$Leisure/Hobbies"
msgstr "" msgstr "Відпочинок/Хоббі"
msgid "Content$Tourism/Travel" msgid "Content$Tourism/Travel"
msgstr "" msgstr "Туризм/Подорожі"
msgid "Content$Handicraft" msgid "Content$Handicraft"
msgstr "" msgstr "Ремісниче"
msgid "Content$Motoring" msgid "Content$Motoring"
msgstr "" msgstr "Автомобільна справа"
msgid "Content$Fitness & Health" msgid "Content$Fitness & Health"
msgstr "" msgstr "Фітнес і здоров’я"
msgid "Content$Cooking" msgid "Content$Cooking"
msgstr "" msgstr "Готування їжі"
msgid "Content$Advertisement/Shopping" msgid "Content$Advertisement/Shopping"
msgstr "" msgstr "Реклама/Закупи"
msgid "Content$Gardening" msgid "Content$Gardening"
msgstr "" msgstr "Сад/Город"
msgid "Content$Original Language" msgid "Content$Original Language"
msgstr "" msgstr "Оригінальна мова"
msgid "Content$Black & White" msgid "Content$Black & White"
msgstr "" msgstr "Чорне і біле"
msgid "Content$Unpublished" msgid "Content$Unpublished"
msgstr "" msgstr "Неопубліковане"
msgid "Content$Live Broadcast" msgid "Content$Live Broadcast"
msgstr "" msgstr "Трансляція"
#, c-format #, c-format
msgid "ParentalRating$from %d" msgid "ParentalRating$from %d"
msgstr "" msgstr "з %d"
msgid "No title" msgid "No title"
msgstr "Без назви" msgstr "Без назви"
@ -337,7 +337,7 @@ msgid "RC code detected!"
msgstr "Визначено код пульта!" msgstr "Визначено код пульта!"
msgid "Do not press any key..." msgid "Do not press any key..."
msgstr "Не натискайте кнопки..." msgstr "Не натискайте жодної кнопки..."
msgid "Phase 2: Learning specific key codes" msgid "Phase 2: Learning specific key codes"
msgstr "Крок 2: Приписування кодів для відповідних кнопок" msgstr "Крок 2: Приписування кодів для відповідних кнопок"
@ -458,7 +458,7 @@ msgid "Key$Subtitles"
msgstr "Субтитри" msgstr "Субтитри"
msgid "Key$Schedule" msgid "Key$Schedule"
msgstr "Телегід" msgstr "Програма"
msgid "Key$Channels" msgid "Key$Channels"
msgstr "Канали" msgstr "Канали"
@ -475,6 +475,9 @@ msgstr "Налаштування"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "Команди" msgstr "Команди"
msgid "Key$User0"
msgstr "Користувач0"
msgid "Key$User1" msgid "Key$User1"
msgstr "Користувач1" msgstr "Користувач1"
@ -575,7 +578,7 @@ msgid "Button$Delete"
msgstr "Видалити" msgstr "Видалити"
msgid "Button$Mark" msgid "Button$Mark"
msgstr "Перемістити" msgstr "Помітити"
msgid "Channel is being used by a timer!" msgid "Channel is being used by a timer!"
msgstr "Канал зайнятий таймером!" msgstr "Канал зайнятий таймером!"
@ -584,29 +587,29 @@ msgid "Delete channel?"
msgstr "Видалити канал?" msgstr "Видалити канал?"
msgid "Edit folder" msgid "Edit folder"
msgstr "" msgstr "Редагувати каталог"
msgid "New folder" msgid "New folder"
msgstr "" msgstr "Новий каталог"
msgid "Sub folder" msgid "Sub folder"
msgstr "" msgstr "Підкаталог"
msgid "Folder name already exists!" msgid "Folder name already exists!"
msgstr "" msgstr "Назва каталогу вже існує!"
#, c-format #, c-format
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr "Назва каталогу не повинна містити '%c'!"
msgid "Button$Select" msgid "Button$Select"
msgstr "" msgstr "Вибрати"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr "Видалити каталог і всі підкаталоги?"
msgid "Delete folder?" msgid "Delete folder?"
msgstr "" msgstr "Видалити каталог?"
msgid "Edit timer" msgid "Edit timer"
msgstr "Налаштування таймера" msgstr "Налаштування таймера"
@ -639,13 +642,13 @@ msgid "File"
msgstr "Файл" msgstr "Файл"
msgid "Button$Folder" msgid "Button$Folder"
msgstr "" msgstr "Каталог"
msgid "First day" msgid "First day"
msgstr "Перший день" msgstr "Перший день"
msgid "Select folder" msgid "Select folder"
msgstr "" msgstr "Вибрати каталог"
msgid "Timers" msgid "Timers"
msgstr "Таймери" msgstr "Таймери"
@ -708,7 +711,7 @@ msgstr "Всі передачі - всі канали"
#, c-format #, c-format
msgid "Please enter %d digits!" msgid "Please enter %d digits!"
msgstr "Натисніть %d цифри!" msgstr "Введіть %d цифри!"
msgid "CAM not responding!" msgid "CAM not responding!"
msgstr "CAM не відповідає!" msgstr "CAM не відповідає!"
@ -753,7 +756,7 @@ msgid "always"
msgstr "завжди" msgstr "завжди"
msgid "OSD" msgid "OSD"
msgstr "OSD меню" msgstr "Меню"
msgid "Setup.OSD$Language" msgid "Setup.OSD$Language"
msgstr "Мова" msgstr "Мова"
@ -777,10 +780,10 @@ msgid "Setup.OSD$Height (%)"
msgstr "Висота (%)" msgstr "Висота (%)"
msgid "Setup.OSD$Message time (s)" msgid "Setup.OSD$Message time (s)"
msgstr "Тривалість показу повідомлень (сек)" msgstr "Час показу повідомлень (сек)"
msgid "Setup.OSD$Use small font" msgid "Setup.OSD$Use small font"
msgstr "Використовувати малий фонт" msgstr "Викор. малий фонт"
msgid "Setup.OSD$Anti-alias" msgid "Setup.OSD$Anti-alias"
msgstr "Згладжування фонтів" msgstr "Згладжування фонтів"
@ -795,7 +798,7 @@ msgid "Setup.OSD$Fixed font"
msgstr "Фіксований фонт" msgstr "Фіксований фонт"
msgid "Setup.OSD$Default font size (%)" msgid "Setup.OSD$Default font size (%)"
msgstr "Размір фонта для меню (%)" msgstr "Розмір типового фонта (%)"
msgid "Setup.OSD$Small font size (%)" msgid "Setup.OSD$Small font size (%)"
msgstr "Размір малого фонта (%)" msgstr "Размір малого фонта (%)"
@ -804,7 +807,7 @@ msgid "Setup.OSD$Fixed font size (%)"
msgstr "Размір фіксованого фонта (%)" msgstr "Размір фіксованого фонта (%)"
msgid "Setup.OSD$Channel info position" msgid "Setup.OSD$Channel info position"
msgstr "Положення вікна інформації про канал" msgstr "Положення інформації про канал"
msgid "bottom" msgid "bottom"
msgstr "внизу" msgstr "внизу"
@ -816,10 +819,10 @@ msgid "Setup.OSD$Channel info time (s)"
msgstr "Показ інформації про канал (сек)" msgstr "Показ інформації про канал (сек)"
msgid "Setup.OSD$Info on channel switch" msgid "Setup.OSD$Info on channel switch"
msgstr "Показ канал-інфо при переключанні " msgstr "Інфо при переключанні каналу"
msgid "Setup.OSD$Timeout requested channel info" msgid "Setup.OSD$Timeout requested channel info"
msgstr "Інформацію про канал закрити" msgstr "Час очікування інфо про канал"
msgid "Setup.OSD$Scroll pages" msgid "Setup.OSD$Scroll pages"
msgstr "Прокрутка сторінок меню" msgstr "Прокрутка сторінок меню"
@ -834,19 +837,22 @@ msgid "Setup.OSD$Recording directories"
msgstr "Каталоги зберігання записів" msgstr "Каталоги зберігання записів"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "Каталоги в меню таймера"
msgid "Setup.OSD$Number keys for characters"
msgstr "" msgstr ""
msgid "EPG" msgid "EPG"
msgstr "Телегід" msgstr "Телегід (EPG)"
msgid "Button$Scan" msgid "Button$Scan"
msgstr "Сканувати" msgstr "Сканувати"
msgid "Setup.EPG$EPG scan timeout (h)" msgid "Setup.EPG$EPG scan timeout (h)"
msgstr "Затримка сканування телегіда (ч)" msgstr "Затримка сканування телегіда (г)"
msgid "Setup.EPG$EPG bugfix level" msgid "Setup.EPG$EPG bugfix level"
msgstr "Рівень корекції помилок" msgstr "Рівень корекції помилок EPG"
msgid "Setup.EPG$EPG linger time (min)" msgid "Setup.EPG$EPG linger time (min)"
msgstr "Зберігання застарілих даних (хв)" msgstr "Зберігання застарілих даних (хв)"
@ -855,7 +861,7 @@ msgid "Setup.EPG$Set system time"
msgstr "Встановити системий час" msgstr "Встановити системий час"
msgid "Setup.EPG$Use time from transponder" msgid "Setup.EPG$Use time from transponder"
msgstr "Використати час транспондера" msgstr "Викор. час з транспондера"
#. TRANSLATORS: note the plural! #. TRANSLATORS: note the plural!
msgid "Setup.EPG$Preferred languages" msgid "Setup.EPG$Preferred languages"
@ -905,10 +911,10 @@ msgid "Setup.DVB$Video display format"
msgstr "Формат зображення відео" msgstr "Формат зображення відео"
msgid "Setup.DVB$Use Dolby Digital" msgid "Setup.DVB$Use Dolby Digital"
msgstr "Використовувати Dolby Digital" msgstr "Викор. Dolby Digital"
msgid "Setup.DVB$Update channels" msgid "Setup.DVB$Update channels"
msgstr "Оновлювати настройки каналів" msgstr "Оновлювати канали"
msgid "Setup.DVB$Audio languages" msgid "Setup.DVB$Audio languages"
msgstr "Бажані мови (звук)" msgstr "Бажані мови (звук)"
@ -974,7 +980,7 @@ msgid "Can't open CAM menu!"
msgstr "Меню CAM-модуля недоступне!" msgstr "Меню CAM-модуля недоступне!"
msgid "CAM is in use - really reset?" msgid "CAM is in use - really reset?"
msgstr "CAM використовується - дійсно перезавантажити?" msgstr "CAM використовується - дійсно перезапустити?"
msgid "Can't reset CAM!" msgid "Can't reset CAM!"
msgstr "Помилка перезапуску CAM-модуля!" msgstr "Помилка перезапуску CAM-модуля!"
@ -989,7 +995,7 @@ msgid "pause live video"
msgstr "призупинити перегляд" msgstr "призупинити перегляд"
msgid "confirm" msgid "confirm"
msgstr "" msgstr "підтвердити"
msgid "yes" msgid "yes"
msgstr "так" msgstr "так"
@ -1022,10 +1028,10 @@ msgid "Setup.Recording$Pause lifetime (d)"
msgstr "Зберігання відкладеного перегляду (дні)" msgstr "Зберігання відкладеного перегляду (дні)"
msgid "Setup.Recording$Use episode name" msgid "Setup.Recording$Use episode name"
msgstr "Використовувати назву епізоду" msgstr "Викор. назву епізоду"
msgid "Setup.Recording$Use VPS" msgid "Setup.Recording$Use VPS"
msgstr "Використовувати сигнали VPS" msgstr "Викор. VPS"
msgid "Setup.Recording$VPS margin (s)" msgid "Setup.Recording$VPS margin (s)"
msgstr "Буферний час VPS (сек)" msgstr "Буферний час VPS (сек)"
@ -1043,10 +1049,10 @@ msgid "Setup.Recording$Max. video file size (MB)"
msgstr "Макс. размір відеофайлу (Мб)" msgstr "Макс. размір відеофайлу (Мб)"
msgid "Setup.Recording$Split edited files" msgid "Setup.Recording$Split edited files"
msgstr "Ділити відредаговані файли" msgstr "Поділити відредаговані файли"
msgid "Setup.Recording$Delete timeshift recording" msgid "Setup.Recording$Delete timeshift recording"
msgstr "" msgstr "Видалити записи з зсувом по часу"
msgid "Replay" msgid "Replay"
msgstr "Перегляд" msgstr "Перегляд"
@ -1058,7 +1064,7 @@ msgid "Setup.Replay$Show replay mode"
msgstr "Віображати режим перегляду" msgstr "Віображати режим перегляду"
msgid "Setup.Replay$Resume ID" msgid "Setup.Replay$Resume ID"
msgstr "ID перегляду" msgstr "ID продовження"
msgid "Miscellaneous" msgid "Miscellaneous"
msgstr "Різне" msgstr "Різне"
@ -1088,7 +1094,7 @@ msgid "Setup.Miscellaneous$Initial volume"
msgstr "Гучність при включенні" msgstr "Гучність при включенні"
msgid "Setup.Miscellaneous$Channels wrap" msgid "Setup.Miscellaneous$Channels wrap"
msgstr "" msgstr "Кінець каналів"
msgid "Setup.Miscellaneous$Emergency exit" msgid "Setup.Miscellaneous$Emergency exit"
msgstr "Аварійний вихід" msgstr "Аварійний вихід"
@ -1136,13 +1142,13 @@ msgstr "Продовжити"
#. TRANSLATORS: note the leading blank! #. TRANSLATORS: note the leading blank!
msgid " Cancel editing" msgid " Cancel editing"
msgstr " Перервати монтаж запису" msgstr " Перервати монтаж"
msgid "Stop recording?" msgid "Stop recording?"
msgstr "Припинити запис?" msgstr "Припинити запис?"
msgid "Cancel editing?" msgid "Cancel editing?"
msgstr "Перервати редактування?" msgstr "Перервати монтаж?"
msgid "No audio available!" msgid "No audio available!"
msgstr "Відсутній звук!" msgstr "Відсутній звук!"
@ -1166,7 +1172,7 @@ msgid "Pausing live video..."
msgstr "Режим відкладеного перегляду..." msgstr "Режим відкладеного перегляду..."
msgid "Delete timeshift recording?" msgid "Delete timeshift recording?"
msgstr "" msgstr "Видалити запис з часовим зсувом?"
#. TRANSLATORS: note the trailing blank! #. TRANSLATORS: note the trailing blank!
msgid "Jump: " msgid "Jump: "
@ -1212,10 +1218,10 @@ msgid "Low disk space!"
msgstr "Недостатньо місця на диску!" msgstr "Недостатньо місця на диску!"
msgid "Regenerating index file" msgid "Regenerating index file"
msgstr "" msgstr "Регенерація файлу індексів"
msgid "Index file regeneration complete" msgid "Index file regeneration complete"
msgstr "" msgstr "Регенерацію файлу індексу завершено"
msgid "Can't shutdown - option '-s' not given!" msgid "Can't shutdown - option '-s' not given!"
msgstr "Виключенння неможливе - не задано параметр '-s'!" msgstr "Виключенння неможливе - не задано параметр '-s'!"
@ -1286,10 +1292,10 @@ msgid "Sunday"
msgstr "Неділя" msgstr "Неділя"
msgid "Upcoming recording!" msgid "Upcoming recording!"
msgstr "Запис скоро почнеться" msgstr "Запис скоро почнеться!"
msgid "Pause live video?" msgid "Pause live video?"
msgstr "Режим відкладеного перегляду..." msgstr "Призупинити перегляд?"
msgid "Recording started" msgid "Recording started"
msgstr "Запис почався" msgstr "Запис почався"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 1.6.0\n" "Project-Id-Version: VDR 1.6.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2010-03-12 16:49+0100\n" "POT-Creation-Date: 2010-06-06 12:52+0200\n"
"PO-Revision-Date: 2009-09-23 23:50+0800\n" "PO-Revision-Date: 2009-09-23 23:50+0800\n"
"Last-Translator: Nan Feng <nfgx@21cn.com>\n" "Last-Translator: Nan Feng <nfgx@21cn.com>\n"
"Language-Team: Chinese\n" "Language-Team: Chinese\n"
@ -478,6 +478,9 @@ msgstr "设置"
msgid "Key$Commands" msgid "Key$Commands"
msgstr "命令" msgstr "命令"
msgid "Key$User0"
msgstr "用户0"
msgid "Key$User1" msgid "Key$User1"
msgstr "用户1" msgstr "用户1"
@ -839,6 +842,9 @@ msgstr "录像目录"
msgid "Setup.OSD$Folders in timer menu" msgid "Setup.OSD$Folders in timer menu"
msgstr "" msgstr ""
msgid "Setup.OSD$Number keys for characters"
msgstr ""
msgid "EPG" msgid "EPG"
msgstr "电子节目单设置" msgstr "电子节目单设置"

43
remux.c
View File

@ -1,10 +1,10 @@
/* /*
* remux.h: Tools for detecting frames and handling PAT/PMT * remux.c: Tools for detecting frames and handling PAT/PMT
* *
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: remux.c 2.42 2010/02/28 14:42:07 kls Exp $ * $Id: remux.c 2.47 2010/06/05 13:32:15 kls Exp $
*/ */
#include "remux.h" #include "remux.h"
@ -188,10 +188,10 @@ int cPatPmtGenerator::MakeStream(uchar *Target, uchar Type, int Pid)
return i; return i;
} }
int cPatPmtGenerator::MakeAC3Descriptor(uchar *Target) int cPatPmtGenerator::MakeAC3Descriptor(uchar *Target, uchar Type)
{ {
int i = 0; int i = 0;
Target[i++] = SI::AC3DescriptorTag; Target[i++] = Type;
Target[i++] = 0x01; // length Target[i++] = 0x01; // length
Target[i++] = 0x00; Target[i++] = 0x00;
IncEsInfoLength(i); IncEsInfoLength(i);
@ -219,11 +219,17 @@ int cPatPmtGenerator::MakeLanguageDescriptor(uchar *Target, const char *Language
{ {
int i = 0; int i = 0;
Target[i++] = SI::ISO639LanguageDescriptorTag; Target[i++] = SI::ISO639LanguageDescriptorTag;
Target[i++] = 0x04; // length int Length = i++;
Target[i++] = *Language++; Target[Length] = 0x00; // length
Target[i++] = *Language++; for (const char *End = Language + strlen(Language); Language < End; ) {
Target[i++] = *Language++; Target[i++] = *Language++;
Target[i++] = 0x01; // audio type Target[i++] = *Language++;
Target[i++] = *Language++;
Target[i++] = 0x01; // audio type
Target[Length] += 0x04; // length
if (*Language == '+')
Language++;
}
IncEsInfoLength(i); IncEsInfoLength(i);
return i; return i;
} }
@ -315,15 +321,13 @@ void cPatPmtGenerator::GeneratePmt(const cChannel *Channel)
if (Vpid) if (Vpid)
i += MakeStream(buf + i, Channel->Vtype(), Vpid); i += MakeStream(buf + i, Channel->Vtype(), Vpid);
for (int n = 0; Channel->Apid(n); n++) { for (int n = 0; Channel->Apid(n); n++) {
i += MakeStream(buf + i, 0x04, Channel->Apid(n)); i += MakeStream(buf + i, Channel->Atype(n), Channel->Apid(n));
const char *Alang = Channel->Alang(n); const char *Alang = Channel->Alang(n);
i += MakeLanguageDescriptor(buf + i, Alang); i += MakeLanguageDescriptor(buf + i, Alang);
if (Alang[3] == '+')
i += MakeLanguageDescriptor(buf + i, Alang + 3);
} }
for (int n = 0; Channel->Dpid(n); n++) { for (int n = 0; Channel->Dpid(n); n++) {
i += MakeStream(buf + i, 0x06, Channel->Dpid(n)); i += MakeStream(buf + i, 0x06, Channel->Dpid(n));
i += MakeAC3Descriptor(buf + i); i += MakeAC3Descriptor(buf + i, Channel->Dtype(n));
i += MakeLanguageDescriptor(buf + i, Channel->Dlang(n)); i += MakeLanguageDescriptor(buf + i, Channel->Dlang(n));
} }
for (int n = 0; Channel->Spid(n); n++) { for (int n = 0; Channel->Spid(n); n++) {
@ -506,6 +510,8 @@ void cPatPmtParser::ParsePmt(const uchar *Data, int Length)
break; break;
case 0x03: // STREAMTYPE_11172_AUDIO case 0x03: // STREAMTYPE_11172_AUDIO
case 0x04: // STREAMTYPE_13818_AUDIO case 0x04: // STREAMTYPE_13818_AUDIO
case 0x0F: // ISO/IEC 13818-7 Audio with ADTS transport sytax
case 0x11: // ISO/IEC 14496-3 Audio with LATM transport syntax
{ {
if (NumApids < MAXAPIDS) { if (NumApids < MAXAPIDS) {
apids[NumApids] = stream.getPid(); apids[NumApids] = stream.getPid();
@ -546,13 +552,16 @@ void cPatPmtParser::ParsePmt(const uchar *Data, int Length)
case 0x06: // STREAMTYPE_13818_PES_PRIVATE case 0x06: // STREAMTYPE_13818_PES_PRIVATE
{ {
int dpid = 0; int dpid = 0;
int dtype = 0;
char lang[MAXLANGCODE1] = ""; char lang[MAXLANGCODE1] = "";
SI::Descriptor *d; SI::Descriptor *d;
for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) { for (SI::Loop::Iterator it; (d = stream.streamDescriptors.getNext(it)); ) {
switch (d->getDescriptorTag()) { switch (d->getDescriptorTag()) {
case SI::AC3DescriptorTag: case SI::AC3DescriptorTag:
case SI::EnhancedAC3DescriptorTag:
dbgpatpmt(" AC3"); dbgpatpmt(" AC3");
dpid = stream.getPid(); dpid = stream.getPid();
dtype = d->getDescriptorTag();
break; break;
case SI::SubtitlingDescriptorTag: case SI::SubtitlingDescriptorTag:
dbgpatpmt(" subtitling"); dbgpatpmt(" subtitling");
@ -599,7 +608,7 @@ void cPatPmtParser::ParsePmt(const uchar *Data, int Length)
if (dpid) { if (dpid) {
if (NumDpids < MAXDPIDS) { if (NumDpids < MAXDPIDS) {
dpids[NumDpids] = dpid; dpids[NumDpids] = dpid;
dtypes[NumDpids] = stream.getStreamType(); dtypes[NumDpids] = dtype;
strn0cpy(dlangs[NumDpids], lang, sizeof(dlangs[NumDpids])); strn0cpy(dlangs[NumDpids], lang, sizeof(dlangs[NumDpids]));
if (updatePrimaryDevice && Setup.UseDolbyDigital) if (updatePrimaryDevice && Setup.UseDolbyDigital)
cDevice::PrimaryDevice()->SetAvailableTrack(ttDolby, NumDpids, dpid, lang); cDevice::PrimaryDevice()->SetAvailableTrack(ttDolby, NumDpids, dpid, lang);
@ -659,6 +668,10 @@ void cTsToPes::PutTs(const uchar *Data, int Length)
if (length + Length > size) { if (length + Length > size) {
size = max(KILOBYTE(2), length + Length); size = max(KILOBYTE(2), length + Length);
data = (uchar *)realloc(data, size); data = (uchar *)realloc(data, size);
if (!data) {
Reset();
return;
}
} }
memcpy(data + length, Data, Length); memcpy(data + length, Data, Length);
length += Length; length += Length;
@ -817,7 +830,7 @@ int cFrameDetector::Analyze(const uchar *Data, int Length)
if (synced && Processed) if (synced && Processed)
return Processed; return Processed;
if (Length < MIN_TS_PACKETS_FOR_FRAME_DETECTOR * TS_SIZE) if (Length < MIN_TS_PACKETS_FOR_FRAME_DETECTOR * TS_SIZE)
return 0; // need more data, in case the frame type is not stored in the first TS packet return Processed; // need more data, in case the frame type is not stored in the first TS packet
if (!frameDuration) { if (!frameDuration) {
// frame duration unknown, so collect a sequence of PTS values: // frame duration unknown, so collect a sequence of PTS values:
if (numPtsValues < MaxPtsValues && numIFrames < 2) { // collect a sequence containing at least two I-frames if (numPtsValues < MaxPtsValues && numIFrames < 2) { // collect a sequence containing at least two I-frames

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: remux.h 2.24 2010/01/29 16:51:26 kls Exp $ * $Id: remux.h 2.26 2010/06/05 13:27:55 kls Exp $
*/ */
#ifndef __REMUX_H #ifndef __REMUX_H
@ -84,7 +84,8 @@ inline bool TsIsScrambled(const uchar *p)
inline int TsPayloadOffset(const uchar *p) inline int TsPayloadOffset(const uchar *p)
{ {
return (p[3] & TS_ADAPT_FIELD_EXISTS) ? p[4] + 5 : 4; int o = (p[3] & TS_ADAPT_FIELD_EXISTS) ? p[4] + 5 : 4;
return o <= TS_SIZE ? o : TS_SIZE;
} }
inline int TsGetPayload(const uchar **p) inline int TsGetPayload(const uchar **p)
@ -168,7 +169,7 @@ private:
void IncEsInfoLength(int Length); void IncEsInfoLength(int Length);
protected: protected:
int MakeStream(uchar *Target, uchar Type, int Pid); int MakeStream(uchar *Target, uchar Type, int Pid);
int MakeAC3Descriptor(uchar *Target); int MakeAC3Descriptor(uchar *Target, uchar Type);
int MakeSubtitlingDescriptor(uchar *Target, const char *Language, uchar SubtitlingType, uint16_t CompositionPageId, uint16_t AncillaryPageId); int MakeSubtitlingDescriptor(uchar *Target, const char *Language, uchar SubtitlingType, uint16_t CompositionPageId, uint16_t AncillaryPageId);
int MakeLanguageDescriptor(uchar *Target, const char *Language); int MakeLanguageDescriptor(uchar *Target, const char *Language);
int MakeCRC(uchar *Target, const uchar *Data, int Length); int MakeCRC(uchar *Target, const uchar *Data, int Length);

3
sdt.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: sdt.c 2.4 2009/12/23 16:02:47 kls Exp $ * $Id: sdt.c 2.5 2010/05/16 14:23:21 kls Exp $
*/ */
#include "sdt.h" #include "sdt.h"
@ -55,6 +55,7 @@ void cSdtFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length
case 0x02: // digital radio sound service case 0x02: // digital radio sound service
case 0x04: // NVOD reference service case 0x04: // NVOD reference service
case 0x05: // NVOD time-shifted service case 0x05: // NVOD time-shifted service
case 0x16: // digital SD television service
case 0x19: // digital HD television service case 0x19: // digital HD television service
{ {
char NameBuf[Utf8BufSize(1024)]; char NameBuf[Utf8BufSize(1024)];

View File

@ -7,13 +7,13 @@ $Usage = qq{
Usage: $0 options command... Usage: $0 options command...
Options: -d hostname destination hostname (default: localhost) Options: -d hostname destination hostname (default: localhost)
-p port SVDRP port number (default: 2001) -p port SVDRP port number (default: 6419)
}; };
die $Usage if (!$ARGV[0] || !getopts("d:p:")); die $Usage if (!$ARGV[0] || !getopts("d:p:"));
$Dest = $opt_d || "localhost"; $Dest = $opt_d || "localhost";
$Port = $opt_p || 2001; $Port = $opt_p || 6419;
$Cmd = "@ARGV" || Error("missing command"); $Cmd = "@ARGV" || Error("missing command");
$Timeout = 10; # max. seconds to wait for response $Timeout = 10; # max. seconds to wait for response

6
vdr.1
View File

@ -8,7 +8,7 @@
.\" License as specified in the file COPYING that comes with the .\" License as specified in the file COPYING that comes with the
.\" vdr distribution. .\" vdr distribution.
.\" .\"
.\" $Id: vdr.1 2.4 2010/01/02 12:08:40 kls Exp $ .\" $Id: vdr.1 2.5 2010/04/02 12:22:08 kls Exp $
.\" .\"
.TH vdr 1 "10 Feb 2008" "1.6" "Video Disk Recorder" .TH vdr 1 "10 Feb 2008" "1.6" "Video Disk Recorder"
.SH NAME .SH NAME
@ -37,7 +37,7 @@ It can be controlled by the PC keyboard, a home built "Remote Control Unit"
(RCU) or the "Linux Infrared Remote Control" (LIRC). (RCU) or the "Linux Infrared Remote Control" (LIRC).
Remote access is possible via the "Simple Video Disk Recorder Protocol" (SVDRP), Remote access is possible via the "Simple Video Disk Recorder Protocol" (SVDRP),
which can be accessed on port 2001, for instance by \fBtelnet\fR. which can be accessed on port 6419, for instance by \fBtelnet\fR.
.SH OPTIONS .SH OPTIONS
.TP .TP
.BI \-a\ cmd ,\ \-\-audio= cmd .BI \-a\ cmd ,\ \-\-audio= cmd
@ -124,7 +124,7 @@ Don't use the keyboard as an input device.
.TP .TP
.BI \-p\ port ,\ \-\-port= port .BI \-p\ port ,\ \-\-port= port
Use \fIport\fR for SVDRP. A value of \fB0\fR turns off SVDRP. Use \fIport\fR for SVDRP. A value of \fB0\fR turns off SVDRP.
The default SVDRP port is \fB2001\fR. The default SVDRP port is \fB6419\fR.
You need to edit the file \fIsvdrphosts.conf\fR in order to enable You need to edit the file \fIsvdrphosts.conf\fR in order to enable
access to the SVDRP port. access to the SVDRP port.
.TP .TP

13
vdr.5
View File

@ -8,7 +8,7 @@
.\" License as specified in the file COPYING that comes with the .\" License as specified in the file COPYING that comes with the
.\" vdr distribution. .\" vdr distribution.
.\" .\"
.\" $Id: vdr.5 2.17 2010/03/06 14:04:54 kls Exp $ .\" $Id: vdr.5 2.19 2010/05/16 12:15:48 kls Exp $
.\" .\"
.TH vdr 5 "10 Feb 2008" "1.6" "Video Disk Recorder Files" .TH vdr 5 "10 Feb 2008" "1.6" "Video Disk Recorder Files"
.SH NAME .SH NAME
@ -204,6 +204,13 @@ can be indicated by adding a second language code, delimited by a '+' sign, as i
.B ...:101=deu,102=eng+spa;103=deu,104=eng:... .B ...:101=deu,102=eng+spa;103=deu,104=eng:...
The audio type is appended with a separating '@' character, as in
.B ...:101=deu@4,102=eng+spa@4,105=@4:...
Note that if there is no language code, there still is the separating '='
if there is an audio type.
.TP .TP
.B TPID .B TPID
The teletext PID. The teletext PID.
@ -463,7 +470,9 @@ If this is not the case in a particular setup, lines of the form
may be inserted in the \fIdiseqc.conf\fR file, defining the devices that are able may be inserted in the \fIdiseqc.conf\fR file, defining the devices that are able
to receive the satellites following thereafter. In this case, only the devices to receive the satellites following thereafter. In this case, only the devices
1, 2 and 4 would be able to receive any satellites following this line. 1, 2 and 4 would be able to receive any satellites following this line and up
to the next such line, or the end of the file. Devices may be listed more than
once.
.SS REMOTE CONTROL KEYS .SS REMOTE CONTROL KEYS
The file \fIremote.conf\fR contains the key assignments for all remote control The file \fIremote.conf\fR contains the key assignments for all remote control
units. Each line consists of one key assignment in the following format: units. Each line consists of one key assignment in the following format:

6
vdr.c
View File

@ -22,7 +22,7 @@
* *
* The project's page is at http://www.tvdr.de * The project's page is at http://www.tvdr.de
* *
* $Id: vdr.c 2.17 2010/02/21 14:08:09 kls Exp $ * $Id: vdr.c 2.19 2010/04/05 10:06:16 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
@ -177,7 +177,7 @@ int main(int argc, char *argv[])
// Command line options: // Command line options:
#define DEFAULTSVDRPPORT 2001 #define DEFAULTSVDRPPORT 6419
#define DEFAULTWATCHDOG 0 // seconds #define DEFAULTWATCHDOG 0 // seconds
#define DEFAULTCONFDIR CONFDIR #define DEFAULTCONFDIR CONFDIR
#define DEFAULTPLUGINDIR PLUGINDIR #define DEFAULTPLUGINDIR PLUGINDIR
@ -992,7 +992,7 @@ int main(int argc, char *argv[])
case kRecordings: DirectMainFunction(osRecordings); break; case kRecordings: DirectMainFunction(osRecordings); break;
case kSetup: DirectMainFunction(osSetup); break; case kSetup: DirectMainFunction(osSetup); break;
case kCommands: DirectMainFunction(osCommands); break; case kCommands: DirectMainFunction(osCommands); break;
case kUser1 ... kUser9: cRemote::PutMacro(key); key = kNone; break; case kUser0 ... kUser9: cRemote::PutMacro(key); key = kNone; break;
case k_Plugin: { case k_Plugin: {
const char *PluginName = cRemote::GetPlugin(); const char *PluginName = cRemote::GetPlugin();
if (PluginName) { if (PluginName) {