|
CeresEngine 0.2.0
A game development framework
|
A class collecting audio metadata information. More...
#include <CeresEngine/Audio/AudioMetadata.hpp>
Public Types | |
| using | Channels = unsigned int |
| A type defining the channel count representation. | |
| using | SampleRate = unsigned int |
| A type defining the sample rate representation. | |
| using | SampleCount = unsigned int |
| A type defining the number of counts representation. | |
Public Member Functions | |
| AudioMetadata (Channels channels, SampleRate sampleRate, SampleCount sampleCount) | |
| Creates a new audio metadata object. | |
Public Attributes | |
| Channels | channels |
| The number of channels in the audio. | |
| SampleRate | sampleRate |
| The audio clip sample rate in Hz. | |
| SampleCount | sampleCount |
| The number of samples in the audio. | |
A class collecting audio metadata information.
A type defining the channel count representation.
A type defining the number of counts representation.
A type defining the sample rate representation.
| CeresEngine::AudioMetadata::AudioMetadata | ( | Channels | channels, |
| SampleRate | sampleRate, | ||
| SampleCount | sampleCount | ||
| ) |
Creates a new audio metadata object.
| channels | The number of audio channels |
| sampleRate | The audio sample rate |
| sampleCount | The number of samples in the audio |
| Channels CeresEngine::AudioMetadata::channels |
The number of channels in the audio.
| SampleCount CeresEngine::AudioMetadata::sampleCount |
The number of samples in the audio.
| SampleRate CeresEngine::AudioMetadata::sampleRate |
The audio clip sample rate in Hz.