Version 2.1.3

VDR developer version 2.1.3 is now available at

       ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.3.tar.bz2

A 'diff' against the previous version is available at

       ftp://ftp.tvdr.de/vdr/Developer/vdr-2.1.2-2.1.3.diff

MD5 checksums:

054f80e0045aa6fad118e9285b52f4f2  vdr-2.1.3.tar.bz2
3c5ab05d5c4d0b984b34e84190e80949  vdr-2.1.2-2.1.3.diff

WARNING:
========

This is a *developer* version. Even though *I* use it in my productive
environment, I strongly recommend that you only use it under controlled
conditions and for testing and debugging.

Originally I intended to release this version only after the new DiSEqC
configuration dialog was finished. But in the meantime quite a few other things
have come up, so I decided to postpone that dialog and first release what has
piled up so far.

From the HISTORY file:
- Changed the return value of cPositioner::HorizonLongitude() to 0 in case the
  latitude of the antenna location is beyond +/-81 degrees.
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed some compiler warnings with gcc-4.6.3 (thanks to Rolf Ahrenberg).
- Changed the name of the SVDRP command RENR to MOVR (suggested by Rolf Ahrenberg).
- When cutting a recording it is now checked whether there is already an edited
  version of this recording (with the same name, but starting with '%'), and the
  user is prompted for confirmation to overwrite it (suggested by Rolf Ahrenberg).
- Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P"
  because it broke things for the "TechniSat AirStar 2" DVB-T card.
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
  VDR is started (thanks to Lars Hanisch).
- Changed the absolute latitude limit for visible satellites to 81.2 degrees.
- Added code for parsing LCN and AVC descriptors to libsi (thanks to Rolf Ahrenberg).
- In the "Select folder" menu pressing Ok now selects the folder, even if this is a
  folder that contains sub folders (marked with "..."). To open such a folder you
  can press the Red key.
- Fixed a possible access to uninitialized data in cEIT::cEIT() (reported by Dominik
  Strasser).
- The new menu category mcRecordingEdit is now used to mark menus that edit recording
  properties (suggested by Stefan Braun).
- Changes in the teletext PID no longer cause retuning (and thus interrupting a
  recording).
- Removed '_' from the FileNameChars and CharMap translations in uk_UA.po.
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to
  Marko Mäkelä).
- Simplified some conditional expressions in skinlcars.c and skinsttng.c (suggested
  by Marko Mäkelä).
- Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu (reported by
  Marko Mäkelä).
- Fixed a possible crash if the recordings list is updated externally while the
  Recordings menu is open (reported by Lars Hanisch).
- Added a missing closing ')' in the help and man page entry of the --vfat option
  (reported by Lars Hanisch).
- Fixed setting the name of the video directory to avoid a crash when using --genindex,
  and also to use the correct directory with --edit (the latter reported by Marko
  Mäkelä).
- The Recordings menu can now be called with a cRecordingFilter, which allows the
  caller to have it display only a certain subset of the recordings (thanks to Lars
  Hanisch).
- Added handling UTF-8 'umlaut' characters to cKbdRemote (thanks to Lars Hanisch).
- Made it clear that the Data parameter in cDevice::StillPicture() may point to a
  series of packets, not just a single one (thanks to Thomas Reufer).
- cDevice::TrickSpeed() now has an additional parameter named Forward, which indicates
  the direction in which replay is being done (suggested by Thomas Reufer). This
  information may be necessary for some output devices in order to properly implement
  trick modes. Authors of plugins that implement output devices will need to add this
  parameter to their derived cDevice class, regardless of whether they will make use
  of it or not.
- Added a note to ePlayMode in device.h that VDR itself always uses pmAudioVideo when
  replaying a recording (suggested by Thomas Reufer).
- Fixed some spellings in positioner.h and Doxyfile (thanks to Ville Skyttä).
- Changed '%a' to the POSIX compliant '%m' in all scanf() calls (thanks to Ville
  Skyttä).
- The new function cCamSlot::Decrypt() can be used by derived classes to implement a
  CAM slot that can be freely assigned to any device, without being directly inserted
  into the full TS data stream in hardware. A derived class that implements Decrypt()
  will also need to set the new parameter ReceiveCaPids in the call to the cCamSlot
  base class constructor to true, in order to receive the CA pid TS packets that
  contain data necessary for decrypting.
- Many member functions of cCamSlot have been made virtual to allow for easier
  implementation of derived classes.
- cTSBuffer now provides the number of available bytes in its Get() function.
- cDvbDevice::GetTSPacket() now calls CamSlot()->Decrypt() in order to allow CAM slots
  that can be freely assigned to any device access to the TS data stream.
- Added a check to avoid a possible NULL pointer dereference in cCiSession::SendData()
  (reported by Ville Skyttä).
- Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skyttä).
- The script given to VDR with the '-r' option is now also called after the recording
  process has actually started (thanks to Christian Kaiser).
- Avoiding unnecessary pkg-config warnings in plugin Makefiles (thanks to Ville Skyttä).
  Plugin authors may want to apply the following change to their Makefile:
  -PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
  +PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
- Eliminated MAXDVBDEVICES (suggested by Oliver Endriss).
- Channels that are no longer contained in the current SDT of a transponder are now
  marked with the keyword OBSOLETE in their name and provider fields. That way you can
  identify obsolete channels when you switch to them, and you can get the complete
  overview of all obsolete channels by sorting the Channels list by provider (by
  pressing the 0 key twice). Automatic deletion of obsolete channels may follow later.
This commit is contained in:
Klaus Schmidinger 2014-01-05 12:42:00 +01:00 committed by Dieter Hametner
parent 277d66bfe1
commit 716c03a47e
119 changed files with 1242 additions and 486 deletions

View File

@ -704,6 +704,7 @@ Oliver Endriss <o.endriss@gmx.de>
for reporting a problem with resuming replay of PES recordings for reporting a problem with resuming replay of PES recordings
for suggesting to make all bonded devices (except for the master) turn off their LNB for suggesting to make all bonded devices (except for the master) turn off their LNB
power completely to avoid problems when receiving vertically polarized transponders power completely to avoid problems when receiving vertically polarized transponders
for suggesting to eliminate MAXDVBDEVICES
Reinhard Walter Buchner <rw.buchner@freenet.de> Reinhard Walter Buchner <rw.buchner@freenet.de>
for adding some satellites to 'sources.conf' for adding some satellites to 'sources.conf'
@ -1173,6 +1174,10 @@ Rolf Ahrenberg <Rolf.Ahrenberg@sci.fi>
and add support for DVB-S2 "Input Stream Identifier" (ISI) and add support for DVB-S2 "Input Stream Identifier" (ISI)
for helping to debug and understand subtitle page refreshes for helping to debug and understand subtitle page refreshes
for a patch that was used to implement the SVDRP command RENR for a patch that was used to implement the SVDRP command RENR
for fixing some compiler warnings with gcc-4.6.3
for suggesting to prompt the user for confirmation before overwriting an already
existing edited version of a recording
for adding code for parsing LCN and AVC descriptors to libsi
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
@ -2029,6 +2034,11 @@ Ville Skytt
for updating the help and man page entry about the location of the epg.data file for updating the help and man page entry about the location of the epg.data file
for reporting a possible crash when shutting down VDR while subtitles are being for reporting a possible crash when shutting down VDR while subtitles are being
displayed displayed
for fixing some spellings in positioner.h and Doxyfile
for changing '%a' to the POSIX compliant '%m' in all scanf() calls
for reporting a possible NULL pointer dereference in cCiSession::SendData()
for reporting a superfluous assignment in cPipe::Open()
for avoiding unnecessary pkg-config warnings in plugin Makefiles
Steffen Beyer <cpunk@reactor.de> Steffen Beyer <cpunk@reactor.de>
for fixing setting the colored button help after deleting a recording in case the next for fixing setting the colored button help after deleting a recording in case the next
@ -2142,6 +2152,10 @@ Marko M
pressed in string input fields pressed in string input fields
for fixing missing ',' in the Italian and Polish OSD texts for fixing missing ',' in the Italian and Polish OSD texts
for pointing out that "Menu button closes" should actually be "Menu key closes" for pointing out that "Menu button closes" should actually be "Menu key closes"
for fixing a missing initialization in the c'tor of cSkinLCARSDisplayChannel
for suggesting to simplify some conditional expressions in skinlcars.c and skinsttng.c
for reporting some uninitialized item area coordinates in cSkinLCARSDisplayMenu
for reporting a problem with the video directory not being set correctly with --edit
Patrick Rother <krd-vdr@gulu.net> Patrick Rother <krd-vdr@gulu.net>
for reporting a bug in defining timers that only differ in the day of week for reporting a bug in defining timers that only differ in the day of week
@ -2855,6 +2869,14 @@ Lars Hanisch <dvb@flensrocker.de>
for reporting an invalid line in channels.conf.terr for reporting an invalid line in channels.conf.terr
for fixing handling '/' and '~' in recording file names in case DirectoryEncoding is for fixing handling '/' and '~' in recording file names in case DirectoryEncoding is
used used
for making the LIRC remote control connect to the socket even if it doesn't yet exist
when VDR is started
for reporting a possible crash if the recordings list is updated externally while the
Recordings menu is open
for reporting a missing closing ')' in the help entry of the --vfat option
for making the Recordings menu able to be called with a cRecordingFilter, which allows
the caller to have it display only a certain subset of the recordings
for adding handling UTF-8 'umlaut' characters to cKbdRemote
Alex Lasnier <alex@fepg.org> Alex Lasnier <alex@fepg.org>
for adding tuning support for ATSC devices for adding tuning support for ATSC devices
@ -2913,6 +2935,7 @@ Henning Heinold <heinold@inf.fu-berlin.de>
Dominik Strasser <dominik@die-strassers.de> Dominik Strasser <dominik@die-strassers.de>
for making a cRemote be removed from the Remotes list in case its initialization failed for making a cRemote be removed from the Remotes list in case its initialization failed
for reporting a possible access to uninitialized data in cEIT::cEIT()
Joerg Bornkessel <hd_brummy@gentoo.org> Joerg Bornkessel <hd_brummy@gentoo.org>
for adding LDFLAGS to the linker calls in the Makefiles for adding LDFLAGS to the linker calls in the Makefiles
@ -3058,8 +3081,10 @@ Christian Richter <cr@crichter.net>
for extending the interface to the script that gets called for recordings, so that in for extending the interface to the script that gets called for recordings, so that in
the "edited" case it also provides the name of the original recording the "edited" case it also provides the name of the original recording
Christian Kaiser <christian.kaiser@teleservice.com> Christian Kaiser <chr-kaiser@arcor.de>
for adding DeleteEvent() to the EPG handler interface for adding DeleteEvent() to the EPG handler interface
for making the script given to VDR with the '-r' option also be called after the
recording process has actually started
Dirk Heiser <dirk-vdr@gmx.de> Dirk Heiser <dirk-vdr@gmx.de>
for adding SetComponents() to the EPG handler interface for adding SetComponents() to the EPG handler interface
@ -3170,6 +3195,8 @@ Stefan Braun <louis.braun@gmx.de>
for reporting an endless loop in cTextWrapper::Set() in case the given Width is smaller for reporting an endless loop in cTextWrapper::Set() in case the given Width is smaller
than one character than one character
for reporting an endless loop in the DrawEllipse() functions for very small ellipses for reporting an endless loop in the DrawEllipse() functions for very small ellipses
for suggesting to add the menu category mcRecordingEdit for marking menus that edit
recording properties
Jochen Dolze <vdr@dolze.de> Jochen Dolze <vdr@dolze.de>
for changing cThread::SetIOPriority() from "best effort class" to "idle class" in order for changing cThread::SetIOPriority() from "best effort class" to "idle class" in order
@ -3202,3 +3229,10 @@ Harald Koenig <koenig@tat.physik.uni-tuebingen.de>
Guido Cordaro <guido.cordaro@tiscali.it> Guido Cordaro <guido.cordaro@tiscali.it>
for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P for adding maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P
Thomas Reufer <thomas@reufer.ch>
for making it clear that the Data parameter in cDevice::StillPicture() may point to a
series of packets, not just a single one
for suggesting to add an additional parameter named Forward to cDevice::TrickSpeed()
for suggesting to add a note to ePlayMode in device.h that VDR itself always uses
pmAudioVideo when replaying a recording

View File

@ -1658,7 +1658,7 @@ UML_LOOK = NO
# the class node. If there are many fields or methods and many nodes the # the class node. If there are many fields or methods and many nodes the
# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS # graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS
# threshold limits the number of items for each type to make the size more # threshold limits the number of items for each type to make the size more
# managable. Set this to 0 for no limit. Note that the threshold may be # manageable. Set this to 0 for no limit. Note that the threshold may be
# exceeded by 50% before the limit is enforced. # exceeded by 50% before the limit is enforced.
UML_LIMIT_NUM_FIELDS = 10 UML_LIMIT_NUM_FIELDS = 10

106
HISTORY
View File

@ -8009,3 +8009,109 @@ Video Disk Recorder Revision History
is unexpected at this point (reported by Helmut Auer). You can still navigate to is unexpected at this point (reported by Helmut Auer). You can still navigate to
the last replayed recording (if any) by pressing Ok repeatedly in the Recordings the last replayed recording (if any) by pressing Ok repeatedly in the Recordings
menu. menu.
2013-10-23: Version 2.0.4
- Unified the internal sequence of actions when pressing the Blue and the Back key,
respectively, during replay (reported by Thomas Maass).
- The Yellow button in the main menu no longer acts as "Pause" if "Pause key handling"
is set to "do not pause live video" (suggested by Ulf Kiener).
- Fixed writing group separators to channels.conf that contain a comma (reported by
Eike Edener).
- Now also checking the source (in addition to the transponder) when setting the
system time from the TDT, which avoids problems in case devices are tuned to the
same transponder on different sources, and these broadcast different time data
(reported by Torsten Lang).
- Changed cRecorder::Action() to use cTimeMs instead of time() to avoid problems with
unjustified "video data stream broken" errors in case the system time is changed
while a recording is active (reported by Torsten Lang).
- Fixed an inconsistent behavior between opening the Recordings menu manually via the
main menu and by pressing the Recordings key. In the latter case it automatically
opened all sub folders to position the cursor to the last replayed recording, which
is unexpected at this point (reported by Helmut Auer). You can still navigate to
the last replayed recording (if any) by pressing Ok repeatedly in the Recordings
menu.
2014-01-05: Version 2.1.3
- Changed the return value of cPositioner::HorizonLongitude() to 0 in case the
latitude of the antenna location is beyond +/-81 degrees.
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
- Fixed some compiler warnings with gcc-4.6.3 (thanks to Rolf Ahrenberg).
- Changed the name of the SVDRP command RENR to MOVR (suggested by Rolf Ahrenberg).
- When cutting a recording it is now checked whether there is already an edited
version of this recording (with the same name, but starting with '%'), and the
user is prompted for confirmation to overwrite it (suggested by Rolf Ahrenberg).
- Revoked "Added maximum signal strength value for TechniSat SkyStar 2 DVB-S rev 2.3P"
because it broke things for the "TechniSat AirStar 2" DVB-T card.
- The LIRC remote control now connects to the socket even if it doesn't yet exist when
VDR is started (thanks to Lars Hanisch).
- Changed the absolute latitude limit for visible satellites to 81.2 degrees.
- Added code for parsing LCN and AVC descriptors to libsi (thanks to Rolf Ahrenberg).
- In the "Select folder" menu pressing Ok now selects the folder, even if this is a
folder that contains sub folders (marked with "..."). To open such a folder you
can press the Red key.
- Fixed a possible access to uninitialized data in cEIT::cEIT() (reported by Dominik
Strasser).
- The new menu category mcRecordingEdit is now used to mark menus that edit recording
properties (suggested by Stefan Braun).
- Changes in the teletext PID no longer cause retuning (and thus interrupting a
recording).
- Removed '_' from the FileNameChars and CharMap translations in uk_UA.po.
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Fixed a missing initialization in the c'tor of cSkinLCARSDisplayChannel (thanks to
Marko Mäkelä).
- Simplified some conditional expressions in skinlcars.c and skinsttng.c (suggested
by Marko Mäkelä).
- Fixed uninitialized item area coordinates in cSkinLCARSDisplayMenu (reported by
Marko Mäkelä).
- Fixed a possible crash if the recordings list is updated externally while the
Recordings menu is open (reported by Lars Hanisch).
- Added a missing closing ')' in the help and man page entry of the --vfat option
(reported by Lars Hanisch).
- Fixed setting the name of the video directory to avoid a crash when using --genindex,
and also to use the correct directory with --edit (the latter reported by Marko
Mäkelä).
- The Recordings menu can now be called with a cRecordingFilter, which allows the
caller to have it display only a certain subset of the recordings (thanks to Lars
Hanisch).
- Added handling UTF-8 'umlaut' characters to cKbdRemote (thanks to Lars Hanisch).
- Made it clear that the Data parameter in cDevice::StillPicture() may point to a
series of packets, not just a single one (thanks to Thomas Reufer).
- cDevice::TrickSpeed() now has an additional parameter named Forward, which indicates
the direction in which replay is being done (suggested by Thomas Reufer). This
information may be necessary for some output devices in order to properly implement
trick modes. Authors of plugins that implement output devices will need to add this
parameter to their derived cDevice class, regardless of whether they will make use
of it or not.
- Added a note to ePlayMode in device.h that VDR itself always uses pmAudioVideo when
replaying a recording (suggested by Thomas Reufer).
- Fixed some spellings in positioner.h and Doxyfile (thanks to Ville Skyttä).
- Changed '%a' to the POSIX compliant '%m' in all scanf() calls (thanks to Ville
Skyttä).
- The new function cCamSlot::Decrypt() can be used by derived classes to implement a
CAM slot that can be freely assigned to any device, without being directly inserted
into the full TS data stream in hardware. A derived class that implements Decrypt()
will also need to set the new parameter ReceiveCaPids in the call to the cCamSlot
base class constructor to true, in order to receive the CA pid TS packets that
contain data necessary for decrypting.
- Many member functions of cCamSlot have been made virtual to allow for easier
implementation of derived classes.
- cTSBuffer now provides the number of available bytes in its Get() function.
- cDvbDevice::GetTSPacket() now calls CamSlot()->Decrypt() in order to allow CAM slots
that can be freely assigned to any device access to the TS data stream.
- Added a check to avoid a possible NULL pointer dereference in cCiSession::SendData()
(reported by Ville Skyttä).
- Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skyttä).
- The script given to VDR with the '-r' option is now also called after the recording
process has actually started (thanks to Christian Kaiser).
- Avoiding unnecessary pkg-config warnings in plugin Makefiles (thanks to Ville Skyttä).
Plugin authors may want to apply the following change to their Makefile:
-PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
+PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
- Eliminated MAXDVBDEVICES (suggested by Oliver Endriss).
- Channels that are no longer contained in the current SDT of a transponder are now
marked with the keyword OBSOLETE in their name and provider fields. That way you can
identify obsolete channels when you switch to them, and you can get the complete
overview of all obsolete channels by sorting the Channels list by provider (by
pressing the 0 key twice). Automatic deletion of obsolete channels may follow later.

