From: <pst...@us...> - 2009-01-22 02:25:04
|
Revision: 697 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=697&view=rev Author: pstieber Date: 2009-01-22 02:24:58 +0000 (Thu, 22 Jan 2009) Log Message: ----------- Prefixed data member with m. Modified Paths: -------------- trunk/jazz/src/AlsaPlayer.cpp Modified: trunk/jazz/src/AlsaPlayer.cpp =================================================================== --- trunk/jazz/src/AlsaPlayer.cpp 2009-01-21 06:04:36 UTC (rev 696) +++ trunk/jazz/src/AlsaPlayer.cpp 2009-01-22 02:24:58 UTC (rev 697) @@ -813,7 +813,7 @@ stop_queue_timer(); clear_input_queue(); JZProjectManager::Instance()->NewPlayPosition(-1); - RecdBuffer.Keyoff2Length(); + mRecdBuffer.Keyoff2Length(); } //----------------------------------------------------------------------------- @@ -924,7 +924,7 @@ // Not all events are to be recorded. Only those filtered out and put // into the event. pEvent->SetClock(PlayLoop->Ext2IntClock(ev->time.tick)); - RecdBuffer.Put(pEvent); + mRecdBuffer.Put(pEvent); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2011-07-28 12:52:46
|
Revision: 846 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=846&view=rev Author: pstieber Date: 2011-07-28 12:52:40 +0000 (Thu, 28 Jul 2011) Log Message: ----------- Updated Linux code (Events -> mppEvents). Modified Paths: -------------- trunk/jazz/src/AlsaPlayer.cpp Modified: trunk/jazz/src/AlsaPlayer.cpp =================================================================== --- trunk/jazz/src/AlsaPlayer.cpp 2011-07-28 12:36:39 UTC (rev 845) +++ trunk/jazz/src/AlsaPlayer.cpp 2011-07-28 12:52:40 UTC (rev 846) @@ -645,7 +645,7 @@ } play_clock = Now; - if (mPlayBuffer.nEvents && mPlayBuffer.Events[0]->GetClock() < mOutClock) + if (mPlayBuffer.nEvents && mPlayBuffer.mppEvents[0]->GetClock() < mOutClock) { FlushToDevice(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-01-07 05:11:29
|
Revision: 947 http://sourceforge.net/p/jazzplusplus/code/947 Author: pstieber Date: 2013-01-07 05:11:25 +0000 (Mon, 07 Jan 2013) Log Message: ----------- Wrapped cout code with DEBUG_ALSA tests. Modified Paths: -------------- trunk/jazz/src/AlsaPlayer.cpp Modified: trunk/jazz/src/AlsaPlayer.cpp =================================================================== --- trunk/jazz/src/AlsaPlayer.cpp 2013-01-07 01:24:06 UTC (rev 946) +++ trunk/jazz/src/AlsaPlayer.cpp 2013-01-07 05:11:25 UTC (rev 947) @@ -596,7 +596,9 @@ // called by timer int Now = GetRealTimeClock(); +#ifdef DEBUG_ALSA cout << "JZAlsaPlayer::Notify " << Now << ' ' << play_clock << endl; +#endif // DEBUG_ALSA if (Now < 0) { @@ -607,7 +609,9 @@ { // rewind.. // clear and rebuild +#ifdef DEBUG_ALSA cout << "JZAlsaPlayer::Notify rewind" << endl; +#endif // DEBUG_ALSA ResetPlay(Now); mPlayBuffer.Clear(); mOutClock = Now + FIRST_DELTACLOCK; @@ -831,10 +835,12 @@ { JZEvent* pEvent = 0; +#ifdef DEBUG_ALSA cout << "JZAlsaPlayer::recd_event got " << (int)ev->type << " (echo is " << SND_SEQ_EVENT_ECHO << ')' << endl; +#endif // DEBUG_ALSA switch (ev->type) { @@ -917,7 +923,9 @@ else { recd_clock = ev->time.tick; +#ifdef DEBUG_ALSA cout << "recd_clock now: " << recd_clock << endl; +#endif // DEBUG_ALSA } break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-04-02 20:22:48
|
Revision: 1001 http://sourceforge.net/p/jazzplusplus/code/1001 Author: pstieber Date: 2013-04-02 20:22:45 +0000 (Tue, 02 Apr 2013) Log Message: ----------- Updated a data member name. Modified Paths: -------------- trunk/jazz/src/AlsaPlayer.cpp Modified: trunk/jazz/src/AlsaPlayer.cpp =================================================================== --- trunk/jazz/src/AlsaPlayer.cpp 2013-04-02 20:21:34 UTC (rev 1000) +++ trunk/jazz/src/AlsaPlayer.cpp 2013-04-02 20:22:45 UTC (rev 1001) @@ -649,7 +649,9 @@ } play_clock = Now; - if (mPlayBuffer.nEvents && mPlayBuffer.mppEvents[0]->GetClock() < mOutClock) + if ( + mPlayBuffer.mEventCount && + mPlayBuffer.mppEvents[0]->GetClock() < mOutClock) { FlushToDevice(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |