cleanup, comment

This commit is contained in:
Glenn Maynard
2003-08-20 18:15:49 +00:00
parent f4dfc1b777
commit d363ddd885
+4 -2
View File
@@ -37,9 +37,10 @@
#include "RageUtil.h" #include "RageUtil.h"
#include "RageLog.h" #include "RageLog.h"
#include "RageException.h" #include "RageException.h"
#include "PrefsManager.h" #include "PrefsManager.h"
#include <math.h>
#if defined(OGG_ONLY) #if defined(OGG_ONLY)
#include "RageSoundReader_Vorbisfile.h" #include "RageSoundReader_Vorbisfile.h"
#define RageSoundReader_LowLevel RageSoundReader_Vorbisfile #define RageSoundReader_LowLevel RageSoundReader_Vorbisfile
@@ -221,6 +222,8 @@ void RageSound::SetLengthSeconds(float secs)
m_LengthSamples = int(secs*samplerate()); m_LengthSamples = int(secs*samplerate());
} }
/* Read data at the rate we're playing it. We only do this to smooth out the rate
* we read data; the sound thread will always read more if it's needed. */
void RageSound::Update(float delta) void RageSound::Update(float delta)
{ {
if(playing && delta) if(playing && delta)
@@ -233,7 +236,6 @@ int RageSound::Bytes_Available() const
return databuf.size(); return databuf.size();
} }
#include <math.h>
void RageSound::RateChange(char *buf, int &cnt, void RageSound::RateChange(char *buf, int &cnt,
int speed_input_samples, int speed_output_samples, int channels) int speed_input_samples, int speed_output_samples, int channels)