diff options
author | Daniil Cheredni <dan.cherednik@gmail.com> | 2024-10-21 21:53:55 +0200 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2024-11-01 18:21:42 +0100 |
commit | d459470e2d8c1cdfc633584b277505ef03565ab1 (patch) | |
tree | af7676bd204836e357c1034a8138ce7f472db47c /src/oma.h | |
parent | fe377370c1ae4691a65270123345f225e3159ed8 (diff) | |
download | atracdenc-d459470e2d8c1cdfc633584b277505ef03565ab1.tar.gz |
Do not use 8bit, 16bit types if do not realy need it.
Diffstat (limited to 'src/oma.h')
-rw-r--r-- | src/oma.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,10 +25,10 @@ class TOma : public ICompressedOutput { OMAFILE* File; public: - TOma(const std::string& filename, const std::string& title, uint8_t numChannel, + TOma(const std::string& filename, const std::string& title, size_t numChannel, uint32_t numFrames, int cid, uint32_t framesize, bool jointStereo); ~TOma(); void WriteFrame(std::vector<char> data) override; std::string GetName() const override; - uint8_t GetChannelNum() const override; + size_t GetChannelNum() const override; }; |