View File

@ -254,6 +254,7 @@ The program will be called with two or three (in case of "edited") string
parameters. The first parameter is one of parameters. The first parameter is one of
before if this is *before* a recording starts before if this is *before* a recording starts
started if this is after a recording has *started*
after if this is *after* a recording has finished after if this is *after* a recording has finished
edited if this is after a recording has been *edited* edited if this is after a recording has been *edited*
deleted if this is after a recording has been *deleted* deleted if this is after a recording has been *deleted*
@ -279,6 +280,9 @@ case "$1" in
before) before)
echo "Before recording $2" echo "Before recording $2"
;; ;;
started)
echo "Started recording $2"
;;
after) after)
echo "After recording $2" echo "After recording $2"
;; ;;

7
MANUAL
View File

@ -500,9 +500,10 @@ Version 2.0
folder name in the list). The "Yellow" key deletes the current folder (note folder name in the list). The "Yellow" key deletes the current folder (note
that this will merely delete the folder definition stored in 'folders.conf' that this will merely delete the folder definition stored in 'folders.conf'
and has no effect on existing timers or recordings). The "Blue" key can be and has no effect on existing timers or recordings). The "Blue" key can be
used to edit an existing folder definition. The "Red" key selects the current used to edit an existing folder definition. The "Red" key opens a folder that
folder, or enters a sub folder. Once a folder has been selected, the entire contains sub folders, while pressing Ok selects the current folder. Once a
path of the timer's file name will be replaced with the selected folder. folder has been selected, the entire path of the timer's file name will be
replaced with the selected folder.
In the "Recordings" menu the folders of existing recordings can be renamed or In the "Recordings" menu the folders of existing recordings can be renamed or
moved by pressing the "Blue" key ("Edit") while the cursor is positioned on moved by pressing the "Blue" key ("Edit") while the cursor is positioned on

View File

@ -1877,7 +1877,7 @@ virtual bool SetPlayMode(ePlayMode PlayMode);
virtual int64_t GetSTC(void); virtual int64_t GetSTC(void);
virtual bool IsPlayingVideo(void) const; virtual bool IsPlayingVideo(void) const;
virtual bool HasIBPTrickSpeed(void); virtual bool HasIBPTrickSpeed(void);
virtual void TrickSpeed(int Speed); virtual void TrickSpeed(int Speed<modified>, bool Forward</modified>);
virtual void Clear(void); virtual void Clear(void);
virtual void Play(void); virtual void Play(void);
virtual void Freeze(void); virtual void Freeze(void);

View File

@ -84,3 +84,8 @@ VDR Plugin 'dvbhddevice' Revision History
2013-08-26: Version 2.1.2 2013-08-26: Version 2.1.2
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
2014-01-01: Version 2.1.3
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.
- cDevice::TrickSpeed() now has an additional parameter named Forward.

View File

@ -15,7 +15,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir) LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)

View File

@ -10,7 +10,7 @@
#include "menu.h" #include "menu.h"
#include "setup.h" #include "setup.h"
static const char *VERSION = "2.1.2"; static const char *VERSION = "2.1.3";
static const char *DESCRIPTION = trNOOP("HD Full Featured DVB device"); static const char *DESCRIPTION = trNOOP("HD Full Featured DVB device");
static const char *MAINMENUENTRY = "dvbhddevice"; static const char *MAINMENUENTRY = "dvbhddevice";

View File

@ -606,7 +606,7 @@ void cDvbHdFfDevice::ScaleVideo(const cRect &Rect)
} }
} }
void cDvbHdFfDevice::TrickSpeed(int Speed) void cDvbHdFfDevice::TrickSpeed(int Speed, bool Forward)
{ {
freezed = false; freezed = false;
mHdffCmdIf->CmdAvEnableSync(0, false); mHdffCmdIf->CmdAvEnableSync(0, false);

View File

@ -99,7 +99,7 @@ public:
virtual int64_t GetSTC(void); virtual int64_t GetSTC(void);
virtual cRect CanScaleVideo(const cRect &Rect, int Alignment = taCenter); virtual cRect CanScaleVideo(const cRect &Rect, int Alignment = taCenter);
virtual void ScaleVideo(const cRect &Rect = cRect::Null); virtual void ScaleVideo(const cRect &Rect = cRect::Null);
virtual void TrickSpeed(int Speed); virtual void TrickSpeed(int Speed, bool Forward);
virtual void Clear(void); virtual void Clear(void);
virtual void Play(void); virtual void Play(void);
virtual void Freeze(void); virtual void Freeze(void);

View File

@ -50,3 +50,8 @@ VDR Plugin 'dvbsddevice' Revision History
- Fixed handling the -o option (short form of --outputonly; problem reported by - Fixed handling the -o option (short form of --outputonly; problem reported by
Mario Edelmann). Mario Edelmann).
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.
- cDevice::TrickSpeed() now has an additional parameter named Forward.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,14 +3,14 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: dvbsddevice.c 3.1 2013/08/22 08:20:18 kls Exp $ * $Id: dvbsddevice.c 3.2 2014/01/01 13:43:28 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
#include "dvbsdffdevice.h" #include "dvbsdffdevice.h"
static const char *VERSION = "2.0.1"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "SD Full Featured DVB device"; static const char *DESCRIPTION = "SD Full Featured DVB device";
class cPluginDvbsddevice : public cPlugin { class cPluginDvbsddevice : public cPlugin {

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: dvbsdffdevice.c 3.0 2013/02/17 13:16:18 kls Exp $ * $Id: dvbsdffdevice.c 3.1 2014/01/01 13:39:24 kls Exp $
*/ */
#include "dvbsdffdevice.h" #include "dvbsdffdevice.h"
@ -593,7 +593,7 @@ int64_t cDvbSdFfDevice::GetSTC(void)
return -1; return -1;
} }
void cDvbSdFfDevice::TrickSpeed(int Speed) void cDvbSdFfDevice::TrickSpeed(int Speed, bool Forward)
{ {
if (fd_video >= 0) if (fd_video >= 0)
CHECK(ioctl(fd_video, VIDEO_SLOWMOTION, Speed)); CHECK(ioctl(fd_video, VIDEO_SLOWMOTION, Speed));

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: dvbsdffdevice.h 3.0 2013/02/17 13:16:29 kls Exp $ * $Id: dvbsdffdevice.h 3.1 2014/01/01 13:39:30 kls Exp $
*/ */
#ifndef __DVBSDFFDEVICE_H #ifndef __DVBSDFFDEVICE_H
@ -94,7 +94,7 @@ protected:
virtual int PlayTsAudio(const uchar *Data, int Length); virtual int PlayTsAudio(const uchar *Data, int Length);
public: public:
virtual int64_t GetSTC(void); virtual int64_t GetSTC(void);
virtual void TrickSpeed(int Speed); virtual void TrickSpeed(int Speed, bool Forward);
virtual void Clear(void); virtual void Clear(void);
virtual void Play(void); virtual void Play(void);
virtual void Freeze(void); virtual void Freeze(void);

View File

@ -16,3 +16,7 @@ VDR Plugin 'epgtableid0' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,13 +3,13 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: epgtableid0.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: epgtableid0.c 3.1 2014/01/05 10:56:10 kls Exp $
*/ */
#include <vdr/epg.h> #include <vdr/epg.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "EPG handler for events with table id 0x00"; static const char *DESCRIPTION = "EPG handler for events with table id 0x00";
// --- cTable0Handler -------------------------------------------------------- // --- cTable0Handler --------------------------------------------------------

View File

@ -86,3 +86,7 @@ VDR Plugin 'hello' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir) LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: hello.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: hello.c 3.1 2014/01/05 10:56:14 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
@ -12,7 +12,7 @@
#include <vdr/interface.h> #include <vdr/interface.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = trNOOP("A friendly greeting"); static const char *DESCRIPTION = trNOOP("A friendly greeting");
static const char *MAINMENUENTRY = trNOOP("Hello"); static const char *MAINMENUENTRY = trNOOP("Hello");

View File

@ -59,3 +59,7 @@ VDR Plugin 'osddemo' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,13 +3,13 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: osddemo.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: osddemo.c 3.1 2014/01/05 10:56:18 kls Exp $
*/ */
#include <vdr/osd.h> #include <vdr/osd.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "Demo of arbitrary OSD setup"; static const char *DESCRIPTION = "Demo of arbitrary OSD setup";
static const char *MAINMENUENTRY = "Osd Demo"; static const char *MAINMENUENTRY = "Osd Demo";

View File

@ -91,3 +91,7 @@ VDR Plugin 'pictures' Revision History
2013-07-01: 2013-07-01:
- Added option -x to pic2mpg. - Added option -x to pic2mpg.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir) LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: pictures.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: pictures.c 3.1 2014/01/05 10:56:20 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
@ -11,7 +11,7 @@
#include "menu.h" #include "menu.h"
#include "player.h" #include "player.h"
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = trNOOP("A simple picture viewer"); static const char *DESCRIPTION = trNOOP("A simple picture viewer");
static const char *MAINMENUENTRY = trNOOP("Pictures"); static const char *MAINMENUENTRY = trNOOP("Pictures");

View File

@ -20,3 +20,7 @@ VDR Plugin 'rcu' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: rcu.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: rcu.c 3.1 2014/01/05 10:56:22 kls Exp $
*/ */
#include <getopt.h> #include <getopt.h>
@ -16,7 +16,7 @@
#include <vdr/thread.h> #include <vdr/thread.h>
#include <vdr/tools.h> #include <vdr/tools.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "Remote Control Unit"; static const char *DESCRIPTION = "Remote Control Unit";
#define REPEATLIMIT 150 // ms #define REPEATLIMIT 150 // ms

View File

@ -21,3 +21,7 @@ VDR Plugin 'servicedemo' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -17,7 +17,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN1).c | awk '{ pr
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,14 +3,14 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: svccli.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: svccli.c 3.1 2014/01/05 10:56:24 kls Exp $
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <vdr/interface.h> #include <vdr/interface.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "Service demo client"; static const char *DESCRIPTION = "Service demo client";
static const char *MAINMENUENTRY = "Service demo"; static const char *MAINMENUENTRY = "Service demo";

View File

@ -3,14 +3,14 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: svcsvr.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: svcsvr.c 3.1 2014/01/05 10:56:26 kls Exp $
*/ */
#include <stdlib.h> #include <stdlib.h>
#include <vdr/interface.h> #include <vdr/interface.h>
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "Service demo server"; static const char *DESCRIPTION = "Service demo server";
class cPluginSvcSvr : public cPlugin { class cPluginSvcSvr : public cPlugin {

View File

@ -118,3 +118,7 @@ VDR Plugin 'skincurses' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir) LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)

View File

@ -3,7 +3,7 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: skincurses.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: skincurses.c 3.1 2014/01/05 10:56:27 kls Exp $
*/ */
#include <ncurses.h> #include <ncurses.h>
@ -12,7 +12,7 @@
#include <vdr/skins.h> #include <vdr/skins.h>
#include <vdr/videodir.h> #include <vdr/videodir.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = trNOOP("A text only skin"); static const char *DESCRIPTION = trNOOP("A text only skin");
static const char *MAINMENUENTRY = NULL; static const char *MAINMENUENTRY = NULL;

View File

@ -60,3 +60,7 @@ VDR Plugin 'status' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,13 +3,13 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: status.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: status.c 3.1 2014/01/05 10:56:29 kls Exp $
*/ */
#include <vdr/plugin.h> #include <vdr/plugin.h>
#include <vdr/status.h> #include <vdr/status.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "Status monitor test"; static const char *DESCRIPTION = "Status monitor test";
static const char *MAINMENUENTRY = NULL; static const char *MAINMENUENTRY = NULL;

View File

@ -25,3 +25,7 @@ VDR Plugin 'svdrpdemo' Revision History
2013-03-31: Version 2.0.0 2013-03-31: Version 2.0.0
- Official release. - Official release.
2014-01-01: Version 2.1.1
- Avoiding unnecessary pkg-config warnings in plugin Makefiles.

View File

@ -1,7 +1,7 @@
# #
# Makefile for a Video Disk Recorder plugin # Makefile for a Video Disk Recorder plugin
# #
# $Id: Makefile 3.0 2013/01/12 13:45:01 kls Exp $ # $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $
# The official name of this plugin. # The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin. # This name will be used in the '-P...' option of VDR to load the plugin.
@ -16,7 +16,7 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir) LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg) PLGCFG = $(call PKGCFG,plgcfg)
# #

View File

