Commit bfd26192 authored by Max Kellermann's avatar Max Kellermann

AudioFormat: remove obsolete method GetTimeToSize()

parent 84de8884
...@@ -149,12 +149,6 @@ struct AudioFormat { ...@@ -149,12 +149,6 @@ struct AudioFormat {
*/ */
unsigned GetFrameSize() const; unsigned GetFrameSize() const;
/**
* Returns the floating point factor which converts a time
* span to a storage size in bytes.
*/
double GetTimeToSize() const;
template<typename D> template<typename D>
constexpr auto TimeToFrames(D t) const noexcept { constexpr auto TimeToFrames(D t) const noexcept {
using Period = typename D::period; using Period = typename D::period;
...@@ -236,12 +230,6 @@ AudioFormat::GetFrameSize() const ...@@ -236,12 +230,6 @@ AudioFormat::GetFrameSize() const
return GetSampleSize() * channels; return GetSampleSize() * channels;
} }
inline double
AudioFormat::GetTimeToSize() const
{
return sample_rate * GetFrameSize();
}
/** /**
* Renders the #AudioFormat object into a string, e.g. for printing * Renders the #AudioFormat object into a string, e.g. for printing
* it in a log file. * it in a log file.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment