aboutsummaryrefslogtreecommitdiffstats
path: root/src/oma.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2020-01-12 22:20:51 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2020-01-12 22:20:51 +0300
commit83d5e5d3652608478b5f18212bd3fec2338ae954 (patch)
treef8565d3d74bc68ae1b7c0710ceeb1a2bb57303e5 /src/oma.h
parent5ae5ed6b6c6f0a49372288e309244ccd0b54060f (diff)
downloadatracdenc-83d5e5d3652608478b5f18212bd3fec2338ae954.tar.gz
[atrac3] Initial joint stereo mode support.
Diffstat (limited to 'src/oma.h')
-rw-r--r--src/oma.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/oma.h b/src/oma.h
index 796d79c..396464a 100644
--- a/src/oma.h
+++ b/src/oma.h
@@ -19,13 +19,14 @@
#pragma once
#include "compressed_io.h"
+
#include "oma/liboma/include/oma.h"
class TOma : public ICompressedIO {
OMAFILE* File;
public:
- TOma(const std::string& filename, const std::string& title, uint8_t numChannel, uint32_t numFrames, int cid,
- uint32_t framesize);
+ TOma(const std::string& filename, const std::string& title, uint8_t numChannel,
+ uint32_t numFrames, int cid, uint32_t framesize, bool jointStereo);
~TOma();
std::unique_ptr<TFrame> ReadFrame() override;
void WriteFrame(std::vector<char> data) override;