TDME2 1.9.121
VorbisDecoder.h
Go to the documentation of this file.
1#pragma once
2
3#include <vorbis/vorbisfile.h>
4
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
15
16using std::string;
17using std::vector;
18
23
24/**
25 * OGG/Vorbis audio decoder
26 * @author Andreas Drewke
27 */
29{
30private:
31 struct OGGFileData {
32 vector<uint8_t> data;
33 size_t position { 0 };
34 };
35
36public:
37
38 /**
39 * Open a local file
40 * @param pathName path name
41 * @param fileName file name
42 * @throws tdme::os::filesystem::FileSystemException
43 * @throws tdme::audio::decoder::AudioDecoderException
44 */
45 virtual void openFile(const string& pathName, const string& fileName);
46
47 /**
48 * Resets this audio decoder, if a stream was open it will be rewinded
49 * @throws tdme::os::filesystem::FileSystemException
50 * @throws tdme::audio::decoder::AudioDecoderException
51 */
52 virtual void reset();
53
54 /**
55 * Read raw PCM data from stream
56 * @param data byte buffer
57 * @throws tdme::os::filesystem::FileSystemException
58 * @throws tdme::audio::decoder::AudioDecoderException
59 * @return number of bytes read
60 */
61 virtual int32_t readFromStream(ByteBuffer* data);
62
63 /**
64 * Closes the audio file
65 * @throws tdme::os::filesystem::FileSystemException
66 * @throws tdme::audio::decoder::AudioDecoderException
67 */
68 virtual void close();
69
70 /**
71 * Constructor
72 */
74
75 /**
76 * Destructor
77 */
79
80private:
81 /**
82 * Read from OGG file data
83 * @param buffer buffer to read into
84 * @param size chunk bytes to read
85 * @param count chunk count to read
86 * @param oggFileData pointer to OGG file data
87 */
88 static size_t oggfiledata_read(void* buffer, size_t size, size_t count, VorbisDecoder::OGGFileData* oggFileData);
89
90 /**
91 * Seek in OGG file data
92 * @param oggFileData OGG file data pointer
93 * @param offset offset (can be relative to position)
94 * @param whence whence see (SEEK_*)
95 */
96 static int oggfiledata_seek(VorbisDecoder::OGGFileData* oggFileData, ogg_int64_t offset, int whence);
97
98 /**
99 * Close OGG file data
100 * @param oggFileData pointer to OGG file data
101 */
103
104 /**
105 * Tell position of OGG file data
106 * @param oggFileData pointer to OGG file data
107 * @return current read position
108 */
110
112 string pathName;
113 string fileName;
114 OggVorbis_File vf;
116};
Audio decoder base class.
Definition: AudioDecoder.h:24
OGG/Vorbis audio decoder.
Definition: VorbisDecoder.h:29
virtual void openFile(const string &pathName, const string &fileName)
Open a local file.
static int oggfiledata_close(VorbisDecoder::OGGFileData *oggFileData)
Close OGG file data.
virtual void close()
Closes the audio file.
static int oggfiledata_seek(VorbisDecoder::OGGFileData *oggFileData, ogg_int64_t offset, int whence)
Seek in OGG file data.
static size_t oggfiledata_read(void *buffer, size_t size, size_t count, VorbisDecoder::OGGFileData *oggFileData)
Read from OGG file data.
virtual void reset()
Resets this audio decoder, if a stream was open it will be rewinded.
virtual int32_t readFromStream(ByteBuffer *data)
Read raw PCM data from stream.
static long oggfiledata_tell(VorbisDecoder::OGGFileData *oggFileData)
Tell position of OGG file data.
Byte buffer class.
Definition: ByteBuffer.h:24