diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2024-11-02 22:21:52 +0100 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2024-11-02 22:21:52 +0100 |
commit | bf225b16dd73d19281970cfc6be76311f0fbf3a6 (patch) | |
tree | 6b8ba99623405dbdd7b37d4062272cfd1e7ccb21 /src/wav.h | |
parent | 57ba306db046601b96b5a1943e63574a37c5e96c (diff) | |
parent | d459470e2d8c1cdfc633584b277505ef03565ab1 (diff) | |
download | atracdenc-bf225b16dd73d19281970cfc6be76311f0fbf3a6.tar.gz |
Merge branch 'master' into new_psy
Diffstat (limited to 'src/wav.h')
-rw-r--r-- | src/wav.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -76,10 +76,10 @@ public: E_WRITE }; TWav(const std::string& filename); // reading - TWav(const std::string& filename, uint8_t channels, uint16_t sampleRate); //writing + TWav(const std::string& filename, size_t channels, size_t sampleRate); //writing ~TWav(); - uint8_t GetChannelNum() const; - uint16_t GetSampleRate() const; + size_t GetChannelNum() const; + size_t GetSampleRate() const; uint64_t GetTotalSamples() const; template<class T> |