Pushing audio samples through.

This commit is contained in:
Ben Vanik
2014-01-12 02:39:47 -08:00
parent dbf1aa182e
commit ecbd2c7e89
5 changed files with 36 additions and 15 deletions

View File

@@ -36,6 +36,10 @@ void NopAudioSystem::Pump() {
//
}
void NopAudioSystem::SubmitFrame(uint32_t samples_ptr) {
// Process samples! They are big-endian floats.
}
void NopAudioSystem::Shutdown() {
AudioSystem::Shutdown();
}

View File

@@ -28,6 +28,8 @@ public:
virtual void Shutdown();
virtual void SubmitFrame(uint32_t samples_ptr);
protected:
virtual void Initialize();
virtual void Pump();