00001 00025 #ifndef SOUND_SOUNDOGG 00026 #define SOUND_SOUNDOGG 00027 00028 #include <vorbis/vorbisfile.h> 00029 00030 #include <string> 00031 00032 namespace dmn 00033 { 00037 class SoundOgg 00038 { 00039 public: 00051 static bool to_pcm(char *filename, char **pcm, 00052 unsigned long *length, short *channels, 00053 unsigned long *rate); 00054 }; 00055 }; 00056 00057 #endif // SOUND_SOUNDOGG