diff options
author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-27 21:24:48 +0200 |
---|---|---|
committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2009-04-27 21:24:48 +0200 |
commit | 66a110fad54cd8fac8182964700bbf213748caee (patch) | |
tree | 94cc43104c767b2156565b5ffe9beb4fe235df9b /dxr3syncbuffer.c | |
parent | cea0df05bccf30a16cc77ee6f35f97faea481b72 (diff) | |
download | vdr-plugin-dxr3-66a110fad54cd8fac8182964700bbf213748caee.tar.gz vdr-plugin-dxr3-66a110fad54cd8fac8182964700bbf213748caee.tar.bz2 |
get rid of WaitForSysClock and WaitForNextPut, as they are not used
Diffstat (limited to 'dxr3syncbuffer.c')
-rw-r--r-- | dxr3syncbuffer.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/dxr3syncbuffer.c b/dxr3syncbuffer.c index fc454da..bd18af6 100644 --- a/dxr3syncbuffer.c +++ b/dxr3syncbuffer.c @@ -341,39 +341,6 @@ void cDxr3SyncBuffer::Clear(void) } // ================================== -void cDxr3SyncBuffer::WaitForSysClock(uint32_t pts, uint32_t delta) -{ - m_waitPts = pts; - m_waitDelta = delta; - if (!m_bPutBlock) - { - m_bWaitPts = true; - m_bGetBlock = true; - ReceiverStopped(); - WaitForGet(); - } - else - { - cCondWait::SleepMs(3); //* (pts - pSysClock->GetSysClock())); - } -} - -// ================================== -void cDxr3SyncBuffer::WaitForNextPut(void) -{ - if (!m_bPutBlock) - { - m_bGetBlock = true; - ReceiverStopped(); - WaitForGet(); - } - else - { - cCondWait::SleepMs(3); - } -} - -// ================================== void cDxr3SyncBuffer::Start(void) { m_bStartReceiver = true; |