From 0a517afdf8c4824d2961c477bda753ca81e800db Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 3 Nov 2002 11:53:58 +0100 Subject: Implemented audio plugin interface --- player.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'player.c') diff --git a/player.c b/player.c index 3eecc2d4..a88c5010 100644 --- a/player.c +++ b/player.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: player.c 1.5 2002/08/15 10:29:17 kls Exp $ + * $Id: player.c 1.6 2002/11/02 14:55:37 kls Exp $ */ #include "player.h" @@ -31,12 +31,13 @@ int cPlayer::PlayVideo(const uchar *Data, int Length) return -1; } -int cPlayer::PlayAudio(const uchar *Data, int Length) +void cPlayer::PlayAudio(const uchar *Data, int Length) { - if (device) - return device->PlayAudio(Data, Length); + if (device) { + device->PlayAudio(Data, Length); + return; + } esyslog("ERROR: attempt to use cPlayer::PlayAudio() without attaching to a cDevice!"); - return -1; } void cPlayer::Detach(void) -- cgit v1.2.3