aboutsummaryrefslogtreecommitdiffstats
path: root/src/atrac/atrac3.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2020-01-20 00:24:21 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2020-01-20 00:24:21 +0300
commite16e9c60a18e4b914f5cb16463ed781f09808a25 (patch)
tree23a22c26ff5b20697f9c62b6286258bac04fe6f7 /src/atrac/atrac3.h
parent83d5e5d3652608478b5f18212bd3fec2338ae954 (diff)
downloadatracdenc-e16e9c60a18e4b914f5cb16463ed781f09808a25.tar.gz
[atrac3] 0.83/0.16 M/S bitrate separation for joint stereo coding
support of encoding mono source for joint stereo mode
Diffstat (limited to 'src/atrac/atrac3.h')
-rw-r--r--src/atrac/atrac3.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/atrac/atrac3.h b/src/atrac/atrac3.h
index eb97808..7834956 100644
--- a/src/atrac/atrac3.h
+++ b/src/atrac/atrac3.h
@@ -212,16 +212,13 @@ public:
};
static const TContainerParams* GetContainerParamsForBitrate(uint32_t bitrate);
- class SubbandInfo {
- public:
+ struct SubbandInfo {
static const uint32_t MaxGainPointsNum = 8;
struct TGainPoint {
uint32_t Level;
uint32_t Location;
};
- private:
std::vector<std::vector<TGainPoint>> Info;
- public:
SubbandInfo()
{
Info.resize(4);