diff options
Diffstat (limited to 'src/libjin/audio/sdl/source.cpp')
-rw-r--r-- | src/libjin/audio/sdl/source.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/libjin/audio/sdl/source.cpp b/src/libjin/audio/sdl/source.cpp index cca4d3e..c36346c 100644 --- a/src/libjin/audio/sdl/source.cpp +++ b/src/libjin/audio/sdl/source.cpp @@ -1,2 +1,30 @@ #include "source.h" +namespace jin +{ +namespace audio +{ + + void SDLSource::generateSamples(Uint8* streamIn, int len) + { + + } + + void SDLSource::play() {} + void SDLSource::stop() {} + void SDLSource::pause() {} + void SDLSource::resume() {} + void SDLSource::rewind() {} + void SDLSource::isStopped() const {} + void SDLSource::isPaused() const {} + void SDLSource::isFinished() const {} + void SDLSource::setPitch(float pitch) {} + void SDLSource::setVolume(float volume) {} + bool SDLSource::setLoop(bool loop) + { + return false; + } + void SDLSource::setRate(float rate) {} + +} +} |