summaryrefslogtreecommitdiff
path: root/dxr3syncbuffer.c
diff options
context:
space:
mode:
authorChristian Gmeiner <christian.gmeiner@gmail.com>2009-02-19 14:02:13 +0100
committerChristian Gmeiner <christian.gmeiner@gmail.com>2009-02-19 14:02:13 +0100
commit9f9db2b92fb3a36db4b21e2b07bb6029d9adc4dc (patch)
tree01687282e9c455f30728f4810fdd5d97dbc5f7d4 /dxr3syncbuffer.c
parent16d5e29531c0f383dc5d2622a4167d7995f3bf85 (diff)
downloadvdr-plugin-dxr3-9f9db2b92fb3a36db4b21e2b07bb6029d9adc4dc.tar.gz
vdr-plugin-dxr3-9f9db2b92fb3a36db4b21e2b07bb6029d9adc4dc.tar.bz2
remove cDxr3NextPts
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
Diffstat (limited to 'dxr3syncbuffer.c')
-rw-r--r--dxr3syncbuffer.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/dxr3syncbuffer.c b/dxr3syncbuffer.c
index ce9c741..95a9bd8 100644
--- a/dxr3syncbuffer.c
+++ b/dxr3syncbuffer.c
@@ -299,10 +299,6 @@ void cDxr3SyncBuffer::Pop(void)
if (tmpBuffer) tmpBuffer = --tmpBuffer ? tmpBuffer : (Size() - 1);
nextPts = m_pBuffer[tmpBuffer].GetPts();
}
- if (nextPts != 30)
- {
- cDxr3NextPts::Instance().SetNextPts(nextPts);
- }
m_next++;
m_count--;
@@ -358,7 +354,6 @@ void cDxr3SyncBuffer::Clear(void)
m_bPutBlock = false;
}
cFixedLengthFrame::Clear();
- cDxr3NextPts::Instance().Clear();
}
// ==================================