54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
|
|
// This file is part of the "Nazara Engine - Audio module"
|
|
// For conditions of distribution and use, see copyright notice in Export.hpp
|
|
|
|
|
|
namespace Nz
|
|
{
|
|
/*!
|
|
* \brief Gets the duration of the sound buffer
|
|
* \return Duration of the sound buffer in milliseconds
|
|
*/
|
|
inline Time SoundBuffer::GetDuration() const
|
|
{
|
|
return m_duration;
|
|
}
|
|
|
|
/*!
|
|
* \brief Gets the format of the sound buffer
|
|
* \return Enumeration of type AudioFormat (mono, stereo, ...)
|
|
*/
|
|
inline AudioFormat SoundBuffer::GetFormat() const
|
|
{
|
|
return m_format;
|
|
}
|
|
|
|
/*!
|
|
* \brief Gets the internal raw samples
|
|
* \return Pointer to raw data
|
|
*/
|
|
inline const Int16* SoundBuffer::GetSamples() const
|
|
{
|
|
return m_samples.get();
|
|
}
|
|
|
|
/*!
|
|
* \brief Gets the number of samples in the sound buffer
|
|
* \return Count of samples (number of seconds * sample rate * channel count)
|
|
*/
|
|
inline UInt64 SoundBuffer::GetSampleCount() const
|
|
{
|
|
return m_sampleCount;
|
|
}
|
|
|
|
/*!
|
|
* \brief Gets the rates of sample in the sound buffer
|
|
* \return Rate of sample in Hertz (Hz)
|
|
*/
|
|
inline UInt32 SoundBuffer::GetSampleRate() const
|
|
{
|
|
return m_sampleRate;
|
|
}
|
|
}
|
|
|