diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-22 11:09:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-22 11:09:14 +0200 |
commit | 710f6c37d17a755a1e53474b0c087616a9578d0d (patch) | |
tree | 4e2797e41f52088278b7c664952894912bd40f3b | |
parent | dc7f2d3624375c6ac8e2f255ce0b5dc1872a178a (diff) | |
download | vdr-710f6c37d17a755a1e53474b0c087616a9578d0d.tar.gz vdr-710f6c37d17a755a1e53474b0c087616a9578d0d.tar.bz2 |
Added cPlayer::DeviceSetVideoDisplayFormat()
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | player.h | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index ba23c73f..c8f393bd 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1173,6 +1173,7 @@ Marco Schlüßler <marco@lordzodiac.de> for fixing a bug in libsi's SubtitlingDescriptor::getLength() for removing scaling coordinates in letterbox mode from cDvbSpu for fixing a wrong inheritance in libsi's SubtitlingDescriptor::Subtitling + for adding cPlayer::DeviceSetVideoDisplayFormat() Jürgen Schmitz <j.schmitz@web.de> for reporting a bug in displaying the current channel when switching via the SVDRP @@ -3548,3 +3548,4 @@ Video Disk Recorder Revision History - Avoiding extra blanks at the end of names of instant recordings. - Removed converting byte order on big endian systems from cDvbOsd::Flush(), which, according to Johannes Stezenbach and Paavo Hartikainen, is wrong. +- Added cPlayer::DeviceSetVideoDisplayFormat() (thanks to Marco Schlüßler). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: player.h 1.16 2005/02/12 14:45:29 kls Exp $ + * $Id: player.h 1.17 2005/05/22 11:07:42 kls Exp $ */ #ifndef __PLAYER_H @@ -29,6 +29,7 @@ protected: void DevicePlay(void) { if (device) device->Play(); } void DeviceFreeze(void) { if (device) device->Freeze(); } void DeviceMute(void) { if (device) device->Mute(); } + void DeviceSetVideoDisplayFormat(eVideoDisplayFormat VideoDisplayFormat) { if (device) device->SetVideoDisplayFormat(VideoDisplayFormat); } void DeviceStillPicture(const uchar *Data, int Length) { if (device) device->StillPicture(Data, Length); } void Detach(void); virtual void Activate(bool On) {} |