@ -3,12 +3,12 @@
* *
* See the README file for copyright information and how to reach the author. * See the README file for copyright information and how to reach the author.
* *
* $Id: svdrpdemo.c 3.0 2013/03/31 09:30:18 kls Exp $ * $Id: svdrpdemo.c 3.1 2014/01/05 10:56:31 kls Exp $
*/ */
#include <vdr/plugin.h> #include <vdr/plugin.h>
static const char *VERSION = "2.0.0"; static const char *VERSION = "2.1.1";
static const char *DESCRIPTION = "How to add SVDRP support to a plugin"; static const char *DESCRIPTION = "How to add SVDRP support to a plugin";
class cPluginSvdrpdemo : public cPlugin { class cPluginSvdrpdemo : public cPlugin {

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.c 3.1 2013/10/11 11:03:26 kls Exp $ * $Id: channels.c 3.4 2014/01/04 15:01:52 kls Exp $
*/ */
#include "channels.h" #include "channels.h"
@ -29,7 +29,7 @@ tChannelID tChannelID::FromString(const char *s)
int tid; int tid;
int sid; int sid;
int rid = 0; int rid = 0;
int fields = sscanf(s, "%a[^-]-%d-%d-%d-%d", &sourcebuf, &nid, &tid, &sid, &rid); int fields = sscanf(s, "%m[^-]-%d-%d-%d-%d", &sourcebuf, &nid, &tid, &sid, &rid);
if (fields == 4 || fields == 5) { if (fields == 4 || fields == 5) {
int source = cSource::FromString(sourcebuf); int source = cSource::FromString(sourcebuf);
free(sourcebuf); free(sourcebuf);
@ -64,6 +64,7 @@ cChannel::cChannel(void)
memset(&__BeginData__, 0, (char *)&__EndData__ - (char *)&__BeginData__); memset(&__BeginData__, 0, (char *)&__EndData__ - (char *)&__BeginData__);
parameters = ""; parameters = "";
modification = CHANNELMOD_NONE; modification = CHANNELMOD_NONE;
seen = 0;
schedule = NULL; schedule = NULL;
linkChannels = NULL; linkChannels = NULL;
refChannel = NULL; refChannel = NULL;
@ -330,8 +331,10 @@ static int IntArrayToString(char *s, const int *a, int Base = 10, const char n[]
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) 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)
mod |= CHANNELMOD_PIDS; mod |= CHANNELMOD_PIDS;
if (tpid != Tpid)
mod |= CHANNELMOD_AUX;
int m = IntArraysDiffer(apids, Apids, alangs, ALangs) | IntArraysDiffer(atypes, Atypes) | IntArraysDiffer(dpids, Dpids, dlangs, DLangs) | IntArraysDiffer(dtypes, Dtypes) | 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;
@ -388,7 +391,8 @@ void cChannel::SetPids(int Vpid, int Ppid, int Vtype, int *Apids, int *Atypes, c
spids[MAXSPIDS] = 0; spids[MAXSPIDS] = 0;
tpid = Tpid; tpid = Tpid;
modification |= mod; modification |= mod;
Channels.SetModified(); if (Number())
Channels.SetModified();
} }
} }
@ -408,6 +412,11 @@ void cChannel::SetSubtitlingDescriptors(uchar *SubtitlingTypes, uint16_t *Compos
} }
} }
void cChannel::SetSeen(void)
{
seen = time(NULL);
}
void cChannel::SetCaIds(const int *CaIds) void cChannel::SetCaIds(const int *CaIds)
{ {
if (caids[0] && caids[0] <= CA_USER_MAX) if (caids[0] && caids[0] <= CA_USER_MAX)
@ -586,7 +595,7 @@ bool cChannel::Parse(const char *s)
char *apidbuf = NULL; char *apidbuf = NULL;
char *tpidbuf = NULL; char *tpidbuf = NULL;
char *caidbuf = NULL; char *caidbuf = NULL;
int fields = sscanf(s, "%a[^:]:%d :%a[^:]:%a[^:] :%d :%a[^:]:%a[^:]:%a[^:]:%a[^:]:%d :%d :%d :%d ", &namebuf, &frequency, &parambuf, &sourcebuf, &srate, &vpidbuf, &apidbuf, &tpidbuf, &caidbuf, &sid, &nid, &tid, &rid); int fields = sscanf(s, "%m[^:]:%d :%m[^:]:%m[^:] :%d :%m[^:]:%m[^:]:%m[^:]:%m[^:]:%d :%d :%d :%d ", &namebuf, &frequency, &parambuf, &sourcebuf, &srate, &vpidbuf, &apidbuf, &tpidbuf, &caidbuf, &sid, &nid, &tid, &rid);
if (fields >= 9) { if (fields >= 9) {
if (fields == 9) { if (fields == 9) {
// allow reading of old format // allow reading of old format
@ -1016,6 +1025,7 @@ cChannel *cChannels::NewChannel(const cChannel *Transponder, const char *Name, c
NewChannel->CopyTransponderData(Transponder); NewChannel->CopyTransponderData(Transponder);
NewChannel->SetId(Nid, Tid, Sid, Rid); NewChannel->SetId(Nid, Tid, Sid, Rid);
NewChannel->SetName(Name, ShortName, Provider); NewChannel->SetName(Name, ShortName, Provider);
NewChannel->SetSeen();
Add(NewChannel); Add(NewChannel);
ReNumber(); ReNumber();
return NewChannel; return NewChannel;
@ -1023,6 +1033,19 @@ cChannel *cChannels::NewChannel(const cChannel *Transponder, const char *Name, c
return NULL; return NULL;
} }
#define CHANNELMARKOBSOLETE "OBSOLETE"
#define CHANNELTIMEOBSOLETE 3600 // seconds to wait before declaring a channel obsolete (in case it has actually been seen before)
void cChannels::MarkObsoleteChannels(int Source, int Nid, int Tid)
{
for (cChannel *channel = First(); channel; channel = Next(channel)) {
if (time(NULL) - channel->Seen() > CHANNELTIMEOBSOLETE && channel->Source() == Source && channel->Nid() == Nid && channel->Tid() == Tid) {
if (!endswith(channel->Name(), CHANNELMARKOBSOLETE))
channel->SetName(cString::sprintf("%s %s", channel->Name(), CHANNELMARKOBSOLETE), channel->ShortName(), cString::sprintf("%s %s", CHANNELMARKOBSOLETE, channel->Provider()));
}
}
}
cString ChannelString(const cChannel *Channel, int Number) cString ChannelString(const cChannel *Channel, int Number)
{ {
char buffer[256]; char buffer[256];

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 3.0 2012/06/17 11:21:33 kls Exp $ * $Id: channels.h 3.2 2014/01/04 15:01:21 kls Exp $
*/ */
#ifndef __CHANNELS_H #ifndef __CHANNELS_H
@ -22,6 +22,7 @@
#define CHANNELMOD_NAME 0x01 #define CHANNELMOD_NAME 0x01
#define CHANNELMOD_PIDS 0x02 #define CHANNELMOD_PIDS 0x02
#define CHANNELMOD_ID 0x04 #define CHANNELMOD_ID 0x04
#define CHANNELMOD_AUX 0x08
#define CHANNELMOD_CA 0x10 #define CHANNELMOD_CA 0x10
#define CHANNELMOD_TRANSP 0x20 #define CHANNELMOD_TRANSP 0x20
#define CHANNELMOD_LANGS 0x40 #define CHANNELMOD_LANGS 0x40
@ -127,6 +128,7 @@ private:
mutable cString shortNameSource; mutable cString shortNameSource;
cString parameters; cString parameters;
int modification; int modification;
time_t seen; // When this channel was last seen in the SDT of its transponder
mutable const cSchedule *schedule; mutable const cSchedule *schedule;
cLinkChannels *linkChannels; cLinkChannels *linkChannels;
cChannel *refChannel; cChannel *refChannel;
@ -186,6 +188,7 @@ public:
tChannelID GetChannelID(void) const { return tChannelID(source, nid, (nid || tid) ? tid : Transponder(), sid, rid); } tChannelID GetChannelID(void) const { return tChannelID(source, nid, (nid || tid) ? tid : Transponder(), sid, rid); }
bool HasTimer(void) const; bool HasTimer(void) const;
int Modification(int Mask = CHANNELMOD_ALL); int Modification(int Mask = CHANNELMOD_ALL);
time_t Seen(void) { return seen; }
void CopyTransponderData(const cChannel *Channel); void CopyTransponderData(const cChannel *Channel);
bool SetTransponderData(int Source, int Frequency, int Srate, const char *Parameters, bool Quiet = false); bool SetTransponderData(int Source, int Frequency, int Srate, const char *Parameters, bool Quiet = false);
void SetId(int Nid, int Tid, int Sid, int Rid = 0); void SetId(int Nid, int Tid, int Sid, int Rid = 0);
@ -197,6 +200,7 @@ public:
void SetLinkChannels(cLinkChannels *LinkChannels); void SetLinkChannels(cLinkChannels *LinkChannels);
void SetRefChannel(cChannel *RefChannel); void SetRefChannel(cChannel *RefChannel);
void SetSubtitlingDescriptors(uchar *SubtitlingTypes, uint16_t *CompositionPageIds, uint16_t *AncillaryPageIds); void SetSubtitlingDescriptors(uchar *SubtitlingTypes, uint16_t *CompositionPageIds, uint16_t *AncillaryPageIds);
void SetSeen(void);
}; };
class cChannels : public cRwLock, public cConfig<cChannel> { class cChannels : public cRwLock, public cConfig<cChannel> {
@ -236,6 +240,7 @@ public:
///< modification has been made, and 2 if the user has made a modification. ///< modification has been made, and 2 if the user has made a modification.
///< Calling this function resets the 'modified' flag to 0. ///< Calling this function resets the 'modified' flag to 0.
cChannel *NewChannel(const cChannel *Transponder, const char *Name, const char *ShortName, const char *Provider, int Nid, int Tid, int Sid, int Rid = 0); cChannel *NewChannel(const cChannel *Transponder, const char *Name, const char *ShortName, const char *Provider, int Nid, int Tid, int Sid, int Rid = 0);
void MarkObsoleteChannels(int Source, int Nid, int Tid);
}; };
extern cChannels Channels; extern cChannels Channels;

45
ci.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: ci.c 3.0 2013/02/17 13:17:28 kls Exp $ * $Id: ci.c 3.4 2014/01/02 10:31:12 kls Exp $
*/ */
#include "ci.h" #include "ci.h"
@ -19,6 +19,7 @@
#include <unistd.h> #include <unistd.h>
#include "device.h" #include "device.h"
#include "pat.h" #include "pat.h"
#include "receiver.h"
#include "tools.h" #include "tools.h"
// Set these to 'true' for debug output: // Set these to 'true' for debug output:
@ -102,6 +103,16 @@ static char *GetString(int &Length, const uint8_t **Data)
return NULL; return NULL;
} }
// --- cCaPidReceiver --------------------------------------------------------
// A dummy receiver, just used to make the device receive the CA pids.
class cCaPidReceiver : public cReceiver {
public:
virtual ~cCaPidReceiver() { Detach(); }
virtual void Receive(uchar *Data, int Length) {}
};
// --- cTPDU ----------------------------------------------------------------- // --- cTPDU -----------------------------------------------------------------
#define MAX_TPDU_SIZE 2048 #define MAX_TPDU_SIZE 2048
@ -403,7 +414,8 @@ void cCiSession::SendData(int Tag, int Length, const uint8_t *Data)
*p++ = Tag & 0xFF; *p++ = Tag & 0xFF;
p = SetLength(p, Length); p = SetLength(p, Length);
if (p - buffer + Length < int(sizeof(buffer))) { if (p - buffer + Length < int(sizeof(buffer))) {
memcpy(p, Data, Length); if (Data)
memcpy(p, Data, Length);
p += Length; p += Length;
tc->SendData(p - buffer, buffer); tc->SendData(p - buffer, buffer);
} }
@ -569,7 +581,7 @@ bool cCiApplicationInformation::EnterMenu(void)
#define CPCI_QUERY 0x03 #define CPCI_QUERY 0x03
#define CPCI_NOT_SELECTED 0x04 #define CPCI_NOT_SELECTED 0x04
class cCiCaPmt : public cListObject { class cCiCaPmt {
friend class cCiConditionalAccessSupport; friend class cCiConditionalAccessSupport;
private: private:
uint8_t cmdId; uint8_t cmdId;
@ -1552,9 +1564,10 @@ cCamSlots CamSlots;
#define MODULE_CHECK_INTERVAL 500 // ms #define MODULE_CHECK_INTERVAL 500 // ms
#define MODULE_RESET_TIMEOUT 2 // s #define MODULE_RESET_TIMEOUT 2 // s
cCamSlot::cCamSlot(cCiAdapter *CiAdapter) cCamSlot::cCamSlot(cCiAdapter *CiAdapter, bool ReceiveCaPids)
{ {
ciAdapter = CiAdapter; ciAdapter = CiAdapter;
caPidReceiver = ReceiveCaPids ? new cCaPidReceiver : NULL;
slotIndex = -1; slotIndex = -1;
lastModuleStatus = msReset; // avoids initial reset log message lastModuleStatus = msReset; // avoids initial reset log message
resetTime = 0; resetTime = 0;
@ -1571,6 +1584,7 @@ cCamSlot::cCamSlot(cCiAdapter *CiAdapter)
cCamSlot::~cCamSlot() cCamSlot::~cCamSlot()
{ {
delete caPidReceiver;
CamSlots.Del(this, false); CamSlots.Del(this, false);
DeleteAllConnections(); DeleteAllConnections();
} }
@ -1801,6 +1815,10 @@ void cCamSlot::SendCaPmt(uint8_t CmdId)
const int *CaSystemIds = cas->GetCaSystemIds(); const int *CaSystemIds = cas->GetCaSystemIds();
if (CaSystemIds && *CaSystemIds) { if (CaSystemIds && *CaSystemIds) {
if (caProgramList.Count()) { if (caProgramList.Count()) {
if (caPidReceiver && caPidReceiver->NumPids()) {
if (cDevice *d = Device())
d->Detach(caPidReceiver);
}
for (int Loop = 1; Loop <= 2; Loop++) { for (int Loop = 1; Loop <= 2; Loop++) {
for (cCiCaProgramData *p = caProgramList.First(); p; p = caProgramList.Next(p)) { for (cCiCaProgramData *p = caProgramList.First(); p; p = caProgramList.Next(p)) {
if (p->modified || resendPmt) { if (p->modified || resendPmt) {
@ -1813,6 +1831,15 @@ void cCamSlot::SendCaPmt(uint8_t CmdId)
} }
} }
if ((Loop == 1) != Active) { // first remove, then add if ((Loop == 1) != Active) { // first remove, then add
if (caPidReceiver) {
int CaPids[MAXRECEIVEPIDS + 1];
if (GetCaPids(source, transponder, p->programNumber, CaSystemIds, MAXRECEIVEPIDS + 1, CaPids) > 0) {
if (Loop == 1)
caPidReceiver->DelPids(CaPids);
else
caPidReceiver->AddPids(CaPids);
}
}
if (cas->RepliesToQuery()) if (cas->RepliesToQuery())
CaPmt.SetListManagement(Active ? CPLM_ADD : CPLM_UPDATE); CaPmt.SetListManagement(Active ? CPLM_ADD : CPLM_UPDATE);
if (Active || cas->RepliesToQuery()) if (Active || cas->RepliesToQuery())
@ -1822,6 +1849,10 @@ void cCamSlot::SendCaPmt(uint8_t CmdId)
} }
} }
} }
if (caPidReceiver && caPidReceiver->NumPids()) {
if (cDevice *d = Device())
d->AttachReceiver(caPidReceiver);
}
resendPmt = false; resendPmt = false;
} }
else { else {
@ -1983,6 +2014,12 @@ bool cCamSlot::IsDecrypting(void)
return false; return false;
} }
uchar *cCamSlot::Decrypt(uchar *Data, int &Count)
{
Count = TS_SIZE;
return Data;
}
// --- cChannelCamRelation --------------------------------------------------- // --- cChannelCamRelation ---------------------------------------------------
#define CAM_CHECKED_TIMEOUT 15 // seconds before a CAM that has been checked for a particular channel will be checked again #define CAM_CHECKED_TIMEOUT 15 // seconds before a CAM that has been checked for a particular channel will be checked again

73
ci.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: ci.h 3.0 2012/02/29 10:24:27 kls Exp $ * $Id: ci.h 3.3 2014/01/02 10:14:39 kls Exp $
*/ */
#ifndef __CI_H #ifndef __CI_H
@ -121,6 +121,7 @@ class cTPDU;
class cCiTransportConnection; class cCiTransportConnection;
class cCiSession; class cCiSession;
class cCiCaProgramData; class cCiCaProgramData;
class cReceiver;
class cCamSlot : public cListObject { class cCamSlot : public cListObject {
friend class cCiAdapter; friend class cCiAdapter;
@ -129,6 +130,7 @@ private:
cMutex mutex; cMutex mutex;
cCondVar processed; cCondVar processed;
cCiAdapter *ciAdapter; cCiAdapter *ciAdapter;
cReceiver *caPidReceiver;
int slotIndex; int slotIndex;
int slotNumber; int slotNumber;
cCiTransportConnection *tc[MAX_CONNECTIONS_PER_CAM_SLOT + 1]; // connection numbering starts with 1 cCiTransportConnection *tc[MAX_CONNECTIONS_PER_CAM_SLOT + 1]; // connection numbering starts with 1
@ -147,10 +149,13 @@ private:
void Write(cTPDU *TPDU); void Write(cTPDU *TPDU);
cCiSession *GetSessionByResourceId(uint32_t ResourceId); cCiSession *GetSessionByResourceId(uint32_t ResourceId);
public: public:
cCamSlot(cCiAdapter *CiAdapter); cCamSlot(cCiAdapter *CiAdapter, bool ReceiveCaPids = false);
///< Creates a new CAM slot for the given CiAdapter. ///< Creates a new CAM slot for the given CiAdapter.
///< The CiAdapter will take care of deleting the CAM slot, ///< The CiAdapter will take care of deleting the CAM slot,
///< so the caller must not delete it! ///< so the caller must not delete it!
///< If ReceiveCaPids is true, the CAM slot will take care that the CA pids
///< of the selected programmes will be included in the TS data stream that
///< is presented to the Decrypt() function.
virtual ~cCamSlot(); virtual ~cCamSlot();
bool Assign(cDevice *Device, bool Query = false); bool Assign(cDevice *Device, bool Query = false);
///< Assigns this CAM slot to the given Device, if this is possible. ///< Assigns this CAM slot to the given Device, if this is possible.
@ -169,50 +174,50 @@ public:
int SlotNumber(void) { return slotNumber; } int SlotNumber(void) { return slotNumber; }
///< Returns the number of this CAM slot within the whole system. ///< Returns the number of this CAM slot within the whole system.
///< The first slot has the number 1. ///< The first slot has the number 1.
bool Reset(void); virtual bool Reset(void);
///< Resets the CAM in this slot. ///< Resets the CAM in this slot.
///< Returns true if the operation was successful. ///< Returns true if the operation was successful.
eModuleStatus ModuleStatus(void); virtual eModuleStatus ModuleStatus(void);
///< Returns the status of the CAM in this slot. ///< Returns the status of the CAM in this slot.
const char *GetCamName(void); virtual const char *GetCamName(void);
///< Returns the name of the CAM in this slot, or NULL if there is ///< Returns the name of the CAM in this slot, or NULL if there is
///< no ready CAM in this slot. ///< no ready CAM in this slot.
bool Ready(void); virtual bool Ready(void);
///< Returns 'true' if the CAM in this slot is ready to decrypt. ///< Returns 'true' if the CAM in this slot is ready to decrypt.
bool HasMMI(void); virtual bool HasMMI(void);
///< Returns 'true' if the CAM in this slot has an active MMI. ///< Returns 'true' if the CAM in this slot has an active MMI.
bool HasUserIO(void); virtual bool HasUserIO(void);
///< Returns true if there is a pending user interaction, which shall ///< Returns true if there is a pending user interaction, which shall
///< be retrieved via GetMenu() or GetEnquiry(). ///< be retrieved via GetMenu() or GetEnquiry().
bool EnterMenu(void); virtual bool EnterMenu(void);
///< Requests the CAM in this slot to start its menu. ///< Requests the CAM in this slot to start its menu.
cCiMenu *GetMenu(void); virtual cCiMenu *GetMenu(void);
///< Gets a pending menu, or NULL if there is no menu. ///< Gets a pending menu, or NULL if there is no menu.
cCiEnquiry *GetEnquiry(void); virtual cCiEnquiry *GetEnquiry(void);
///< Gets a pending enquiry, or NULL if there is no enquiry. ///< Gets a pending enquiry, or NULL if there is no enquiry.
int Priority(void); int Priority(void);
///< Returns the priority if the device this slot is currently assigned ///< Returns the priority if the device this slot is currently assigned
///< to, or IDLEPRIORITY if it is not assigned to any device. ///< to, or IDLEPRIORITY if it is not assigned to any device.
bool ProvidesCa(const int *CaSystemIds); virtual bool ProvidesCa(const int *CaSystemIds);
///< Returns true if the CAM in this slot provides one of the given ///< Returns true if the CAM in this slot provides one of the given
///< CaSystemIds. This doesn't necessarily mean that it will be ///< CaSystemIds. This doesn't necessarily mean that it will be
///< possible to actually decrypt such a programme, since CAMs ///< possible to actually decrypt such a programme, since CAMs
///< usually advertise several CA system ids, while the actual ///< usually advertise several CA system ids, while the actual
///< decryption is controlled by the smart card inserted into ///< decryption is controlled by the smart card inserted into
///< the CAM. ///< the CAM.
void AddPid(int ProgramNumber, int Pid, int StreamType); virtual void AddPid(int ProgramNumber, int Pid, int StreamType);
///< Adds the given PID information to the list of PIDs. A later call ///< Adds the given PID information to the list of PIDs. A later call
///< to SetPid() will (de)activate one of these entries. ///< to SetPid() will (de)activate one of these entries.
void SetPid(int Pid, bool Active); virtual void SetPid(int Pid, bool Active);
///< Sets the given Pid (which has previously been added through a ///< Sets the given Pid (which has previously been added through a
///< call to AddPid()) to Active. A later call to StartDecrypting() will ///< call to AddPid()) to Active. A later call to StartDecrypting() will
///< send the full list of currently active CA_PMT entries to the CAM. ///< send the full list of currently active CA_PMT entries to the CAM.
void AddChannel(const cChannel *Channel); virtual void AddChannel(const cChannel *Channel);
///< Adds all PIDs if the given Channel to the current list of PIDs. ///< Adds all PIDs if the given Channel to the current list of PIDs.
///< If the source or transponder of the channel are different than ///< If the source or transponder of the channel are different than
///< what was given in a previous call to AddChannel(), any previously ///< what was given in a previous call to AddChannel(), any previously
///< added PIDs will be cleared. ///< added PIDs will be cleared.
bool CanDecrypt(const cChannel *Channel); virtual bool CanDecrypt(const cChannel *Channel);
///< Returns true if there is a CAM in this slot that is able to decrypt ///< Returns true if there is a CAM in this slot that is able to decrypt
///< the given Channel (or at least claims to be able to do so). ///< the given Channel (or at least claims to be able to do so).
///< Since the QUERY/REPLY mechanism for CAMs is pretty unreliable (some ///< Since the QUERY/REPLY mechanism for CAMs is pretty unreliable (some
@ -223,13 +228,43 @@ public:
///< to the initial QUERY will perform this check at all. CAMs that never ///< to the initial QUERY will perform this check at all. CAMs that never
///< replied to the initial QUERY are assumed not to be able to handle ///< replied to the initial QUERY are assumed not to be able to handle
///< more than one channel at a time. ///< more than one channel at a time.
void StartDecrypting(void); virtual void StartDecrypting(void);
///< Triggers sending all currently active CA_PMT entries to the CAM, ///< Triggers sending all currently active CA_PMT entries to the CAM,
///< so that it will start decrypting. ///< so that it will start decrypting.
void StopDecrypting(void); virtual void StopDecrypting(void);
///< Clears the list of CA_PMT entries and tells the CAM to stop decrypting. ///< Clears the list of CA_PMT entries and tells the CAM to stop decrypting.
bool IsDecrypting(void); virtual bool IsDecrypting(void);
///< Returns true if the CAM in this slot is currently used for decrypting. ///< Returns true if the CAM in this slot is currently used for decrypting.
virtual uchar *Decrypt(uchar *Data, int &Count);
///< If this is a CAM slot that can be freely assigned to any device,
///< but will not be directly inserted into the full TS data stream
///< in hardware, it can implement this function to be given access
///< to the data in the device's TS buffer. Data points to a buffer
///< of Count bytes of TS data. The first byte in Data is guaranteed
///< to be a TS_SYNC_BYTE.
///< There are three possible ways a CAM can handle decryption:
///< 1. If the full TS data is physically routed through the CAM in hardware,
///< there is no need to reimplement this function.
///< The default implementation simply sets Count to TS_SIZE and returns Data.
///< 2. If the CAM works directly on Data and decrypts the TS "in place" it
///< shall decrypt at least the very first TS packet in Data, set Count to
///< TS_SIZE and return Data. It may decrypt as many TS packets in Data as it
///< wants, but it must decrypt at least the very first TS packet. Only this
///< very first TS packet will be further processed after the call to this
///< function. The next call will be done with Data pointing to the TS packet
///< immediately following the previous one.
///< 3. If the CAM needs to copy the data into a buffer of its own, and/or send
///< the data to some file handle for processing and later retrieval, it shall
///< set Count to the number of bytes it has read from Data and return a pointer
///< to the next available decrypted TS packet (which will *not* be in the
///< memory area pointed to by Data, but rather in some buffer that is under
///< the CAM's control). If no decrypted TS packet is currently available, NULL
///< shall be returned. If no data from Data can currently be processed, Count
///< shall be set to 0 and the same Data pointer will be offered in the next
///< call to Decrypt().
///< A derived class that implements this function will also need
///< to set the ReceiveCaPids parameter in the call to the base class
///< constructor to true in order to receive the CA pid data.
}; };
class cCamSlots : public cList<cCamSlot> {}; class cCamSlots : public cList<cCamSlot> {};

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 3.4 2013/10/19 11:32:15 kls Exp $ * $Id: config.h 3.5 2013/10/20 09:32:23 kls Exp $
*/ */
#ifndef __CONFIG_H #ifndef __CONFIG_H
@ -22,13 +22,13 @@
// VDR's own version number: // VDR's own version number:
#define VDRVERSION "2.1.2" #define VDRVERSION "2.1.3"
#define VDRVERSNUM 20102 // Version * 10000 + Major * 100 + Minor #define VDRVERSNUM 20103 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number: // The plugin API's version number:
#define APIVERSION "2.1.2" #define APIVERSION "2.1.3"
#define APIVERSNUM 20102 // Version * 10000 + Major * 100 + Minor #define APIVERSNUM 20103 // 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

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 3.3 2013/08/22 10:28:55 kls Exp $ * $Id: device.c 3.7 2014/01/02 10:31:58 kls Exp $
*/ */
#include "device.h" #include "device.h"
@ -1121,7 +1121,7 @@ int64_t cDevice::GetSTC(void)
return -1; return -1;
} }
void cDevice::TrickSpeed(int Speed) void cDevice::TrickSpeed(int Speed, bool Forward)
{ {
} }
@ -1666,7 +1666,7 @@ bool cDevice::AttachReceiver(cReceiver *Receiver)
Receiver->device = this; Receiver->device = this;
receiver[i] = Receiver; receiver[i] = Receiver;
Unlock(); Unlock();
if (camSlot) { if (camSlot && Receiver->priority > MINPRIORITY) { // priority check to avoid an infinite loop with the CAM slot's caPidReceiver
camSlot->StartDecrypting(); camSlot->StartDecrypting();
startScrambleDetection = time(NULL); startScrambleDetection = time(NULL);
} }
@ -1697,7 +1697,7 @@ void cDevice::Detach(cReceiver *Receiver)
else if (receiver[i]) else if (receiver[i])
receiversLeft = true; receiversLeft = true;
} }
if (camSlot) if (camSlot && Receiver->priority > MINPRIORITY) // priority check to avoid an infinite loop with the CAM slot's caPidReceiver
camSlot->StartDecrypting(); camSlot->StartDecrypting();
if (!receiversLeft) if (!receiversLeft)
Cancel(-1); Cancel(-1);
@ -1764,7 +1764,7 @@ void cTSBuffer::Action(void)
} }
} }
uchar *cTSBuffer::Get(void) uchar *cTSBuffer::Get(int *Available)
{ {
int Count = 0; int Count = 0;
if (delivered) { if (delivered) {
@ -1785,7 +1785,15 @@ uchar *cTSBuffer::Get(void)
return NULL; return NULL;
} }
delivered = true; delivered = true;
if (Available)
*Available = Count;
return p; return p;
} }
return NULL; return NULL;
} }
void cTSBuffer::Skip(int Count)
{
ringBuffer->Del(Count);
delivered = 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: device.h 3.3 2013/10/09 08:25:16 kls Exp $ * $Id: device.h 3.8 2014/01/02 10:47:08 kls Exp $
*/ */
#ifndef __DEVICE_H #ifndef __DEVICE_H
@ -35,6 +35,7 @@
enum eSetChannelResult { scrOk, scrNotAvailable, scrNoTransfer, scrFailed }; enum eSetChannelResult { scrOk, scrNotAvailable, scrNoTransfer, scrFailed };
// Note that VDR itself always uses pmAudioVideo when replaying a recording!
enum ePlayMode { pmNone, // audio/video from decoder enum ePlayMode { pmNone, // audio/video from decoder
pmAudioVideo, // audio/video from player pmAudioVideo, // audio/video from player
pmAudioOnly, // audio only from player, video from decoder pmAudioOnly, // audio only from player, video from decoder
@ -698,10 +699,11 @@ public:
virtual bool HasIBPTrickSpeed(void) { return false; } virtual bool HasIBPTrickSpeed(void) { return false; }
///< Returns true if this device can handle all frames in 'fast forward' ///< Returns true if this device can handle all frames in 'fast forward'
///< trick speeds. ///< trick speeds.
virtual void TrickSpeed(int Speed); virtual void TrickSpeed(int Speed, bool Forward);
///< Sets the device into a mode where replay is done slower. ///< Sets the device into a mode where replay is done slower.
///< Every single frame shall then be displayed the given number of ///< Every single frame shall then be displayed the given number of
///< times. ///< times. Forward is true if replay is done in the normal (forward)
///< direction, false if it is done reverse.
///< The cDvbPlayer uses the following values for the various speeds: ///< The cDvbPlayer uses the following values for the various speeds:
///< 1x 2x 3x ///< 1x 2x 3x
///< Fast Forward 6 3 1 ///< Fast Forward 6 3 1
@ -723,7 +725,7 @@ public:
///< all registered cAudio objects are notified. ///< all registered cAudio objects are notified.
virtual void StillPicture(const uchar *Data, int Length); virtual void StillPicture(const uchar *Data, int Length);
///< Displays the given I-frame as a still picture. ///< Displays the given I-frame as a still picture.
///< Data points either to TS (first byte is 0x47) or PES (first byte ///< Data points either to a series of TS (first byte is 0x47) or PES (first byte
///< is 0x00) data of the given Length. The default implementation ///< is 0x00) data of the given Length. The default implementation
///< converts TS to PES and calls itself again, allowing a derived class ///< converts TS to PES and calls itself again, allowing a derived class
///< to display PES if it can't handle TS directly. ///< to display PES if it can't handle TS directly.
@ -827,8 +829,21 @@ private:
virtual void Action(void); virtual void Action(void);
public: public:
cTSBuffer(int File, int Size, int CardIndex); cTSBuffer(int File, int Size, int CardIndex);
~cTSBuffer(); virtual ~cTSBuffer();
uchar *Get(void); uchar *Get(int *Available = NULL);
///< Returns a pointer to the first TS packet in the buffer. If Available is given,
///< it will return the total number of consecutive bytes pointed to in the buffer.
///< It is guaranteed that the returned pointer points to a TS_SYNC_BYTE and that
///< there are at least TS_SIZE bytes in the buffer. Otherwise NULL will be
///< returned and the value in Available (if given) is undefined.
///< Each call to Get() returns a pointer to the next TS packet in the buffer.
void Skip(int Count);
///< If after a call to Get() more or less than TS_SIZE of the available data
///< has been processed, a call to Skip() with the number of processed bytes
///< will disable the automatic incrementing of the data pointer as described
///< in Get() and skip the given number of bytes instead. Count may be 0 if the
///< caller wants the previous TS packet to be delivered again in the next call
///< to Get().
}; };
#endif //__DEVICE_H #endif //__DEVICE_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: diseqc.c 3.2 2013/08/21 09:26:11 kls Exp $ * $Id: diseqc.c 3.3 2013/12/28 11:33:08 kls Exp $
*/ */
#include "diseqc.h" #include "diseqc.h"
@ -228,9 +228,9 @@ bool cDiseqc::Parse(const char *s)
devices = CurrentDevices; devices = CurrentDevices;
bool result = false; bool result = false;
char *sourcebuf = NULL; char *sourcebuf = NULL;
int fields = sscanf(s, "%a[^ ] %d %c %d %a[^\n]", &sourcebuf, &slof, &polarization, &lof, &commands); int fields = sscanf(s, "%m[^ ] %d %c %d %m[^\n]", &sourcebuf, &slof, &polarization, &lof, &commands);
if (fields == 4) if (fields == 4)
commands = NULL; //XXX Apparently sscanf() doesn't work correctly if the last %a argument results in an empty string commands = NULL; //XXX Apparently sscanf() doesn't work correctly if the last %m argument results in an empty string
if (4 <= fields && fields <= 5) { if (4 <= fields && fields <= 5) {
source = cSource::FromString(sourcebuf); source = cSource::FromString(sourcebuf);
if (Sources.Get(source)) { if (Sources.Get(source)) {

View File

@ -7,7 +7,7 @@
# satellite: one of the 'S' codes defined in sources.conf # satellite: one of the 'S' codes defined in sources.conf
# the special value 'S360E' means that this entry uses a positioner # the special value 'S360E' means that this entry uses a positioner
# (command 'P') that can move the dish to any requested satellite # (command 'P') that can move the dish to any requested satellite
# position withing its range # position within its range
# slof: switch frequency of LNB; the first entry with # slof: switch frequency of LNB; the first entry with
# an slof greater than the actual transponder # an slof greater than the actual transponder
# frequency will be used # frequency will 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: dvbdevice.c 3.4 2013/10/13 14:41:57 kls Exp $ * $Id: dvbdevice.c 3.8 2014/01/02 10:30:15 kls Exp $
*/ */
#include "dvbdevice.h" #include "dvbdevice.h"
@ -558,8 +558,6 @@ int cDvbTuner::GetSignalStrength(void) const
case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2) case 0x13C21019: // TT-budget S2-3200 (DVB-S/DVB-S2)
case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2) case 0x1AE40001: // TechniSat SkyStar HD2 (DVB-S/DVB-S2)
MaxSignal = 670; break; MaxSignal = 670; break;
case 0x13D02103: // TechniSat SkyStar 2 DVB-S rev 2.3P
MaxSignal = 0x4925; break;
} }
int s = int(Signal) * 100 / MaxSignal; int s = int(Signal) * 100 / MaxSignal;
if (s > 100) if (s > 100)
@ -1206,8 +1204,8 @@ bool cDvbDevice::Initialize(void)
} }
} }
} }
int Checked = 0;
int Found = 0; int Found = 0;
int Used = 0;
if (Nodes.Size() > 0) { if (Nodes.Size() > 0) {
Nodes.Sort(); Nodes.Sort();
for (int i = 0; i < Nodes.Size(); i++) { for (int i = 0; i < Nodes.Size(); i++) {
@ -1215,10 +1213,11 @@ bool cDvbDevice::Initialize(void)
int Frontend; int Frontend;
if (2 == sscanf(Nodes[i], "%d %d", &Adapter, &Frontend)) { if (2 == sscanf(Nodes[i], "%d %d", &Adapter, &Frontend)) {
if (Exists(Adapter, Frontend)) { if (Exists(Adapter, Frontend)) {
if (Checked++ < MAXDVBDEVICES) { if (Found < MAXDEVICES) {
Found++;
if (UseDevice(NextCardIndex())) { if (UseDevice(NextCardIndex())) {
if (Probe(Adapter, Frontend)) if (Probe(Adapter, Frontend))
Found++; Used++;
} }
else else
NextCardIndex(1); // skips this one NextCardIndex(1); // skips this one
@ -1227,9 +1226,11 @@ bool cDvbDevice::Initialize(void)
} }
} }
} }
NextCardIndex(MAXDVBDEVICES - Checked); // skips the rest if (Found > 0) {
if (Found > 0)
isyslog("found %d DVB device%s", Found, Found > 1 ? "s" : ""); isyslog("found %d DVB device%s", Found, Found > 1 ? "s" : "");
if (Used != Found)
isyslog("using only %d DVB device%s", Used, Used > 1 ? "s" : "");
}
else else
isyslog("no DVB device found"); isyslog("no DVB device found");
return Found > 0; return Found > 0;
@ -1670,7 +1671,12 @@ void cDvbDevice::CloseDvr(void)
bool cDvbDevice::GetTSPacket(uchar *&Data) bool cDvbDevice::GetTSPacket(uchar *&Data)
{ {
if (tsBuffer) { if (tsBuffer) {
Data = tsBuffer->Get(); int Available;
Data = tsBuffer->Get(&Available);
if (Data && CamSlot()) {
Data = CamSlot()->Decrypt(Data, Available);
tsBuffer->Skip(Available);
}
return true; return true;
} }
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 3.2 2013/06/01 11:36:18 kls Exp $ * $Id: dvbdevice.h 3.3 2014/01/01 14:00:56 kls Exp $
*/ */
#ifndef __DVBDEVICE_H #ifndef __DVBDEVICE_H
@ -67,7 +67,6 @@ enum {
// --- End of definitions for older DVB API versions ------------------------- // --- End of definitions for older DVB API versions -------------------------
#define MAXDVBDEVICES 8
#define MAXDELIVERYSYSTEMS 8 #define MAXDELIVERYSYSTEMS 8
#define DEV_VIDEO "/dev/video" #define DEV_VIDEO "/dev/video"

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: dvbplayer.c 3.0 2013/03/08 13:44:19 kls Exp $ * $Id: dvbplayer.c 3.1 2013/12/25 13:24:07 kls Exp $
*/ */
#include "dvbplayer.h" #include "dvbplayer.h"
@ -324,7 +324,7 @@ void cDvbPlayer::TrickSpeed(int Increment)
int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult; int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult;
if (sp > MAX_VIDEO_SLOWMOTION) if (sp > MAX_VIDEO_SLOWMOTION)
sp = MAX_VIDEO_SLOWMOTION; sp = MAX_VIDEO_SLOWMOTION;
DeviceTrickSpeed(sp); DeviceTrickSpeed(sp, playDir == pdForward);
} }
} }

6
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 3.2 2013/10/12 11:10:11 kls Exp $ * $Id: eit.c 3.3 2013/11/03 13:55:00 kls Exp $
*/ */
#include "eit.h" #include "eit.h"
@ -54,8 +54,8 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
bool Modified = false; bool Modified = false;
time_t SegmentStart = 0; time_t SegmentStart = 0;
time_t SegmentEnd = 0; time_t SegmentEnd = 0;
struct tm tm_r; struct tm t = { 0 };
struct tm t = *localtime_r(&Now, &tm_r); // this initializes the time zone in 't' localtime_r(&Now, &t); // this initializes the time zone in 't'
SI::EIT::Event SiEitEvent; SI::EIT::Event SiEitEvent;
for (SI::Loop::Iterator it; eventLoop.getNext(SiEitEvent, it); ) { for (SI::Loop::Iterator it; eventLoop.getNext(SiEitEvent, it); ) {

4
epg.c
View File

@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by * Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
* *
* $Id: epg.c 3.2 2013/08/31 13:21:09 kls Exp $ * $Id: epg.c 3.3 2013/12/28 11:33:08 kls Exp $
*/ */
#include "epg.h" #include "epg.h"
@ -32,7 +32,7 @@ cString tComponent::ToString(void)
bool tComponent::FromString(const char *s) bool tComponent::FromString(const char *s)
{ {
unsigned int Stream, Type; unsigned int Stream, Type;
int n = sscanf(s, "%X %02X %7s %a[^\n]", &Stream, &Type, language, &description); // 7 = MAXLANGCODE2 - 1 int n = sscanf(s, "%X %02X %7s %m[^\n]", &Stream, &Type, language, &description); // 7 = MAXLANGCODE2 - 1
if (n != 4 || isempty(description)) { if (n != 4 || isempty(description)) {
free(description); free(description);
description = NULL; description = NULL;

View File

@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or * * the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. * * (at your option) any later version. *
* * * *
* $Id: descriptor.c 3.0 2012/01/11 11:35:17 kls Exp $ * $Id: descriptor.c 3.1 2013/10/30 10:16:18 kls Exp $
* * * *
***************************************************************************/ ***************************************************************************/
@ -922,6 +922,48 @@ int T2DeliverySystemDescriptor::getTfsFlag() const {
return extended_data_flag ? s->tfs_flag : -1; return extended_data_flag ? s->tfs_flag : -1;
} }
void LogicalChannelDescriptor::Parse() {
//this descriptor is only a header and a loop
logicalChannelLoop.setData(data+sizeof(descr_logical_channel), getLength()-sizeof(descr_logical_channel));
}
int LogicalChannelDescriptor::LogicalChannel::getServiceId() const {
return HILO(s->service_id);
}
int LogicalChannelDescriptor::LogicalChannel::getVisibleServiceFlag() const {
return s->visible_service_flag;
}
int LogicalChannelDescriptor::LogicalChannel::getLogicalChannelNumber() const {
return HILO(s->logical_channel_number);
}
void LogicalChannelDescriptor::LogicalChannel::Parse() {
s=data.getData<const item_logical_channel>();
}
void HdSimulcastLogicalChannelDescriptor::Parse() {
//this descriptor is only a header and a loop
hdSimulcastLogicalChannelLoop.setData(data+sizeof(descr_hd_simulcast_logical_channel), getLength()-sizeof(descr_hd_simulcast_logical_channel));
}
int HdSimulcastLogicalChannelDescriptor::HdSimulcastLogicalChannel::getServiceId() const {
return HILO(s->service_id);
}
int HdSimulcastLogicalChannelDescriptor::HdSimulcastLogicalChannel::getVisibleServiceFlag() const {
return s->visible_service_flag;
}
int HdSimulcastLogicalChannelDescriptor::HdSimulcastLogicalChannel::getLogicalChannelNumber() const {
return HILO(s->logical_channel_number);
}
void HdSimulcastLogicalChannelDescriptor::HdSimulcastLogicalChannel::Parse() {
s=data.getData<const item_hd_simulcast_logical_channel>();
}
int PremiereContentTransmissionDescriptor::getOriginalNetworkId() const { int PremiereContentTransmissionDescriptor::getOriginalNetworkId() const {
return HILO(s->original_network_id); return HILO(s->original_network_id);
} }
@ -1145,4 +1187,59 @@ void RegistrationDescriptor::Parse() {
privateData.assign(data.getData(offset), getLength()-offset); privateData.assign(data.getData(offset), getLength()-offset);
} }
int AVCDescriptor::getProfileIdc() const {
return s->profile_idc;
}
int AVCDescriptor::getConstraintSet0Flag() const {
return s->constraint_set0_flag;
}
int AVCDescriptor::getConstraintSet1Flag() const {
return s->constraint_set1_flag;
}
int AVCDescriptor::getConstraintSet2Flag() const {
return s->constraint_set2_flag;
}
int AVCDescriptor::getConstraintSet3Flag() const {
return s->constraint_set3_flag;
}
int AVCDescriptor::getConstraintSet4Flag() const {
return s->constraint_set4_flag;
}
int AVCDescriptor::getConstraintSet5Flag() const {
return s->constraint_set5_flag;
}
int AVCDescriptor::getAVCCompatibleFlags() const {
return s->avc_compatible_flags;
}
int AVCDescriptor::getLevelIdc() const {
return s->level_idc;
}
int AVCDescriptor::getAVCStillPresent() const {
return s->avc_still_present;
}
int AVCDescriptor::getAVC24HourPictureFlag() const {
return s->avc_24_hour_picture_flag;
}
int AVCDescriptor::getFramePackingSEINotPresentFlag() const {
return s->frame_packing_sei_not_present_flag;
}
void AVCDescriptor::Parse() {
int offset=0;
data.setPointerAndOffset<const descr_avc>(s, offset);
if (checkSize(getLength()-offset))
privateData.assign(data.getData(offset), getLength()-offset);
}
} //end of namespace } //end of namespace

View File

@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or * * the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. * * (at your option) any later version. *
* * * *
* $Id: descriptor.h 3.0 2012/01/11 11:35:17 kls Exp $ * $Id: descriptor.h 3.1 2013/10/30 10:16:18 kls Exp $
* * * *
***************************************************************************/ ***************************************************************************/
@ -557,6 +557,42 @@ private:
int extended_data_flag; int extended_data_flag;
}; };
class LogicalChannelDescriptor : public Descriptor {
public:
class LogicalChannel : public LoopElement {
public:
int getServiceId() const;
int getVisibleServiceFlag() const;
int getLogicalChannelNumber() const;
virtual int getLength() { return sizeof(item_logical_channel); }
protected:
virtual void Parse();
private:
const item_logical_channel *s;
};
StructureLoop<LogicalChannel> logicalChannelLoop;
protected:
virtual void Parse();
};
class HdSimulcastLogicalChannelDescriptor : public Descriptor {
public:
class HdSimulcastLogicalChannel : public LoopElement {
public:
int getServiceId() const;
int getVisibleServiceFlag() const;
int getLogicalChannelNumber() const;
virtual int getLength() { return sizeof(item_hd_simulcast_logical_channel); }
protected:
virtual void Parse();
private:
const item_hd_simulcast_logical_channel *s;
};
StructureLoop<HdSimulcastLogicalChannel> hdSimulcastLogicalChannelLoop;
protected:
virtual void Parse();
};
// Private DVB Descriptor Premiere.de // Private DVB Descriptor Premiere.de
// 0xF2 Content Transmission Descriptor // 0xF2 Content Transmission Descriptor
// http://dvbsnoop.sourceforge.net/examples/example-private-section.html // http://dvbsnoop.sourceforge.net/examples/example-private-section.html
@ -735,6 +771,27 @@ private:
const descr_registration *s; const descr_registration *s;
}; };
class AVCDescriptor : public Descriptor {
public:
int getProfileIdc() const;
int getConstraintSet0Flag() const;
int getConstraintSet1Flag() const;
int getConstraintSet2Flag() const;
int getConstraintSet3Flag() const;
int getConstraintSet4Flag() const;
int getConstraintSet5Flag() const;
int getAVCCompatibleFlags() const;
int getLevelIdc() const;
int getAVCStillPresent() const;
int getAVC24HourPictureFlag() const;
int getFramePackingSEINotPresentFlag() const;
CharArray privateData;
protected:
virtual void Parse();
private:
const descr_avc *s;
};
} //end of namespace } //end of namespace
#endif //LIBSI_TABLE_H #endif //LIBSI_TABLE_H

