diff options
Diffstat (limited to 'dxr3device.c')
-rw-r--r-- | dxr3device.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dxr3device.c b/dxr3device.c index 6169ece..d4dbdb3 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -339,9 +339,9 @@ int cDxr3Device::PlayVideo(const uchar *Data, int Length) // ================================== // plays additional audio streams, like Dolby Digital #if VDRVERSNUM >= 10318 - int PlayAudio(const uchar *Data, int Length) + int cDxr3Device::PlayAudio(const uchar *Data, int Length) #else - void PlayAudio(const uchar *Data, int Length) + void cDxr3Device::PlayAudio(const uchar *Data, int Length) #endif { int retLength = 0; @@ -349,12 +349,12 @@ int cDxr3Device::PlayVideo(const uchar *Data, int Length) int origLength = Length; #endif - #if VDRVERSNUM < 10307 +#if VDRVERSNUM < 10307 if (!m_AC3Present) { Interface->Write(Interface->Width() / 2, 0, "AC3", clrRed); } - #endif +#endif m_AC3Present = true; |