Home
last modified time | relevance | path

Searched refs:VorbisStream (Results 1 – 4 of 4) sorted by relevance

/dports/games/libretro-scummvm/scummvm-7b1e929/audio/decoders/
H A Dvorbis.cpp91 class VorbisStream : public SeekableAudioStream { class
108 VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose);
109 ~VorbisStream();
123 VorbisStream::VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose) : in VorbisStream() function in Audio::VorbisStream
150 VorbisStream::~VorbisStream() { in ~VorbisStream()
154 int VorbisStream::readBuffer(int16 *buffer, const int numSamples) { in readBuffer()
170 bool VorbisStream::seek(const Timestamp &where) { in seek()
183 bool VorbisStream::refill() { in refill()
246 SeekableAudioStream *s = new VorbisStream(stream, disposeAfterUse); in makeVorbisStream()
/dports/games/residualvm/residualvm-0.3.1/audio/decoders/
H A Dvorbis.cpp91 class VorbisStream : public SeekableAudioStream { class
108 VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose);
109 ~VorbisStream();
123 VorbisStream::VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose) : in VorbisStream() function in Audio::VorbisStream
150 VorbisStream::~VorbisStream() { in ~VorbisStream()
154 int VorbisStream::readBuffer(int16 *buffer, const int numSamples) { in readBuffer()
170 bool VorbisStream::seek(const Timestamp &where) { in seek()
183 bool VorbisStream::refill() { in refill()
246 SeekableAudioStream *s = new VorbisStream(stream, disposeAfterUse); in makeVorbisStream()
/dports/games/scummvm/scummvm-2.5.1/audio/decoders/
H A Dvorbis.cpp91 class VorbisStream : public SeekableAudioStream { class
108 VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose);
109 ~VorbisStream();
123 VorbisStream::VorbisStream(Common::SeekableReadStream *inStream, DisposeAfterUse::Flag dispose) : in VorbisStream() function in Audio::VorbisStream
150 VorbisStream::~VorbisStream() { in ~VorbisStream()
154 int VorbisStream::readBuffer(int16 *buffer, const int numSamples) { in readBuffer()
170 bool VorbisStream::seek(const Timestamp &where) { in seek()
183 bool VorbisStream::refill() { in refill()
246 SeekableAudioStream *s = new VorbisStream(stream, disposeAfterUse); in makeVorbisStream()
/dports/games/irrlamb/irrlamb-1.0.1/src/
H A Daudio.cpp140 OggVorbis_File VorbisStream; in LoadBuffer() local
141 int ReturnCode = ov_fopen(Path.c_str(), &VorbisStream); in LoadBuffer()
148 vorbis_info *Info = ov_info(&VorbisStream, -1); in LoadBuffer()
173 BytesRead = ov_read(&VorbisStream, Buffer, 4096, 0, 2, 1, &BitStream); in LoadBuffer()
182 ov_clear(&VorbisStream); in LoadBuffer()