View File

@ -10,7 +10,7 @@
* the Free Software Foundation; either version 2 of the License, or * * the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. * * (at your option) any later version. *
* * * *
* $Id: headers.h 3.0 2012/06/09 14:37:24 kls Exp $ * $Id: headers.h 3.1 2013/10/30 10:16:18 kls Exp $
* * * *
***************************************************************************/ ***************************************************************************/
@ -1870,6 +1870,54 @@ struct descr_t2_delivery_system {
fields looping to the end */ fields looping to the end */
}; };
/* 0x83 logical_channel_descriptor */
#define DESCR_LOGICAL_CHANNEL_LEN 2
struct descr_logical_channel {
u_char descriptor_tag :8;
u_char descriptor_length :8;
};
#define ITEM_LOGICAL_CHANNEL_LEN 4
struct item_logical_channel {
u_char service_id_hi :8;
u_char service_id_lo :8;
#if BYTE_ORDER == BIG_ENDIAN
u_char visible_service_flag :1;
u_char reserved :5;
u_char logical_channel_number_hi :2;
#else
u_char logical_channel_number_hi :2;
u_char reserved :5;
u_char visible_service_flag :1;
#endif
u_char logical_channel_number_lo :8;
};
/* 0x88 hd_simulcast_logical_channel_descriptor */
#define DESCR_HD_SIMULCAST_LOGICAL_CHANNEL_LEN 2
struct descr_hd_simulcast_logical_channel {
u_char descriptor_tag :8;
u_char descriptor_length :8;
};
#define ITEM_HD_SIMULCAST_LOGICAL_CHANNEL_LEN 4
struct item_hd_simulcast_logical_channel {
u_char service_id_hi :8;
u_char service_id_lo :8;
#if BYTE_ORDER == BIG_ENDIAN
u_char visible_service_flag :1;
u_char reserved :5;
u_char logical_channel_number_hi :2;
#else
u_char logical_channel_number_hi :2;
u_char reserved :5;
u_char visible_service_flag :1;
#endif
u_char logical_channel_number_lo :8;
};
/* MHP 0x00 application_descriptor */ /* MHP 0x00 application_descriptor */
#define DESCR_APPLICATION_LEN 3 #define DESCR_APPLICATION_LEN 3
@ -2088,6 +2136,27 @@ struct descr_registration {
u_char format_identifier_lo_lo :8; u_char format_identifier_lo_lo :8;
}; };
/* 0x28 avc_descriptor */
#define DESCR_AVC_LEN 6
struct descr_avc {
u_char descriptor_tag :8;
u_char descriptor_length :8;
u_char profile_idc :8;
u_char constraint_set0_flag :1;
u_char constraint_set1_flag :1;
u_char constraint_set2_flag :1;
u_char constraint_set3_flag :1;
u_char constraint_set4_flag :1;
u_char constraint_set5_flag :1;
u_char avc_compatible_flags :2;
u_char level_idc :8;
u_char avc_still_present :1;
u_char avc_24_hour_picture_flag :1;
u_char frame_packing_sei_not_present_flag :1;
u_char reserved :5;
};
} //end of namespace } //end of namespace
#endif //LIBSI_HEADERS_H #endif //LIBSI_HEADERS_H

