TDME2 1.9.121
AudioDecoder.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13
17
18/**
19 * Audio decoder base class
20 * @author Andreas Drewke
21 * @version $Id$
22 */
24{
25public:
26 static constexpr int32_t CHANNELS_NONE { -1 };
27 static constexpr int32_t SAMPLERATE_NONE { -1 };
28 static constexpr int32_t BITSPERSAMPLES_NONE { -1 };
29 static constexpr int32_t SAMPLES_NONE { -1 };
30
31protected:
32 int32_t channels;
33 int32_t sampleRate;
35 int32_t samples;
36
37public:
38
39 /**
40 * Open a local file
41 * @param pathName path name
42 * @param fileName file name
43 * @throws tdme::os::filesystem::FileSystemException
44 * @throws tdme::audio::decoder::AudioDecoderException
45 */
46 virtual void openFile(const string& pathName, const string& fileName) = 0;
47
48 /**
49 * Resets this audio decoder, if a stream was open it will be rewinded
50 * @throws tdme::os::filesystem::FileSystemException
51 * @throws tdme::audio::decoder::AudioDecoderException
52 */
53 virtual void reset() = 0;
54
55 /**
56 * @return number of channels or CHANNELS_NONE
57 */
58 inline int32_t getChannels() {
59 return channels;
60 }
61
62 /**
63 * @return sample rate in hz or SAMPLERATE_NONE
64 */
65 inline int32_t getSampleRate() {
66 return sampleRate;
67 }
68
69 /**
70 * @return bits per sample or BITSPERSAMPLES_NONE
71 */
72 inline int32_t getBitsPerSample() {
73 return bitsPerSample;
74 }
75
76 /**
77 * @return samples or SAMPLES_NONE
78 */
79 inline int32_t getSamples() {
80 return samples;
81 }
82
83 /**
84 * Read raw PCM data from stream
85 * @param data byte buffer
86 * @throws tdme::os::filesystem::FileSystemException
87 * @throws tdme::audio::decoder::AudioDecoderException
88 * @return number of bytes read
89 */
90 virtual int32_t readFromStream(ByteBuffer* data) = 0;
91
92 /**
93 * Closes the audio file
94 * @throws tdme::os::filesystem::FileSystemException
95 * @throws tdme::audio::decoder::AudioDecoderException
96 */
97 virtual void close() = 0;
98
99 /**
100 * Constructor
101 */
102 AudioDecoder();
103
104 /**
105 * Destructor
106 */
107 virtual ~AudioDecoder();
108};
Audio decoder base class.
Definition: AudioDecoder.h:24
virtual void openFile(const string &pathName, const string &fileName)=0
Open a local file.
virtual ~AudioDecoder()
Destructor.
virtual void reset()=0
Resets this audio decoder, if a stream was open it will be rewinded.
static constexpr int32_t CHANNELS_NONE
Definition: AudioDecoder.h:26
virtual int32_t readFromStream(ByteBuffer *data)=0
Read raw PCM data from stream.
static constexpr int32_t SAMPLERATE_NONE
Definition: AudioDecoder.h:27
static constexpr int32_t SAMPLES_NONE
Definition: AudioDecoder.h:29
static constexpr int32_t BITSPERSAMPLES_NONE
Definition: AudioDecoder.h:28
virtual void close()=0
Closes the audio file.
Byte buffer class.
Definition: ByteBuffer.h:24