123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2012 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef _SFXVORBISSTREAM_H_
- #define _SFXVORBISSTREAM_H_
- #ifdef TORQUE_OGGVORBIS
- #ifndef _SFXFILESTREAM_H_
- # include "sfx/sfxFileStream.h"
- #endif
- #include "core/util/safeDelete.h"
- #include "vorbis/vorbisfile.h"
- /// An SFXFileStream that loads sample data from a Vorbis file.
- class SFXVorbisStream : public SFXFileStream,
- public IPositionable< U32 >
- {
- public:
- typedef SFXFileStream Parent;
- protected:
- /// The vorbis file.
- OggVorbis_File *mVF;
- /// The current bitstream index.
- S32 mBitstream;
-
- /// Total number of bytes read from the Vorbis stream so far.
- U32 mBytesRead;
- ///
- bool _openVorbis();
- // The ov_callbacks.
- static size_t _read_func( void *ptr, size_t size, size_t nmemb, void *datasource );
- static S32 _seek_func( void *datasource, ogg_int64_t offset, S32 whence );
- static long _tell_func( void *datasource );
- // SFXStream
- virtual bool _readHeader();
- virtual void _close();
- public:
- ///
- static SFXVorbisStream* create( Stream *stream );
- ///
- SFXVorbisStream();
- ///
- SFXVorbisStream( const SFXVorbisStream& cloneFrom );
- virtual ~SFXVorbisStream();
- ///
- const vorbis_info* getInfo( S32 link = -1 );
- ///
- const vorbis_comment* getComment( S32 link = -1 );
- ///
- // TODO: Deal with error cases... like for unseekable streams!
- U64 getPcmTotal( S32 link = -1 );
- ///
- S32 read( U8 *buffer,
- U32 length,
- S32 *bitstream );
- // SFXStream
- virtual void reset();
- virtual U32 read( U8 *buffer, U32 length );
- virtual bool isEOS() const;
- virtual SFXStream* clone() const
- {
- SFXVorbisStream* stream = new SFXVorbisStream( *this );
- if( !stream->mVF )
- SAFE_DELETE( stream );
- return stream;
- }
- // IPositionable
- virtual U32 getPosition() const;
- virtual void setPosition( U32 offset );
- };
- #endif // TORQUE_OGGVORBIS
- #endif // _SFXVORBISSTREAM_H_
|