Age | Commit message (Collapse) | Author |
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|