aboutsummaryrefslogtreecommitdiffstats
path: root/src/oma.cpp
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2024-12-24 22:59:03 +0100
committerDaniil Cherednik <dan.cherednik@gmail.com>2024-12-24 22:59:03 +0100
commitbddbeb98b3db8d435de6b2d10269640121475538 (patch)
tree1a791f5dd49b94ead503b9b77c6b9277f2701a89 /src/oma.cpp
parentc73a0e24a0d5c510a65efbe5c2fbc7fd39a3c003 (diff)
parent74d6e04c21bddd435bd74c34dbe027b883772a76 (diff)
downloadatracdenc-bddbeb98b3db8d435de6b2d10269640121475538.tar.gz
Merge branch 'master' into at3plus-dev
Diffstat (limited to 'src/oma.cpp')
-rw-r--r--src/oma.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/oma.cpp b/src/oma.cpp
index 22f9388..7ef06c1 100644
--- a/src/oma.cpp
+++ b/src/oma.cpp
@@ -24,7 +24,7 @@ using std::string;
using std::vector;
using std::unique_ptr;
-TOma::TOma(const string& filename, const string&, uint8_t numChannel,
+TOma::TOma(const string& filename, const string&, size_t numChannel,
uint32_t /*numFrames*/, int cid, uint32_t framesize, bool jointStereo) {
oma_info_t info;
info.codec = cid;
@@ -54,6 +54,6 @@ string TOma::GetName() const {
return {};
}
-uint8_t TOma::GetChannelNum() const {
+size_t TOma::GetChannelNum() const {
return 2; //for ATRAC3
}