This commit is contained in:
Glenn Maynard
2006-12-27 07:52:25 +00:00
parent 9f577de2e5
commit 461658edff
2 changed files with 1 additions and 6 deletions
@@ -25,11 +25,6 @@ void RageSoundReader_SpeedChange::SetSpeedRatio( float fRatio )
m_fTrailingSpeedRatio = m_fSpeedRatio;
}
float RageSoundReader_SpeedChange::GetRatio() const
{
return m_fSpeedRatio;
}
int RageSoundReader_SpeedChange::GetWindowSizeFrames() const
{
return (WINDOW_SIZE_MS * GetSampleRate()) / 1000;
+1 -1
View File
@@ -24,7 +24,7 @@ public:
bool NextReadWillStep() const { return GetCursorAvail() == 0; }
/* Get the ratio last set by SetSpeedRatio. */
float GetRatio() const;
float GetRatio() const { return m_fSpeedRatio; }
protected:
int FillData( int iMax );