aboutsummaryrefslogtreecommitdiffstats
path: root/src/oma.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2024-11-02 22:21:52 +0100
committerDaniil Cherednik <dan.cherednik@gmail.com>2024-11-02 22:21:52 +0100
commitbf225b16dd73d19281970cfc6be76311f0fbf3a6 (patch)
tree6b8ba99623405dbdd7b37d4062272cfd1e7ccb21 /src/oma.h
parent57ba306db046601b96b5a1943e63574a37c5e96c (diff)
parentd459470e2d8c1cdfc633584b277505ef03565ab1 (diff)
downloadatracdenc-bf225b16dd73d19281970cfc6be76311f0fbf3a6.tar.gz
Merge branch 'master' into new_psy
Diffstat (limited to 'src/oma.h')
-rw-r--r--src/oma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/oma.h b/src/oma.h
index 62fa329..f150580 100644
--- a/src/oma.h
+++ b/src/oma.h
@@ -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;
};