2007-04-30 10:58:27 -07:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 2005-2007 Warzone Resurrection Project
|
|
|
|
|
|
|
|
Warzone 2100 is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Warzone 2100 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIBSOUND_OGGVORBIS_H_
|
|
|
|
#define _LIBSOUND_OGGVORBIS_H_
|
|
|
|
|
|
|
|
#include "lib/framework/frame.h"
|
|
|
|
#include <physfs.h>
|
|
|
|
|
2007-04-30 16:52:51 -07:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
// the size of the data contained in *data (NOTE: this is *NOT* the size of *data itself)
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
// the size of the buffer *data points to plus sizeof(soundDataBuffer)
|
|
|
|
size_t bufferSize;
|
2007-05-23 13:57:11 -07:00
|
|
|
|
2007-04-30 16:52:51 -07:00
|
|
|
unsigned int bitsPerSample;
|
|
|
|
unsigned int channelCount;
|
|
|
|
unsigned int frequency;
|
2007-05-29 03:32:15 -07:00
|
|
|
|
|
|
|
// the raw PCM data
|
2007-05-29 07:55:24 -07:00
|
|
|
#if defined(WZ_C99)
|
2007-05-29 03:32:15 -07:00
|
|
|
char data[];
|
|
|
|
#else
|
|
|
|
char* data;
|
2007-05-29 07:55:24 -07:00
|
|
|
#endif /* WZ_C99 */
|
2007-04-30 16:52:51 -07:00
|
|
|
} soundDataBuffer;
|
|
|
|
|
2007-05-25 07:56:18 -07:00
|
|
|
// Forward declaration so we can take pointers to this type
|
|
|
|
struct OggVorbisDecoderState;
|
2007-04-30 16:52:51 -07:00
|
|
|
|
2007-05-25 07:56:18 -07:00
|
|
|
struct OggVorbisDecoderState* sound_CreateOggVorbisDecoder(PHYSFS_file* PHYSFS_fileHandle, BOOL allowSeeking);
|
|
|
|
void sound_DestroyOggVorbisDecoder(struct OggVorbisDecoderState* decoder);
|
|
|
|
|
|
|
|
soundDataBuffer* sound_DecodeOggVorbis(struct OggVorbisDecoderState* decoder, size_t bufferSize);
|
2007-04-30 10:58:27 -07:00
|
|
|
|
|
|
|
#endif // _LIBSOUND_OGGVORBIS_H_
|