From 710f6c37d17a755a1e53474b0c087616a9578d0d Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 22 May 2005 11:09:14 +0200 Subject: Added cPlayer::DeviceSetVideoDisplayFormat() --- player.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'player.h') diff --git a/player.h b/player.h index 6b08178f..4316a753 100644 --- a/player.h +++ b/player.h @@ -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) {} -- cgit v1.2.3