diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-25 09:06:44 +0100 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-02-25 09:06:44 +0100 |
commit | e900f1d40ca151d6c5a7aa976971325d13416f02 (patch) | |
tree | aff1084f50beb2050f6e569570b5d0e3bfe112ad /dxr3device.c | |
parent | 48856f12734897c27f6dc2429bc259707d65d0f9 (diff) | |
download | vdr-plugin-dxr3-e900f1d40ca151d6c5a7aa976971325d13416f02.tar.gz vdr-plugin-dxr3-e900f1d40ca151d6c5a7aa976971325d13416f02.tar.bz2 |
working alsa support
At the moment alsa support is disabled, but it is working (with some problems)
Diffstat (limited to 'dxr3device.c')
-rw-r--r-- | dxr3device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dxr3device.c b/dxr3device.c index f744254..b612abe 100644 --- a/dxr3device.c +++ b/dxr3device.c @@ -28,6 +28,7 @@ #include "dxr3tools.h" #include "dxr3osd.h" #include "dxr3audio-oss.h" +#include "dxr3audio-alsa.h" // ================================== //! constructor @@ -42,6 +43,7 @@ cDxr3Device::cDxr3Device() : m_DemuxDevice(cDxr3Interface::Instance()) // where we will decide what kind of // audio output system we will use. audioOut = new cAudioOss(); + //audioOut = new cAudioAlsa(); m_DemuxDevice.setAudio(audioOut); } |