Implemented audio plugin interface

This commit is contained in:
Klaus Schmidinger
2002-11-03 11:53:58 +01:00
parent 2e26a1d607
commit 0a517afdf8
13 changed files with 263 additions and 44 deletions

View File

@@ -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)