Age | Commit message (Collapse) | Author |
|
At the moment alsa support is disabled, but it is working (with some problems)
|
|
With this commit ALSA support is only some commits away. This commit
introduces cAudioOss, which has everything needed in it to handle a oss
audio device. There are some problems, which will fixed soon.
For instance, external mode is not supported at the moment.
|
|
Introduce a iAudio class - will be later base class for oss and alas
output -, which handles volume and channel handling.
|
|
cDxr3NextPts was only used to set a pts and to clear the value. There
was never a get for the pts. So there is no need for this class -> kick it
|
|
|
|
on amd64
|
|
|
|
|
|
|
|
With the old singleton pattern it could happen that two instances are
created. See...
static T& Instance()
{
static T m_Instance;
return m_Instance;
}
static T* InstanceP()
{
static T* m_InstanceP = new T;
return m_InstanceP;
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
problems with various 1.3.x vdr versions.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|