Changeset 8362 in orxonox.OLD for trunk/src/lib/sound
- Timestamp:
- Jun 14, 2006, 10:08:41 AM (18 years ago)
- Location:
- trunk/src/lib/sound
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/sound/ogg_player.cc
r8350 r8362 31 31 32 32 #include "debug.h" 33 #include "compiler.h" 33 34 34 35 #ifdef HAVE_SDL_SDL_H -
trunk/src/lib/sound/sound_buffer.cc
r8293 r8362 22 22 #include "sdlincl.h" 23 23 #include <cassert> 24 #include "debug.h" 25 24 26 #ifdef HAVE_SDL_SDL_H 25 27 #include <SDL/SDL.h> … … 81 83 } 82 84 #endif 83 alBufferData(this->bufferID, SoundBuffer::sdlAudioSpecToAlFormat(&wavSpec), 85 alBufferData(this->bufferID, SoundBuffer::sdlAudioSpecToAlFormat(&wavSpec), 84 86 wavBuffer, wavLength, wavSpec.freq); 85 87 86 88 SDL_FreeWAV(wavBuffer); 87 89 if (SoundEngine::checkError("Could not load Wave file", __LINE__)) -
trunk/src/lib/sound/sound_source.cc
r8350 r8362 21 21 #include "alincl.h" 22 22 #include "compiler.h" 23 #include "debug.h" 23 24 24 25 namespace OrxSound
Note: See TracChangeset
for help on using the changeset viewer.