View File

@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or * * the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. * * (at your option) any later version. *
* * * *
* $Id: si.c 3.0 2012/09/29 14:44:20 kls Exp $ * $Id: si.c 3.1 2013/10/30 10:16:18 kls Exp $
* * * *
***************************************************************************/ ***************************************************************************/
@ -508,6 +508,9 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain,
case CarouselIdentifierDescriptorTag: case CarouselIdentifierDescriptorTag:
d=new CarouselIdentifierDescriptor(); d=new CarouselIdentifierDescriptor();
break; break;
case AVCDescriptorTag:
d=new AVCDescriptor();
break;
case NetworkNameDescriptorTag: case NetworkNameDescriptorTag:
d=new NetworkNameDescriptor(); d=new NetworkNameDescriptor();
break; break;
@ -614,6 +617,12 @@ Descriptor *Descriptor::getDescriptor(CharArray da, DescriptorTagDomain domain,
case ExtensionDescriptorTag: case ExtensionDescriptorTag:
d=new ExtensionDescriptor(); d=new ExtensionDescriptor();
break; break;
case LogicalChannelDescriptorTag:
d=new LogicalChannelDescriptor();
break;
case HdSimulcastLogicalChannelDescriptorTag:
d=new HdSimulcastLogicalChannelDescriptor();
break;
case RegistrationDescriptorTag: case RegistrationDescriptorTag:
d=new RegistrationDescriptor(); d=new RegistrationDescriptor();
break; break;

View File

@ -6,7 +6,7 @@
* the Free Software Foundation; either version 2 of the License, or * * the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. * * (at your option) any later version. *
* * * *
* $Id: si.h 3.0 2012/10/15 11:56:06 kls Exp $ * $Id: si.h 3.1 2013/10/30 10:16:18 kls Exp $
* * * *
***************************************************************************/ ***************************************************************************/
@ -70,6 +70,10 @@ enum DescriptorTag {
// defined by ISO-13818-6 (DSM-CC) // defined by ISO-13818-6 (DSM-CC)
CarouselIdentifierDescriptorTag = 0x13, CarouselIdentifierDescriptorTag = 0x13,
// 0x14 - 0x3F Reserved // 0x14 - 0x3F Reserved
// defined by ISO/IEC 13818-1 Amendment
AVCDescriptorTag = 0x28,
SVCExtensionDescriptorTag = 0x30,
MVCExtensionDescriptorTag = 0x31,
// defined by ETSI (EN 300 468) // defined by ETSI (EN 300 468)
NetworkNameDescriptorTag = 0x40, NetworkNameDescriptorTag = 0x40,
ServiceListDescriptorTag = 0x41, ServiceListDescriptorTag = 0x41,
@ -134,6 +138,12 @@ enum DescriptorTag {
DTSDescriptorTag = 0x7B, DTSDescriptorTag = 0x7B,
AACDescriptorTag = 0x7C, AACDescriptorTag = 0x7C,
ExtensionDescriptorTag = 0x7F, ExtensionDescriptorTag = 0x7F,
// defined by EICTA/EACEM/DIGITALEUROPE
LogicalChannelDescriptorTag = 0x83,
PreferredNameListDescriptorTag = 0x84,
PreferredNameIdentifierDescriptorTag = 0x85,
EacemStreamIdentifierDescriptorTag = 0x86,
HdSimulcastLogicalChannelDescriptorTag = 0x88,
// Extension descriptors // Extension descriptors
ImageIconDescriptorTag = 0x00, ImageIconDescriptorTag = 0x00,
CpcmDeliverySignallingDescriptor = 0x01, CpcmDeliverySignallingDescriptor = 0x01,
@ -147,6 +157,12 @@ enum DescriptorTag {
TargetRegionDescriptorTag = 0x09, TargetRegionDescriptorTag = 0x09,
TargetRegionNameDescriptorTag = 0x0A, TargetRegionNameDescriptorTag = 0x0A,
ServiceRelocatedDescriptorTag = 0x0B, ServiceRelocatedDescriptorTag = 0x0B,
// defined by ETSI (EN 300 468) v 1.12.1
XAITPidDescriptorTag = 0x0C,
C2DeliverySystemDescriptorTag = 0x0D,
// 0x0E - 0x0F Reserved
VideoDepthRangeDescriptorTag = 0x10,
T2MIDescriptorTag = 0x11,
// Defined by ETSI TS 102 812 (MHP) // Defined by ETSI TS 102 812 (MHP)
// They once again start with 0x00 (see page 234, MHP specification) // They once again start with 0x00 (see page 234, MHP specification)

19
lirc.c
View File

@ -6,7 +6,7 @@
* *
* LIRC support added by Carsten Koch <Carsten.Koch@icem.de> 2000-06-16. * LIRC support added by Carsten Koch <Carsten.Koch@icem.de> 2000-06-16.
* *
* $Id: lirc.c 3.1 2013/08/22 09:22:14 kls Exp $ * $Id: lirc.c 3.2 2013/10/29 12:32:12 kls Exp $
*/ */
#include "lirc.h" #include "lirc.h"
@ -21,11 +21,9 @@ cLircRemote::cLircRemote(const char *DeviceName)
{ {
addr.sun_family = AF_UNIX; addr.sun_family = AF_UNIX;
strcpy(addr.sun_path, DeviceName); strcpy(addr.sun_path, DeviceName);
if (Connect()) { if (!Connect())
Start(); f = -1;
return; Start();
}
f = -1;
} }
cLircRemote::~cLircRemote() cLircRemote::~cLircRemote()
@ -67,14 +65,15 @@ void cLircRemote::Action(void)
bool repeat = false; bool repeat = false;
int timeout = -1; int timeout = -1;
while (Running() && f >= 0) { while (Running()) {
bool ready = cFile::FileReady(f, timeout); bool ready = f >= 0 && cFile::FileReady(f, timeout);
int ret = ready ? safe_read(f, buf, sizeof(buf)) : -1; int ret = ready ? safe_read(f, buf, sizeof(buf)) : -1;
if (ready && ret <= 0 ) { if (f < 0 || ready && ret <= 0) {
esyslog("ERROR: lircd connection broken, trying to reconnect every %.1f seconds", float(RECONNECTDELAY) / 1000); esyslog("ERROR: lircd connection broken, trying to reconnect every %.1f seconds", float(RECONNECTDELAY) / 1000);
close(f); if (f >= 0)
close(f);
f = -1; f = -1;
while (Running() && f < 0) { while (Running() && f < 0) {
cCondWait::SleepMs(RECONNECTDELAY); cCondWait::SleepMs(RECONNECTDELAY);

55
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 3.10 2013/10/16 09:15:36 kls Exp $ * $Id: menu.c 3.15 2013/12/27 09:00:24 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -16,6 +16,7 @@
#include <string.h> #include <string.h>
#include "channels.h" #include "channels.h"
#include "config.h" #include "config.h"
#include "cutter.h"
#include "eitscan.h" #include "eitscan.h"
#include "i18n.h" #include "i18n.h"
#include "interface.h" #include "interface.h"
@ -718,9 +719,11 @@ cMenuFolder::cMenuFolder(const char *Title, cNestedItemList *NestedItemList, con
list = nestedItemList = NestedItemList; list = nestedItemList = NestedItemList;
firstFolder = NULL; firstFolder = NULL;
editing = false; editing = false;
helpKeys = -1;
Set(); Set();
SetHelpKeys();
DescendPath(Path); DescendPath(Path);
Display();
SetHelpKeys();
} }
cMenuFolder::cMenuFolder(const char *Title, cList<cNestedItem> *List, cNestedItemList *NestedItemList, const char *Dir, const char *Path) cMenuFolder::cMenuFolder(const char *Title, cList<cNestedItem> *List, cNestedItemList *NestedItemList, const char *Dir, const char *Path)
@ -732,14 +735,28 @@ cMenuFolder::cMenuFolder(const char *Title, cList<cNestedItem> *List, cNestedIte
dir = Dir; dir = Dir;
firstFolder = NULL; firstFolder = NULL;
editing = false; editing = false;
helpKeys = -1;
Set(); Set();
SetHelpKeys();
DescendPath(Path); DescendPath(Path);
Display();
SetHelpKeys();
} }
void cMenuFolder::SetHelpKeys(void) void cMenuFolder::SetHelpKeys(void)
{ {
SetHelp(firstFolder ? tr("Button$Select") : NULL, tr("Button$New"), firstFolder ? tr("Button$Delete") : NULL, firstFolder ? tr("Button$Edit") : NULL); if (HasSubMenu())
return;
int NewHelpKeys = 0;
if (firstFolder) {
if (cMenuFolderItem *Folder = (cMenuFolderItem *)Get(Current())) {
if (Folder->Folder()->SubItems())
NewHelpKeys = 1;
}
}
if (NewHelpKeys != helpKeys) {
helpKeys = NewHelpKeys;
SetHelp(NewHelpKeys > 0 ? tr("Button$Open") : NULL, tr("Button$New"), firstFolder ? tr("Button$Delete") : NULL, firstFolder ? tr("Button$Edit") : NULL);
}
} }
void cMenuFolder::Set(const char *CurrentFolder) void cMenuFolder::Set(const char *CurrentFolder)
@ -768,7 +785,7 @@ void cMenuFolder::DescendPath(const char *Path)
for (cMenuFolderItem *Folder = (cMenuFolderItem *)firstFolder; Folder; Folder = (cMenuFolderItem *)Next(Folder)) { for (cMenuFolderItem *Folder = (cMenuFolderItem *)firstFolder; Folder; Folder = (cMenuFolderItem *)Next(Folder)) {
if (strncmp(Folder->Folder()->Text(), Path, p - Path) == 0) { if (strncmp(Folder->Folder()->Text(), Path, p - Path) == 0) {
SetCurrent(Folder); SetCurrent(Folder);
if (Folder->Folder()->SubItems()) if (Folder->Folder()->SubItems() && strchr(p + 1, FOLDERDELIMCHAR))
AddSubMenu(new cMenuFolder(Title(), Folder->Folder()->SubItems(), nestedItemList, !isempty(dir) ? *cString::sprintf("%s%c%s", *dir, FOLDERDELIMCHAR, Folder->Folder()->Text()) : Folder->Folder()->Text(), p + 1)); AddSubMenu(new cMenuFolder(Title(), Folder->Folder()->SubItems(), nestedItemList, !isempty(dir) ? *cString::sprintf("%s%c%s", *dir, FOLDERDELIMCHAR, Folder->Folder()->Text()) : Folder->Folder()->Text(), p + 1));
break; break;
} }
@ -777,12 +794,12 @@ void cMenuFolder::DescendPath(const char *Path)
} }
} }
eOSState cMenuFolder::Select(void) eOSState cMenuFolder::Select(bool Open)
{ {
if (firstFolder) { if (firstFolder) {
cMenuFolderItem *Folder = (cMenuFolderItem *)Get(Current()); cMenuFolderItem *Folder = (cMenuFolderItem *)Get(Current());
if (Folder) { if (Folder) {
if (Folder->Folder()->SubItems()) if (Open && Folder->Folder()->SubItems())
return AddSubMenu(new cMenuFolder(Title(), Folder->Folder()->SubItems(), nestedItemList, !isempty(dir) ? *cString::sprintf("%s%c%s", *dir, FOLDERDELIMCHAR, Folder->Folder()->Text()) : Folder->Folder()->Text())); return AddSubMenu(new cMenuFolder(Title(), Folder->Folder()->SubItems(), nestedItemList, !isempty(dir) ? *cString::sprintf("%s%c%s", *dir, FOLDERDELIMCHAR, Folder->Folder()->Text()) : Folder->Folder()->Text()));
else else
return osEnd; return osEnd;
@ -857,8 +874,8 @@ eOSState cMenuFolder::ProcessKey(eKeys Key)
if (state == osUnknown) { if (state == osUnknown) {
switch (Key) { switch (Key) {
case kOk: case kOk: return Select(false);
case kRed: return Select(); case kRed: return Select(true);
case kGreen: return New(); case kGreen: return New();
case kYellow: return Delete(); case kYellow: return Delete();
case kBlue: return Edit(); case kBlue: return Edit();
@ -867,6 +884,7 @@ eOSState cMenuFolder::ProcessKey(eKeys Key)
} }
else if (state == osEnd && HasSubMenu() && editing) else if (state == osEnd && HasSubMenu() && editing)
state = SetFolder(); state = SetFolder();
SetHelpKeys();
return state; return state;
} }
@ -2121,7 +2139,7 @@ public:
cMenuPathEdit::cMenuPathEdit(const char *Path) cMenuPathEdit::cMenuPathEdit(const char *Path)
:cOsdMenu(tr("Edit path"), 12) :cOsdMenu(tr("Edit path"), 12)
{ {
SetMenuCategory(mcRecording); SetMenuCategory(mcRecordingEdit);
path = Path; path = Path;
*folder = 0; *folder = 0;
*name = 0; *name = 0;
@ -2236,7 +2254,7 @@ public:
cMenuRecordingEdit::cMenuRecordingEdit(cRecording *Recording) cMenuRecordingEdit::cMenuRecordingEdit(cRecording *Recording)
:cOsdMenu(tr("Edit recording"), 12) :cOsdMenu(tr("Edit recording"), 12)
{ {
SetMenuCategory(mcRecording); SetMenuCategory(mcRecordingEdit);
recording = Recording; recording = Recording;
originalFileName = recording->FileName(); originalFileName = recording->FileName();
Recordings.StateChanged(recordingsState); // just to get the current state Recordings.StateChanged(recordingsState); // just to get the current state
@ -2330,8 +2348,10 @@ eOSState cMenuRecordingEdit::Action(void)
if (actionCancel) if (actionCancel)
RecordingsHandler.Del(recording->FileName()); RecordingsHandler.Del(recording->FileName());
else if (doCut) { else if (doCut) {
if (!RecordingsHandler.Add(ruCut, recording->FileName())) if (access(cCutter::EditedFileName(recording->FileName()), F_OK) != 0 || Interface->Confirm(tr("Edited version already exists - overwrite?"))) {
Skins.Message(mtError, tr("Error while queueing recording for cutting!")); if (!RecordingsHandler.Add(ruCut, recording->FileName()))
Skins.Message(mtError, tr("Error while queueing recording for cutting!"));
}
} }
recordingIsInUse = recording->IsInUse(); recordingIsInUse = recording->IsInUse();
RefreshRecording(); RefreshRecording();
@ -2551,12 +2571,13 @@ void cMenuRecordingItem::SetMenuItem(cSkinDisplayMenu *DisplayMenu, int Index, b
cString cMenuRecordings::path; cString cMenuRecordings::path;
cString cMenuRecordings::fileName; cString cMenuRecordings::fileName;
cMenuRecordings::cMenuRecordings(const char *Base, int Level, bool OpenSubMenus) cMenuRecordings::cMenuRecordings(const char *Base, int Level, bool OpenSubMenus, const cRecordingFilter *Filter)
:cOsdMenu(Base ? Base : tr("Recordings"), 9, 6, 6) :cOsdMenu(Base ? Base : tr("Recordings"), 9, 6, 6)
{ {
SetMenuCategory(mcRecording); SetMenuCategory(mcRecording);
base = Base ? strdup(Base) : NULL; base = Base ? strdup(Base) : NULL;
level = Setup.RecordingDirs ? Level : -1; level = Setup.RecordingDirs ? Level : -1;
filter = Filter;
Recordings.StateChanged(recordingsState); // just to get the current state Recordings.StateChanged(recordingsState); // just to get the current state
helpKeys = -1; helpKeys = -1;
Display(); // this keeps the higher level menus from showing up briefly when pressing 'Back' during replay Display(); // this keeps the higher level menus from showing up briefly when pressing 'Back' during replay
@ -2613,7 +2634,7 @@ void cMenuRecordings::Set(bool Refresh)
GetRecordingsSortMode(DirectoryName()); GetRecordingsSortMode(DirectoryName());
Recordings.Sort(); Recordings.Sort();
for (cRecording *recording = Recordings.First(); recording; recording = Recordings.Next(recording)) { for (cRecording *recording = Recordings.First(); recording; recording = Recordings.Next(recording)) {
if (!base || (strstr(recording->Name(), base) == recording->Name() && recording->Name()[strlen(base)] == FOLDERDELIMCHAR)) { if ((!filter || filter->Filter(recording)) && (!base || (strstr(recording->Name(), base) == recording->Name() && recording->Name()[strlen(base)] == FOLDERDELIMCHAR))) {
cMenuRecordingItem *Item = new cMenuRecordingItem(recording, level); cMenuRecordingItem *Item = new cMenuRecordingItem(recording, level);
cMenuRecordingItem *LastDir = NULL; cMenuRecordingItem *LastDir = NULL;
if (Item->IsDirectory()) { if (Item->IsDirectory()) {
@ -2680,7 +2701,7 @@ bool cMenuRecordings::Open(bool OpenSubMenus)
buffer = cString::sprintf("%s%c%s", base, FOLDERDELIMCHAR, t); buffer = cString::sprintf("%s%c%s", base, FOLDERDELIMCHAR, t);
t = buffer; t = buffer;
} }
AddSubMenu(new cMenuRecordings(t, level + 1, OpenSubMenus)); AddSubMenu(new cMenuRecordings(t, level + 1, OpenSubMenus, filter));
return true; return true;
} }
return false; return false;
@ -5217,6 +5238,8 @@ void cReplayControl::EditCut(void)
Skins.Message(mtError, tr("No editing marks defined!")); Skins.Message(mtError, tr("No editing marks defined!"));
else if (!marks.GetNumSequences()) else if (!marks.GetNumSequences())
Skins.Message(mtError, tr("No editing sequences defined!")); Skins.Message(mtError, tr("No editing sequences defined!"));
else if (access(cCutter::EditedFileName(fileName), F_OK) == 0 && !Interface->Confirm(tr("Edited version already exists - overwrite?")))
;
else if (!RecordingsHandler.Add(ruCut, fileName)) else if (!RecordingsHandler.Add(ruCut, fileName))
Skins.Message(mtError, tr("Can't start editing process!")); Skins.Message(mtError, tr("Can't start editing process!"));
else else

15
menu.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: menu.h 3.3 2013/10/16 09:14:58 kls Exp $ * $Id: menu.h 3.5 2013/12/25 12:06:03 kls Exp $
*/ */
#ifndef __MENU_H #ifndef __MENU_H
@ -38,11 +38,12 @@ private:
cString dir; cString dir;
cOsdItem *firstFolder; cOsdItem *firstFolder;
bool editing; bool editing;
int helpKeys;
void SetHelpKeys(void); void SetHelpKeys(void);
void Set(const char *CurrentFolder = NULL); void Set(const char *CurrentFolder = NULL);
void DescendPath(const char *Path); void DescendPath(const char *Path);
eOSState SetFolder(void); eOSState SetFolder(void);
eOSState Select(void); eOSState Select(bool Open);
eOSState New(void); eOSState New(void);
eOSState Delete(void); eOSState Delete(void);
eOSState Edit(void); eOSState Edit(void);
@ -190,6 +191,13 @@ public:
cOsdObject *CamControl(void); cOsdObject *CamControl(void);
bool CamMenuActive(void); bool CamMenuActive(void);
class cRecordingFilter {
public:
virtual ~cRecordingFilter(void) {};
virtual bool Filter(const cRecording *Recording) const = 0;
///< Returns true if the given Recording shall be displayed in the Recordings menu.
};
class cMenuRecordingItem; class cMenuRecordingItem;
class cMenuRecordings : public cOsdMenu { class cMenuRecordings : public cOsdMenu {
@ -198,6 +206,7 @@ private:
int level; int level;
int recordingsState; int recordingsState;
int helpKeys; int helpKeys;
const cRecordingFilter *filter;
static cString path; static cString path;
static cString fileName; static cString fileName;
void SetHelpKeys(void); void SetHelpKeys(void);
@ -212,7 +221,7 @@ private:
protected: protected:
cString DirectoryName(void); cString DirectoryName(void);
public: public:
cMenuRecordings(const char *Base = NULL, int Level = 0, bool OpenSubMenus = false); cMenuRecordings(const char *Base = NULL, int Level = 0, bool OpenSubMenus = false, const cRecordingFilter *Filter = NULL);
~cMenuRecordings(); ~cMenuRecordings();
virtual eOSState ProcessKey(eKeys Key); virtual eOSState ProcessKey(eKeys Key);
static void SetPath(const char *Path); static void SetPath(const char *Path);

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 3.1 2013/05/24 10:26:01 kls Exp $ * $Id: menuitems.c 3.2 2013/11/03 14:48:21 kls Exp $
*/ */
#include "menuitems.h" #include "menuitems.h"
@ -487,12 +487,12 @@ void cMenuEditStrItem::Set(void)
if (InEditMode()) { if (InEditMode()) {
// This is an ugly hack to make editing strings work with the 'skincurses' plugin. // This is an ugly hack to make editing strings work with the 'skincurses' plugin.
const cFont *font = dynamic_cast<cSkinDisplayMenu *>(cSkinDisplay::Current())->GetTextAreaFont(false); const cFont *font = dynamic_cast<cSkinDisplayMenu *>(cSkinDisplay::Current())->GetTextAreaFont(false);
if (!font || font->Width("W") != 1) // all characters have with == 1 in the font used by 'skincurses' if (!font || font->Width("W") != 1) // all characters have width == 1 in the font used by 'skincurses'
font = cFont::GetFont(fontOsd); font = cFont::GetFont(fontOsd);
int width = cSkinDisplay::Current()->EditableWidth(); int width = cSkinDisplay::Current()->EditableWidth();
width -= font->Width("[]"); width -= font->Width("[]");
width -= font->Width("<>"); // reserving this anyway make the whole thing simpler width -= font->Width("<>"); // reserving this anyway makes the whole thing simpler
if (pos < offset) if (pos < offset)
offset = pos; offset = pos;

View File

@ -12,7 +12,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: newplugin 3.1 2013/05/02 10:06:09 kls Exp $ # $Id: newplugin 3.2 2014/01/01 13:29:54 kls Exp $
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n"; $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
@ -75,7 +75,7 @@ VERSION = \$(shell grep 'static const char \\*VERSION *=' \$(PLUGIN).c | awk '{
### The directory environment: ### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory: # Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = \$(if \$(VDRDIR),\$(shell pkg-config --variable=\$(1) \$(VDRDIR)/vdr.pc),\$(shell pkg-config --variable=\$(1) vdr || pkg-config --variable=\$(1) ../../../vdr.pc)) PKGCFG = \$(if \$(VDRDIR),\$(shell pkg-config --variable=\$(1) \$(VDRDIR)/vdr.pc),\$(shell PKG_CONFIG_PATH="\$\$PKG_CONFIG_PATH:../../.." pkg-config --variable=\$(1) vdr))
LIBDIR = \$(call PKGCFG,libdir) LIBDIR = \$(call PKGCFG,libdir)
LOCDIR = \$(call PKGCFG,locdir) LOCDIR = \$(call PKGCFG,locdir)
PLGCFG = \$(call PKGCFG,plgcfg) PLGCFG = \$(call PKGCFG,plgcfg)

48
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 3.0 2012/11/25 14:12:21 kls Exp $ * $Id: pat.c 3.2 2014/01/04 11:17:24 kls Exp $
*/ */
#include "pat.h" #include "pat.h"
@ -21,6 +21,7 @@
class cCaDescriptor : public cListObject { class cCaDescriptor : public cListObject {
private: private:
int caSystem; int caSystem;
int caPid;
int esPid; int esPid;
int length; int length;
uchar *data; uchar *data;
@ -29,6 +30,7 @@ public:
virtual ~cCaDescriptor(); virtual ~cCaDescriptor();
bool operator== (const cCaDescriptor &arg) const; bool operator== (const cCaDescriptor &arg) const;
int CaSystem(void) { return caSystem; } int CaSystem(void) { return caSystem; }
int CaPid(void) { return caPid; }
int EsPid(void) { return esPid; } int EsPid(void) { return esPid; }
int Length(void) const { return length; } int Length(void) const { return length; }
const uchar *Data(void) const { return data; } const uchar *Data(void) const { return data; }
@ -37,6 +39,7 @@ public:
cCaDescriptor::cCaDescriptor(int CaSystem, int CaPid, int EsPid, int Length, const uchar *Data) cCaDescriptor::cCaDescriptor(int CaSystem, int CaPid, int EsPid, int Length, const uchar *Data)
{ {
caSystem = CaSystem; caSystem = CaSystem;
caPid = CaPid;
esPid = EsPid; esPid = EsPid;
length = Length + 6; length = Length + 6;
data = MALLOC(uchar, length); data = MALLOC(uchar, length);
@ -79,6 +82,7 @@ public:
bool Empty(void) { return caDescriptors.Count() == 0; } bool Empty(void) { return caDescriptors.Count() == 0; }
void AddCaDescriptor(SI::CaDescriptor *d, int EsPid); void AddCaDescriptor(SI::CaDescriptor *d, int EsPid);
int GetCaDescriptors(const int *CaSystemIds, int BufSize, uchar *Data, int EsPid); int GetCaDescriptors(const int *CaSystemIds, int BufSize, uchar *Data, int EsPid);
int GetCaPids(const int *CaSystemIds, int BufSize, int *Pids);
const int *CaIds(void) { return caIds; } const int *CaIds(void) { return caIds; }
}; };
@ -163,7 +167,7 @@ int cCaDescriptors::GetCaDescriptors(const int *CaSystemIds, int BufSize, uchar
if (EsPid < 0 || d->EsPid() == EsPid) { if (EsPid < 0 || d->EsPid() == EsPid) {
const int *caids = CaSystemIds; const int *caids = CaSystemIds;
do { do {
if (d->CaSystem() == *caids) { if (*caids == 0xFFFF || d->CaSystem() == *caids) {
if (length + d->Length() <= BufSize) { if (length + d->Length() <= BufSize) {
memcpy(Data + length, d->Data(), d->Length()); memcpy(Data + length, d->Data(), d->Length());
length += d->Length(); length += d->Length();
@ -179,6 +183,30 @@ int cCaDescriptors::GetCaDescriptors(const int *CaSystemIds, int BufSize, uchar
return -1; return -1;
} }
int cCaDescriptors::GetCaPids(const int *CaSystemIds, int BufSize, int *Pids)
{
if (!CaSystemIds || !*CaSystemIds)
return 0;
if (BufSize > 0 && Pids) {
int numPids = 0;
for (cCaDescriptor *d = caDescriptors.First(); d; d = caDescriptors.Next(d)) {
const int *caids = CaSystemIds;
do {
if (*caids == 0xFFFF || d->CaSystem() == *caids) {
if (numPids + 1 < BufSize) {
Pids[numPids++] = d->CaPid();
Pids[numPids] = 0;
}
else
return -1;
}
} while (*++caids);
}
return numPids;
}
return -1;
}
// --- cCaDescriptorHandler -------------------------------------------------- // --- cCaDescriptorHandler --------------------------------------------------
class cCaDescriptorHandler : public cList<cCaDescriptors> { class cCaDescriptorHandler : public cList<cCaDescriptors> {
@ -190,6 +218,7 @@ public:
// 1 if it is an all new descriptor with actual contents, // 1 if it is an all new descriptor with actual contents,
// and 2 if an existing descriptor was changed. // and 2 if an existing descriptor was changed.
int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, uchar *Data, int EsPid); int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, uchar *Data, int EsPid);
int GetCaPids(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, int *Pids);
}; };
int cCaDescriptorHandler::AddCaDescriptors(cCaDescriptors *CaDescriptors) int cCaDescriptorHandler::AddCaDescriptors(cCaDescriptors *CaDescriptors)
@ -220,6 +249,16 @@ int cCaDescriptorHandler::GetCaDescriptors(int Source, int Transponder, int Serv
return 0; return 0;
} }
int cCaDescriptorHandler::GetCaPids(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, int *Pids)
{
cMutexLock MutexLock(&mutex);
for (cCaDescriptors *ca = First(); ca; ca = Next(ca)) {
if (ca->Is(Source, Transponder, ServiceId))
return ca->GetCaPids(CaSystemIds, BufSize, Pids);
}
return 0;
}
cCaDescriptorHandler CaDescriptorHandler; cCaDescriptorHandler CaDescriptorHandler;
int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, uchar *Data, int EsPid) int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, uchar *Data, int EsPid)
@ -227,6 +266,11 @@ int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSy
return CaDescriptorHandler.GetCaDescriptors(Source, Transponder, ServiceId, CaSystemIds, BufSize, Data, EsPid); return CaDescriptorHandler.GetCaDescriptors(Source, Transponder, ServiceId, CaSystemIds, BufSize, Data, EsPid);
} }
int GetCaPids(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, int *Pids)
{
return CaDescriptorHandler.GetCaPids(Source, Transponder, ServiceId, CaSystemIds, BufSize, Pids);
}
// --- cPatFilter ------------------------------------------------------------ // --- cPatFilter ------------------------------------------------------------
cPatFilter::cPatFilter(void) cPatFilter::cPatFilter(void)

16
pat.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: pat.h 3.0 2013/02/16 15:20:24 kls Exp $ * $Id: pat.h 3.2 2014/01/04 11:16:48 kls Exp $
*/ */
#ifndef __PAT_H #ifndef __PAT_H
@ -36,10 +36,18 @@ int GetCaDescriptors(int Source, int Transponder, int ServiceId, const int *CaSy
///< Gets all CA descriptors for a given channel. ///< Gets all CA descriptors for a given channel.
///< Copies all available CA descriptors for the given Source, Transponder and ServiceId ///< Copies all available CA descriptors for the given Source, Transponder and ServiceId
///< into the provided buffer at Data (at most BufSize bytes). Only those CA descriptors ///< into the provided buffer at Data (at most BufSize bytes). Only those CA descriptors
///< are copied that match one of the given CA system IDs. ///< are copied that match one of the given CA system IDs (or all of them, if CaSystemIds
///< is 0xFFFF).
///< Returns the number of bytes copied into Data (0 if no CA descriptors are ///< Returns the number of bytes copied into Data (0 if no CA descriptors are
///< available), or -1 if BufSize was too small to hold all CA descriptors. ///< available), or -1 if BufSize was too small to hold all CA descriptors.
///< The return value tells whether these CA descriptors are to be used
///< for the individual streams. int GetCaPids(int Source, int Transponder, int ServiceId, const int *CaSystemIds, int BufSize, int *Pids);
///< Gets all CA pids for a given channel.
///< Copies all available CA pids from the CA descriptors for the given Source, Transponder and ServiceId
///< into the provided buffer at Pids (at most BufSize - 1 entries, the list will be zero-terminated).
///< Only the CA pids of those CA descriptors are copied that match one of the given CA system IDs
///< (or all of them, if CaSystemIds is 0xFFFF).
///< Returns the number of pids copied into Pids (0 if no CA descriptors are
///< available), or -1 if BufSize was too small to hold all CA pids.
#endif //__PAT_H #endif //__PAT_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: player.h 3.0 2012/04/28 13:04:17 kls Exp $ * $Id: player.h 3.1 2013/12/25 13:25:02 kls Exp $
*/ */
#ifndef __PLAYER_H #ifndef __PLAYER_H
@ -27,7 +27,7 @@ protected:
bool DeviceFlush(int TimeoutMs = 0) { return device ? device->Flush(TimeoutMs) : true; } bool DeviceFlush(int TimeoutMs = 0) { return device ? device->Flush(TimeoutMs) : true; }
bool DeviceHasIBPTrickSpeed(void) { return device ? device->HasIBPTrickSpeed() : false; } bool DeviceHasIBPTrickSpeed(void) { return device ? device->HasIBPTrickSpeed() : false; }
bool DeviceIsPlayingVideo(void) { return device ? device->IsPlayingVideo() : false; } bool DeviceIsPlayingVideo(void) { return device ? device->IsPlayingVideo() : false; }
void DeviceTrickSpeed(int Speed) { if (device) device->TrickSpeed(Speed); } void DeviceTrickSpeed(int Speed, bool Forward) { if (device) device->TrickSpeed(Speed, Forward); }
void DeviceClear(void) { if (device) device->Clear(); } void DeviceClear(void) { if (device) device->Clear(); }
void DevicePlay(void) { if (device) device->Play(); } void DevicePlay(void) { if (device) device->Play(); }
void DeviceFreeze(void) { if (device) device->Freeze(); } void DeviceFreeze(void) { if (device) device->Freeze(); }

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2008-10-16 11:16-0400\n" "PO-Revision-Date: 2008-10-16 11:16-0400\n"
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n" "Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n" "Language-Team: Arabic <ar@li.org>\n"
@ -607,8 +607,8 @@ msgstr "المجلد موجود بالفعل"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "'%c'! اسم المجلد لا يجب ان يحتوى على" msgstr "'%c'! اسم المجلد لا يجب ان يحتوى على"
msgid "Button$Select" msgid "Button$Open"
msgstr "الزر" msgstr "افتح"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "حذف المجلد وكل المجلدات الفرعية" msgstr "حذف المجلد وكل المجلدات الفرعية"
@ -776,6 +776,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -803,9 +806,6 @@ msgstr "اعادة"
msgid "Recordings" msgid "Recordings"
msgstr "التسجيلات" msgstr "التسجيلات"
msgid "Button$Open"
msgstr "افتح"
msgid "Commands" msgid "Commands"
msgstr "الاوامر" msgstr "الاوامر"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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: Catalan <vdr@linuxtv.org>\n" "Language-Team: Catalan <vdr@linuxtv.org>\n"
@ -606,8 +606,8 @@ msgstr "La carpeta ja existeix!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "El nom de la carpeta no pot contenir '%c'" msgstr "El nom de la carpeta no pot contenir '%c'"
msgid "Button$Select" msgid "Button$Open"
msgstr "Seleccionar" msgstr "Obrir"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Esborrar carpetas i totes les sub carpetes?" msgstr "Esborrar carpetas i totes les sub carpetes?"
@ -775,6 +775,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -802,9 +805,6 @@ msgstr "Enrera"
msgid "Recordings" msgid "Recordings"
msgstr "Veure programes gravats" msgstr "Veure programes gravats"
msgid "Button$Open"
msgstr "Obrir"
msgid "Commands" msgid "Commands"
msgstr "Ordres" msgstr "Ordres"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2010-05-06 11:00+0200\n" "PO-Revision-Date: 2010-05-06 11:00+0200\n"
"Last-Translator: Aleš Juřík <ajurik@quick.cz>\n" "Last-Translator: Aleš Juřík <ajurik@quick.cz>\n"
"Language-Team: Czech <vdr@linuxtv.org>\n" "Language-Team: Czech <vdr@linuxtv.org>\n"
@ -606,8 +606,8 @@ msgstr "Složka již existuje!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Jméno složky nesmí obsahovat '%c'!" msgstr "Jméno složky nesmí obsahovat '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Vybrat" msgstr "Otevřít"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Smazat složku včetně podsložek?" msgstr "Smazat složku včetně podsložek?"
@ -775,6 +775,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -802,9 +805,6 @@ msgstr "Na začátek"
msgid "Recordings" msgid "Recordings"
msgstr "Nahrávky" msgstr "Nahrávky"
msgid "Button$Open"
msgstr "Otevřít"
msgid "Commands" msgid "Commands"
msgstr "Příkazy" msgstr "Příkazy"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Danish <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr ""
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr ""
msgid "Button$Select" msgid "Button$Open"
msgstr "" msgstr "Åbn"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr ""
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "Forfra"
msgid "Recordings" msgid "Recordings"
msgstr "Optagelser" msgstr "Optagelser"
msgid "Button$Open"
msgstr "Åbn"
msgid "Commands" msgid "Commands"
msgstr "Kommandoer" msgstr "Kommandoer"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@tvdr.de>\n" "Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
"Language-Team: German <vdr@linuxtv.org>\n" "Language-Team: German <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr "Verzeichnisname existiert bereits!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Verzeichnisname darf kein '%c' enthalten!" msgstr "Verzeichnisname darf kein '%c' enthalten!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Auswählen" msgstr "Öffnen"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Verzeichnis und alle Unterverzeichnisse löschen?" msgstr "Verzeichnis und alle Unterverzeichnisse löschen?"
@ -772,6 +772,9 @@ msgstr "Marken l
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "Aufnahme verschwunden!" msgstr "Aufnahme verschwunden!"
msgid "Edited version already exists - overwrite?"
msgstr "Geschnittene Version existiert bereits - überschreiben?"
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "Fehler beim Hinzufügen der Aufnahme zur Schnittwarteschlange" msgstr "Fehler beim Hinzufügen der Aufnahme zur Schnittwarteschlange"
@ -799,9 +802,6 @@ msgstr "Anfang"
msgid "Recordings" msgid "Recordings"
msgstr "Aufzeichnungen" msgstr "Aufzeichnungen"
msgid "Button$Open"
msgstr "Öffnen"
msgid "Commands" msgid "Commands"
msgstr "Befehle" msgstr "Befehle"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Greek <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr ""
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr ""
msgid "Button$Select" msgid "Button$Open"
msgstr "" msgstr "Áíïéãìá"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr ""
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "
msgid "Recordings" msgid "Recordings"
msgstr "ÅããñáöÝò" msgstr "ÅããñáöÝò"
msgid "Button$Open"
msgstr "Áíïéãìá"
msgid "Commands" msgid "Commands"
msgstr "ÅíôïëÝò" msgstr "ÅíôïëÝò"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Spanish <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "¡El nombre de la carpeta no puede contener '%c'!" msgstr "¡El nombre de la carpeta no puede contener '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Seleccionar" msgstr "Abrir"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "¿Borrar carpeta y todas sub carpetas?" msgstr "¿Borrar carpeta y todas sub carpetas?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Rebobinar"
msgid "Recordings" msgid "Recordings"
msgstr "Grabaciones" msgstr "Grabaciones"
msgid "Button$Open"
msgstr "Abrir"
msgid "Commands" msgid "Commands"
msgstr "Órdenes" msgstr "Órdenes"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Estonian <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr "Sellenimeline kaust juba olemas!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Kausta nimi ei saa sisaldada '%c' sümbolit!" msgstr "Kausta nimi ei saa sisaldada '%c' sümbolit!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Vali" msgstr "Avada"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Kustutada kaust ja kõik alamkaustad?" msgstr "Kustutada kaust ja kõik alamkaustad?"
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "Algusesse"
msgid "Recordings" msgid "Recordings"
msgstr "Salvestused" msgstr "Salvestused"
msgid "Button$Open"
msgstr "Avada"
msgid "Commands" msgid "Commands"
msgstr "Käsud" msgstr "Käsud"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2007-08-15 15:52+0200\n" "PO-Revision-Date: 2007-08-15 15:52+0200\n"
"Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n" "Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n"
"Language-Team: Finnish <vdr@linuxtv.org>\n" "Language-Team: Finnish <vdr@linuxtv.org>\n"
@ -607,8 +607,8 @@ msgstr "Kansio on jo olemassa!"
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$Open"
msgstr "Valitse" msgstr "Avaa"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Poistetaanko kansio alikansioineen?" msgstr "Poistetaanko kansio alikansioineen?"
@ -728,68 +728,71 @@ msgid "CAM not responding!"
msgstr "CA-moduuli ei vastaa!" msgstr "CA-moduuli ei vastaa!"
msgid "Edit path" msgid "Edit path"
msgstr "" msgstr "Muokkaa polkua"
msgid "Folder" msgid "Folder"
msgstr "" msgstr "Kansio"
msgid "This folder is currently in use - no changes are possible!" msgid "This folder is currently in use - no changes are possible!"
msgstr "" msgstr "Kansio on käytössä - muokkaukset eivät mahdollisia!"
#, c-format #, c-format
msgid "Move entire folder containing %d recordings?" msgid "Move entire folder containing %d recordings?"
msgstr "" msgstr "Siirrä koko kansio sisältäen %d tallennetta?"
msgid "Error while moving folder!" msgid "Error while moving folder!"
msgstr "" msgstr "Kansion siirto epäonnistui!"
msgid "Edit recording" msgid "Edit recording"
msgstr "" msgstr "Muokkaa tallennetta"
msgid "This recording is currently in use - no changes are possible!" msgid "This recording is currently in use - no changes are possible!"
msgstr "" msgstr "Tallenne on käytössä - muokkaus ei mahdollista!"
msgid "Button$Cancel cutting" msgid "Button$Cancel cutting"
msgstr "" msgstr "Peru leikkaus"
msgid "Button$Stop cutting" msgid "Button$Stop cutting"
msgstr "" msgstr "Lopeta leikkaus"
msgid "Button$Cancel moving" msgid "Button$Cancel moving"
msgstr "" msgstr "Peru siirto"
msgid "Button$Stop moving" msgid "Button$Stop moving"
msgstr "" msgstr "Lopeta siirto"
msgid "Button$Cancel copying" msgid "Button$Cancel copying"
msgstr "" msgstr "Peru kopiointi"
msgid "Button$Stop copying" msgid "Button$Stop copying"
msgstr "" msgstr "Lopeta kopiointi"
msgid "Button$Cut" msgid "Button$Cut"
msgstr "" msgstr "Leikkaa"
msgid "Button$Delete marks" msgid "Button$Delete marks"
msgstr "" msgstr "Poista merkinnät"
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr "Tallenne katosi!"
msgid "Edited version already exists - overwrite?"
msgstr "Muokattava versio on jo olemassa - ylikirjoitetaanko?"
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr "Tallenteen lisääminen leikkausjonoon epäonnistui!"
msgid "Delete editing marks for this recording?" msgid "Delete editing marks for this recording?"
msgstr "" msgstr "Poistetaanko muokkausmerkinnät tallenteelta?"
msgid "Error while deleting editing marks!" msgid "Error while deleting editing marks!"
msgstr "" msgstr "Muokkausmerkintöjen poistaminen epäonnistui!"
msgid "Error while changing priority/lifetime!" msgid "Error while changing priority/lifetime!"
msgstr "" msgstr "Prioriteetin/elinajan vaihtaminen epäonnistui!"
msgid "Error while changing folder/name!" msgid "Error while changing folder/name!"
msgstr "" msgstr "Kansion/nimen vaihtaminen epäonnistui!"
msgid "Recording info" msgid "Recording info"
msgstr "Tallenteen tiedot" msgstr "Tallenteen tiedot"
@ -803,9 +806,6 @@ msgstr "Alkuun"
msgid "Recordings" msgid "Recordings"
msgstr "Tallenteet" msgstr "Tallenteet"
msgid "Button$Open"
msgstr "Avaa"
msgid "Commands" msgid "Commands"
msgstr "Komennot" msgstr "Komennot"

View File

@ -17,7 +17,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-02-24 12:56+0100\n" "PO-Revision-Date: 2013-02-24 12:56+0100\n"
"Last-Translator: Dominique Plu <dplu@free.fr>\n" "Last-Translator: Dominique Plu <dplu@free.fr>\n"
"Language-Team: French <vdr@linuxtv.org>\n" "Language-Team: French <vdr@linuxtv.org>\n"
@ -613,8 +613,8 @@ msgstr "Ce nom de dossier existe déjà !"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Le nom de dossier ne doit pas contenir '%c' !" msgstr "Le nom de dossier ne doit pas contenir '%c' !"
msgid "Button$Select" msgid "Button$Open"
msgstr "Sélectionner" msgstr "Ouvrir"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Supprimer le dossier et tous les sous dossiers ?" msgstr "Supprimer le dossier et tous les sous dossiers ?"
@ -782,6 +782,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -809,9 +812,6 @@ msgstr "Retour"
msgid "Recordings" msgid "Recordings"
msgstr "Enregistrements" msgstr "Enregistrements"
msgid "Button$Open"
msgstr "Ouvrir"
msgid "Commands" msgid "Commands"
msgstr "Commandes" msgstr "Commandes"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Croatian <vdr@linuxtv.org>\n"
@ -605,8 +605,8 @@ msgstr ""
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr ""
msgid "Button$Select" msgid "Button$Open"
msgstr "" msgstr "Otvori"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr ""
@ -774,6 +774,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -801,9 +804,6 @@ msgstr "Na po
msgid "Recordings" msgid "Recordings"
msgstr "Snimke" msgstr "Snimke"
msgid "Button$Open"
msgstr "Otvori"
msgid "Commands" msgid "Commands"
msgstr "Naredbe" msgstr "Naredbe"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-01 19:22+0200\n" "PO-Revision-Date: 2013-03-01 19:22+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 <vdr@linuxtv.org>\n" "Language-Team: Hungarian <vdr@linuxtv.org>\n"
@ -607,8 +607,8 @@ msgstr "Ez a könyvtárnév már létezik!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "A könyvtár neve nem tartalmazhatja: '%c'!" msgstr "A könyvtár neve nem tartalmazhatja: '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Kiválasztás" msgstr "Kinyitni"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Valóban töröljem a könyvtárat és az alkönyvtárait?" msgstr "Valóban töröljem a könyvtárat és az alkönyvtárait?"
@ -776,6 +776,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -803,9 +806,6 @@ msgstr "Vissza az elejére"
msgid "Recordings" msgid "Recordings"
msgstr "Felvételek" msgstr "Felvételek"
msgid "Button$Open"
msgstr "Kinyitni"
msgid "Commands" msgid "Commands"
msgstr "Parancsok" msgstr "Parancsok"

View File

@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-10-14 11:56+0200\n"
"PO-Revision-Date: 2013-09-18 23:57+0100\n" "PO-Revision-Date: 2013-11-10 23:02+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n" "Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: Italian <vdr@linuxtv.org>\n" "Language-Team: Italian <vdr@linuxtv.org>\n"
"Language: it\n" "Language: it\n"
@ -610,8 +610,8 @@ msgstr "Nome cartella già esistente!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Il nome cartella non deve contenere '%c'!" msgstr "Il nome cartella non deve contenere '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Seleziona" msgstr "Apri"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Eliminare la cartella e sue sottocartelle?" msgstr "Eliminare la cartella e sue sottocartelle?"
@ -731,68 +731,71 @@ msgid "CAM not responding!"
msgstr "La CAM non risponde!" msgstr "La CAM non risponde!"
msgid "Edit path" msgid "Edit path"
msgstr "" msgstr "Modifica percorso"
msgid "Folder" msgid "Folder"
msgstr "" msgstr "Cartella"
msgid "This folder is currently in use - no changes are possible!" msgid "This folder is currently in use - no changes are possible!"
msgstr "" msgstr "La cartella è attualmente in uso - nessuna modifica possibile!"
#, c-format #, c-format
msgid "Move entire folder containing %d recordings?" msgid "Move entire folder containing %d recordings?"
msgstr "" msgstr "Spostare tutta la cartella contenente %d registrazioni?"
msgid "Error while moving folder!" msgid "Error while moving folder!"
msgstr "" msgstr "Errore durante lo spostamento della cartella!"
msgid "Edit recording" msgid "Edit recording"
msgstr "" msgstr "Modifica registrazione"
msgid "This recording is currently in use - no changes are possible!" msgid "This recording is currently in use - no changes are possible!"
msgstr "" msgstr "La registrazione è attualmente in uso - nessuna modifica possibile!"
msgid "Button$Cancel cutting" msgid "Button$Cancel cutting"
msgstr "" msgstr "Annulla taglio"
msgid "Button$Stop cutting" msgid "Button$Stop cutting"
msgstr "" msgstr "Ferma taglio"
msgid "Button$Cancel moving" msgid "Button$Cancel moving"
msgstr "" msgstr "Annulla spostamento"
msgid "Button$Stop moving" msgid "Button$Stop moving"
msgstr "" msgstr "Ferma spostamento"
msgid "Button$Cancel copying" msgid "Button$Cancel copying"
msgstr "" msgstr "Annulla copia"
msgid "Button$Stop copying" msgid "Button$Stop copying"
msgstr "" msgstr "Ferma copia"
msgid "Button$Cut" msgid "Button$Cut"
msgstr "" msgstr "Taglia"
msgid "Button$Delete marks" msgid "Button$Delete marks"
msgstr "" msgstr "Elimina marcatori"
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "Registrazione sparita!"
msgid "Edited version already exists - overwrite?"
msgstr "" msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr "Errore durante l'accodamento della registrazione per il taglio!"
msgid "Delete editing marks for this recording?" msgid "Delete editing marks for this recording?"
msgstr "" msgstr "Eliminare i marcatori di modifica della registrazione?"
msgid "Error while deleting editing marks!" msgid "Error while deleting editing marks!"
msgstr "" msgstr "Errore durante la cancellazione dei marcatori di modifica!"
msgid "Error while changing priority/lifetime!" msgid "Error while changing priority/lifetime!"
msgstr "" msgstr "Errore durante la modifica priorità/durata!"
msgid "Error while changing folder/name!" msgid "Error while changing folder/name!"
msgstr "" msgstr "Errore durante la modifica cartella/nome!"
msgid "Recording info" msgid "Recording info"
msgstr "Info registrazione" msgstr "Info registrazione"
@ -806,9 +809,6 @@ msgstr "Riavvolgi"
msgid "Recordings" msgid "Recordings"
msgstr "Registrazioni" msgstr "Registrazioni"
msgid "Button$Open"
msgstr "Apri"
msgid "Commands" msgid "Commands"
msgstr "Comandi" msgstr "Comandi"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2010-10-30 11:55+0200\n" "PO-Revision-Date: 2010-10-30 11:55+0200\n"
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n" "Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
"Language-Team: Lithuanian <vdr@linuxtv.org>\n" "Language-Team: Lithuanian <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr "Toks katalogo vardas jau egzistuoja!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Katalogo pavadinimas turi būti sudarytas iš '%c'!" msgstr "Katalogo pavadinimas turi būti sudarytas iš '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Pasirinkti" msgstr "Atidaryti"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Ištrinti katalogą ir jo visus pakatalogius?" msgstr "Ištrinti katalogą ir jo visus pakatalogius?"
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "Atsukti"
msgid "Recordings" msgid "Recordings"
msgstr "Įrašai" msgstr "Įrašai"
msgid "Button$Open"
msgstr "Atidaryti"
msgid "Commands" msgid "Commands"
msgstr "Komandos" msgstr "Komandos"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2012-11-19 15:18+0100\n" "PO-Revision-Date: 2012-11-19 15:18+0100\n"
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n" "Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
"Language-Team: Macedonian <en@li.org>\n" "Language-Team: Macedonian <en@li.org>\n"
@ -604,8 +604,8 @@ msgstr "Името веќе постои"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Името на директориумот не смее да содржи '%c'" msgstr "Името на директориумот не смее да содржи '%c'"
msgid "Button$Select" msgid "Button$Open"
msgstr "Избери" msgstr "Отвори"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Избриши директориум со сите поддиректориуми?" msgstr "Избриши директориум со сите поддиректориуми?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Премотај"
msgid "Recordings" msgid "Recordings"
msgstr "Снимки" msgstr "Снимки"
msgid "Button$Open"
msgstr "Отвори"
msgid "Commands" msgid "Commands"
msgstr "Наредби" msgstr "Наредби"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2008-02-26 17:20+0100\n" "PO-Revision-Date: 2008-02-26 17:20+0100\n"
"Last-Translator: Cedric Dewijs <cedric.dewijs@telfort.nl>\n" "Last-Translator: Cedric Dewijs <cedric.dewijs@telfort.nl>\n"
"Language-Team: Dutch <vdr@linuxtv.org>\n" "Language-Team: Dutch <vdr@linuxtv.org>\n"
@ -608,8 +608,8 @@ msgstr "Map bestaat al"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Map mag geen karakter '%c' bevatten!" msgstr "Map mag geen karakter '%c' bevatten!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Kies" msgstr "Openen"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Map en alle submappen verwijderen?" msgstr "Map en alle submappen verwijderen?"
@ -777,6 +777,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -804,9 +807,6 @@ msgstr "Naar begin"
msgid "Recordings" msgid "Recordings"
msgstr "Opnames" msgstr "Opnames"
msgid "Button$Open"
msgstr "Openen"
msgid "Commands" msgid "Commands"
msgstr "Commando's" msgstr "Commando's"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 Nynorsk <vdr@linuxtv.org>\n" "Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr ""
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr ""
msgid "Button$Select" msgid "Button$Open"
msgstr "" msgstr "Åpne"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr ""
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Spol tilbake"
msgid "Recordings" msgid "Recordings"
msgstr "Opptak" msgstr "Opptak"
msgid "Button$Open"
msgstr "Åpne"
msgid "Commands" msgid "Commands"
msgstr "Kommandoer" msgstr "Kommandoer"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2008-03-09 12:59+0100\n" "PO-Revision-Date: 2008-03-09 12:59+0100\n"
"Last-Translator: Marek Nazarko <mnazarko@gmail.com>\n" "Last-Translator: Marek Nazarko <mnazarko@gmail.com>\n"
"Language-Team: Polish <vdr@linuxtv.org>\n" "Language-Team: Polish <vdr@linuxtv.org>\n"
@ -605,8 +605,8 @@ msgstr "Taka nazwa katalogu juz istnieje"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Folder nie mo¿e zawieraæ '%c'!" msgstr "Folder nie mo¿e zawieraæ '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Wybierz" msgstr "Otwórz"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Czy skasowaæ katalog i wszystkie podkatalogi?" msgstr "Czy skasowaæ katalog i wszystkie podkatalogi?"
@ -774,6 +774,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -801,9 +804,6 @@ msgstr "Pocz
msgid "Recordings" msgid "Recordings"
msgstr "Nagrania" msgstr "Nagrania"
msgid "Button$Open"
msgstr "Otwórz"
msgid "Commands" msgid "Commands"
msgstr "Polecenia" msgstr "Polecenia"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2010-03-28 22:49+0100\n" "PO-Revision-Date: 2010-03-28 22:49+0100\n"
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n" "Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
"Language-Team: Portuguese <vdr@linuxtv.org>\n" "Language-Team: Portuguese <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "Nome da pasta j
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "O nome da pasta não pode conter '%c'!" msgstr "O nome da pasta não pode conter '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Seleccionar" msgstr "Abrir"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Apagar pasta e todas as subpastas?" msgstr "Apagar pasta e todas as subpastas?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Retroceder"
msgid "Recordings" msgid "Recordings"
msgstr "Gravações" msgstr "Gravações"
msgid "Button$Open"
msgstr "Abrir"
msgid "Commands" msgid "Commands"
msgstr "Comandos" msgstr "Comandos"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-02-09 23:01+0100\n" "PO-Revision-Date: 2013-02-09 23:01+0100\n"
"Last-Translator: Lucian Muresan <lucianm@users.sorceforge.net>\n" "Last-Translator: Lucian Muresan <lucianm@users.sorceforge.net>\n"
"Language-Team: Romanian <vdr@linuxtv.org>\n" "Language-Team: Romanian <vdr@linuxtv.org>\n"
@ -605,8 +605,8 @@ msgstr "Un director cu acelaşi nume există!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Numele directorului nu poate să conţină '%c'!" msgstr "Numele directorului nu poate să conţină '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Selectează" msgstr "Deschide"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Şterg directorul şi toate sub-directoarele?" msgstr "Şterg directorul şi toate sub-directoarele?"
@ -774,6 +774,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -801,9 +804,6 @@ msgstr "De la capăt"
msgid "Recordings" msgid "Recordings"
msgstr "Înregistrări" msgstr "Înregistrări"
msgid "Button$Open"
msgstr "Deschide"
msgid "Commands" msgid "Commands"
msgstr "Comenzi" msgstr "Comenzi"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-10 17:13+0100\n" "PO-Revision-Date: 2013-03-10 17:13+0100\n"
"Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n" "Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n"
"Language-Team: Russian <vdr@linuxtv.org>\n" "Language-Team: Russian <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "¸Üï ÔØàÕÚâÞàØØ ÝÕ ÔÞÛÖÝÞ áÞÔÕàÖÐâì '%c'!" msgstr "¸Üï ÔØàÕÚâÞàØØ ÝÕ ÔÞÛÖÝÞ áÞÔÕàÖÐâì '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "²ëÑàÐâì" msgstr "¾âÚàëâì"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "ÃÔÐÛØâì ÔØàÕÚâÞàØî Ø ÒáÕ ßÞÔÔØàÕÚâÞàØØ?" msgstr "ÃÔÐÛØâì ÔØàÕÚâÞàØî Ø ÒáÕ ßÞÔÔØàÕÚâÞàØØ?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "
msgid "Recordings" msgid "Recordings"
msgstr "·ÐßØáØ" msgstr "·ÐßØáØ"
msgid "Button$Open"
msgstr "¾âÚàëâì"
msgid "Commands" msgid "Commands"
msgstr "ºÞÜÐÝÔë" msgstr "ºÞÜÐÝÔë"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-04 21:24+0100\n" "PO-Revision-Date: 2013-03-04 21:24+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n" "Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: Slovak <vdr@linuxtv.org>\n" "Language-Team: Slovak <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr "N
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Názov zlo¾ky nesmie obsahova» '%c'!" msgstr "Názov zlo¾ky nesmie obsahova» '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Vybra»" msgstr "Otvori»"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Vymaza» zlo¾ku a v¹etky pod zlo¾ky?" msgstr "Vymaza» zlo¾ku a v¹etky pod zlo¾ky?"
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "Od za
msgid "Recordings" msgid "Recordings"
msgstr "Nahrávky" msgstr "Nahrávky"
msgid "Button$Open"
msgstr "Otvori»"
msgid "Commands" msgid "Commands"
msgstr "Príkazy" msgstr "Príkazy"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-04 12:46+0100\n" "PO-Revision-Date: 2013-03-04 12:46+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 <vdr@linuxtv.org>\n" "Language-Team: Slovenian <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "Ime direktorija
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Direkotrij ne sme vsebobati '%c'!" msgstr "Direkotrij ne sme vsebobati '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Izberi" msgstr "Odpri"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Izbri¹i direktorij in vse pod direktorije" msgstr "Izbri¹i direktorij in vse pod direktorije"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Na za
msgid "Recordings" msgid "Recordings"
msgstr "Posnetki" msgstr "Posnetki"
msgid "Button$Open"
msgstr "Odpri"
msgid "Commands" msgid "Commands"
msgstr "Ukazi" msgstr "Ukazi"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-16 15:05+0100\n" "PO-Revision-Date: 2013-03-16 15:05+0100\n"
"Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n" "Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n"
"Language-Team: Serbian <vdr@linuxtv.org>\n" "Language-Team: Serbian <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "Naziv direktorijuma ve
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Naziv direktorijuma ne sme da sadr¾i '%c'!" msgstr "Naziv direktorijuma ne sme da sadr¾i '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Izaberi" msgstr "Otvori"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Obri¹i direktorijum i sve poddirektorijume?" msgstr "Obri¹i direktorijum i sve poddirektorijume?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Na po
msgid "Recordings" msgid "Recordings"
msgstr "Snimci" msgstr "Snimci"
msgid "Button$Open"
msgstr "Otvori"
msgid "Commands" msgid "Commands"
msgstr "Komande" msgstr "Komande"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-02-18 17:04+0100\n" "PO-Revision-Date: 2013-02-18 17:04+0100\n"
"Last-Translator: Richard Lithvall <r-vdr@boomer.se>\n" "Last-Translator: Richard Lithvall <r-vdr@boomer.se>\n"
"Language-Team: Swedish <vdr@linuxtv.org>\n" "Language-Team: Swedish <vdr@linuxtv.org>\n"
@ -607,8 +607,8 @@ msgstr "Mappnamnet finns redan!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Mappnamnet får inte innehålla '%c'!" msgstr "Mappnamnet får inte innehålla '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Välj" msgstr "Öppna"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Radera mapp och alla undermappar?" msgstr "Radera mapp och alla undermappar?"
@ -776,6 +776,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -803,9 +806,6 @@ msgstr "
msgid "Recordings" msgid "Recordings"
msgstr "Inspelningar" msgstr "Inspelningar"
msgid "Button$Open"
msgstr "Öppna"
msgid "Commands" msgid "Commands"
msgstr "Kommandon" msgstr "Kommandon"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\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 <vdr@linuxtv.org>\n" "Language-Team: Turkish <vdr@linuxtv.org>\n"
@ -603,8 +603,8 @@ msgstr ""
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "" msgstr ""
msgid "Button$Select" msgid "Button$Open"
msgstr "" msgstr ""
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "" msgstr ""
@ -772,6 +772,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -799,9 +802,6 @@ msgstr "Baslang
msgid "Recordings" msgid "Recordings"
msgstr "Kayýtlar" msgstr "Kayýtlar"
msgid "Button$Open"
msgstr "Aç"
msgid "Commands" msgid "Commands"
msgstr "Komutlar" msgstr "Komutlar"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-02-09 16:00+0100\n" "PO-Revision-Date: 2013-02-09 16:00+0100\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n" "Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
"Language-Team: Ukrainian <vdr@linuxtv.org>\n" "Language-Team: Ukrainian <vdr@linuxtv.org>\n"
@ -604,8 +604,8 @@ msgstr "Назва теки вже існує!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "Назва теки не повинна містити '%c'!" msgstr "Назва теки не повинна містити '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "Вибрати" msgstr "Відкрити"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "Видалити теку і всі підтеки?" msgstr "Видалити теку і всі підтеки?"
@ -773,6 +773,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -800,9 +803,6 @@ msgstr "Назад"
msgid "Recordings" msgid "Recordings"
msgstr "Записи" msgstr "Записи"
msgid "Button$Open"
msgstr "Відкрити"
msgid "Commands" msgid "Commands"
msgstr "Команди" msgstr "Команди"
@ -1333,10 +1333,10 @@ msgid "Editing process already active!"
msgstr "Процес відеомонтажу вже запущений!" msgstr "Процес відеомонтажу вже запущений!"
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\tdefдеєёжз3\tghiиіїйкл4\tjklмно5\tmnoпрс6\tpqrsтуфх7\ttuvцчшщъ8\twxyzыьэюя9" msgstr " 0\t-.#~,/@1\tabcабвг2\tdefдеєёжз3\tghiиіїйкл4\tjklмно5\tmnoпрс6\tpqrsтуфх7\ttuvцчшщъ8\twxyzыьэюя9"
msgid "Button$ABC/abc" msgid "Button$ABC/abc"
msgstr "АБВ/абв" msgstr "АБВ/абв"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: VDR 2.0.0\n" "Project-Id-Version: VDR 2.0.0\n"
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n" "Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
"POT-Creation-Date: 2013-10-14 11:56+0200\n" "POT-Creation-Date: 2013-11-03 15:59+0100\n"
"PO-Revision-Date: 2013-03-04 14:52+0800\n" "PO-Revision-Date: 2013-03-04 14:52+0800\n"
"Last-Translator: NFVDR <nfvdr@live.com>\n" "Last-Translator: NFVDR <nfvdr@live.com>\n"
"Language-Team: Chinese (simplified) <nfvdr@live.com>\n" "Language-Team: Chinese (simplified) <nfvdr@live.com>\n"
@ -605,8 +605,8 @@ msgstr "文件夹名称已经存在!"
msgid "Folder name must not contain '%c'!" msgid "Folder name must not contain '%c'!"
msgstr "文件夹名称不能包含 '%c'!" msgstr "文件夹名称不能包含 '%c'!"
msgid "Button$Select" msgid "Button$Open"
msgstr "选择" msgstr "打开"
msgid "Delete folder and all sub folders?" msgid "Delete folder and all sub folders?"
msgstr "删除文件夹和所有子文件夹吗?" msgstr "删除文件夹和所有子文件夹吗?"
@ -774,6 +774,9 @@ msgstr ""
msgid "Recording vanished!" msgid "Recording vanished!"
msgstr "" msgstr ""
msgid "Edited version already exists - overwrite?"
msgstr ""
msgid "Error while queueing recording for cutting!" msgid "Error while queueing recording for cutting!"
msgstr "" msgstr ""
@ -801,9 +804,6 @@ msgstr "重放"
msgid "Recordings" msgid "Recordings"
msgstr "录像回放列表" msgstr "录像回放列表"
msgid "Button$Open"
msgstr "打开"
msgid "Commands" msgid "Commands"
msgstr "常用操作命令" msgstr "常用操作命令"

View File

@ -7,7 +7,7 @@
* For an explanation (in German) of the theory behind the calculations see * For an explanation (in German) of the theory behind the calculations see
* http://www.vdr-portal.de/board17-developer/board97-vdr-core/p1154305-grundlagen-und-winkelberechnungen-f%C3%BCr-h-h-diseqc-motor-antennenanlagen * http://www.vdr-portal.de/board17-developer/board97-vdr-core/p1154305-grundlagen-und-winkelberechnungen-f%C3%BCr-h-h-diseqc-motor-antennenanlagen
* *
* $Id: positioner.c 3.2 2013/10/10 14:14:10 kls Exp $ * $Id: positioner.c 3.4 2013/10/30 09:56:34 kls Exp $
*/ */
#include "positioner.h" #include "positioner.h"
@ -15,7 +15,7 @@
#include "config.h" #include "config.h"
#define SAT_EARTH_RATIO 0.1513 // the Earth's radius, divided by the distance from the Earth's center to the satellite #define SAT_EARTH_RATIO 0.1513 // the Earth's radius, divided by the distance from the Earth's center to the satellite
#define SAT_VISIBILITY_LAT 810 // the absolute latitude beyond which no satellite can be seen (degrees * 10) #define SAT_VISIBILITY_LAT 812 // the absolute latitude beyond which no satellite can be seen (degrees * 10)
#define RAD(x) ((x) * M_PI / 1800) #define RAD(x) ((x) * M_PI / 1800)
#define DEG(x) ((x) * 1800 / M_PI) #define DEG(x) ((x) * 1800 / M_PI)
@ -68,10 +68,10 @@ int cPositioner::CalcLongitude(int HourAngle)
int cPositioner::HorizonLongitude(ePositionerDirection Direction) int cPositioner::HorizonLongitude(ePositionerDirection Direction)
{ {
double Delta; double Delta;
if (abs(Setup.SiteLat) < SAT_VISIBILITY_LAT) if (abs(Setup.SiteLat) <= SAT_VISIBILITY_LAT)
Delta = acos(SAT_EARTH_RATIO / cos(RAD(Setup.SiteLat))); Delta = acos(SAT_EARTH_RATIO / cos(RAD(Setup.SiteLat)));
else else
Delta = RAD(145); Delta = 0;
if ((Setup.SiteLat >= 0) != (Direction == pdLeft)) if ((Setup.SiteLat >= 0) != (Direction == pdLeft))
Delta = -Delta; Delta = -Delta;
return NormalizeAngle(round(DEG(RAD(Setup.SiteLon) + Delta))); return NormalizeAngle(round(DEG(RAD(Setup.SiteLon) + Delta)));

Some files were not shown because too many files have changed in this diff Show More