pcm/AudioFormat: use std::size_t
This commit is contained in:
parent
7d7fe756b3
commit
a224225e48
|
@ -26,7 +26,7 @@
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
template<size_t CAPACITY> class StringBuffer;
|
template<std::size_t CAPACITY> class StringBuffer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This structure describes the format of a raw PCM stream.
|
* This structure describes the format of a raw PCM stream.
|
||||||
|
@ -152,8 +152,8 @@ struct AudioFormat {
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename D>
|
template<typename D>
|
||||||
constexpr size_t TimeToSize(D t) const noexcept {
|
constexpr std::size_t TimeToSize(D t) const noexcept {
|
||||||
return size_t(size_t(TimeToFrames(t)) * GetFrameSize());
|
return std::size_t(std::size_t(TimeToFrames(t)) * GetFrameSize());
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename D>
|
template<typename D>
|
||||||
|
|
Loading…
Reference in New Issue