mirror of
https://github.com/LMMS/lmms.git
synced 2025-12-30 18:17:59 -05:00
122 lines
3.2 KiB
C++
122 lines
3.2 KiB
C++
/*
|
|
* OutputSettings.h - Stores the settings for file rendering
|
|
*
|
|
* Copyright (c) 2008-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
* Copyright (c) 2017 Michael Gregorius <michael.gregorius.git/at/arcor[dot]de>
|
|
*
|
|
* This file is part of LMMS - https://lmms.io
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef LMMS_OUTPUT_SETTINGS_H
|
|
#define LMMS_OUTPUT_SETTINGS_H
|
|
|
|
#include "lmms_basics.h"
|
|
|
|
namespace lmms
|
|
{
|
|
|
|
|
|
class OutputSettings
|
|
{
|
|
public:
|
|
enum class BitDepth
|
|
{
|
|
Depth16Bit,
|
|
Depth24Bit,
|
|
Depth32Bit
|
|
};
|
|
|
|
enum class StereoMode
|
|
{
|
|
Stereo,
|
|
JointStereo,
|
|
Mono
|
|
};
|
|
|
|
class BitRateSettings
|
|
{
|
|
public:
|
|
BitRateSettings(bitrate_t bitRate, bool isVariableBitRate) :
|
|
m_bitRate(bitRate),
|
|
m_isVariableBitRate(isVariableBitRate)
|
|
{}
|
|
|
|
bool isVariableBitRate() const { return m_isVariableBitRate; }
|
|
void setVariableBitrate(bool variableBitRate = true) { m_isVariableBitRate = variableBitRate; }
|
|
|
|
bitrate_t getBitRate() const { return m_bitRate; }
|
|
void setBitRate(bitrate_t bitRate) { m_bitRate = bitRate; }
|
|
|
|
private:
|
|
bitrate_t m_bitRate;
|
|
bool m_isVariableBitRate;
|
|
};
|
|
|
|
public:
|
|
OutputSettings( sample_rate_t sampleRate,
|
|
BitRateSettings const & bitRateSettings,
|
|
BitDepth bitDepth,
|
|
StereoMode stereoMode ) :
|
|
m_sampleRate(sampleRate),
|
|
m_bitRateSettings(bitRateSettings),
|
|
m_bitDepth(bitDepth),
|
|
m_stereoMode(stereoMode),
|
|
m_compressionLevel(0.625) // 5/8
|
|
{
|
|
}
|
|
|
|
OutputSettings( sample_rate_t sampleRate,
|
|
BitRateSettings const & bitRateSettings,
|
|
BitDepth bitDepth ) :
|
|
OutputSettings(sampleRate, bitRateSettings, bitDepth, StereoMode::Stereo )
|
|
{
|
|
}
|
|
|
|
sample_rate_t getSampleRate() const { return m_sampleRate; }
|
|
void setSampleRate(sample_rate_t sampleRate) { m_sampleRate = sampleRate; }
|
|
|
|
BitRateSettings const & getBitRateSettings() const { return m_bitRateSettings; }
|
|
void setBitRateSettings(BitRateSettings const & bitRateSettings) { m_bitRateSettings = bitRateSettings; }
|
|
|
|
BitDepth getBitDepth() const { return m_bitDepth; }
|
|
void setBitDepth(BitDepth bitDepth) { m_bitDepth = bitDepth; }
|
|
|
|
StereoMode getStereoMode() const { return m_stereoMode; }
|
|
void setStereoMode(StereoMode stereoMode) { m_stereoMode = stereoMode; }
|
|
|
|
|
|
double getCompressionLevel() const{ return m_compressionLevel; }
|
|
void setCompressionLevel(double level){
|
|
// legal range is 0.0 to 1.0.
|
|
m_compressionLevel = level;
|
|
}
|
|
|
|
private:
|
|
sample_rate_t m_sampleRate;
|
|
BitRateSettings m_bitRateSettings;
|
|
BitDepth m_bitDepth;
|
|
StereoMode m_stereoMode;
|
|
double m_compressionLevel;
|
|
};
|
|
|
|
|
|
} // namespace lmms
|
|
|
|
#endif // LMMS_OUTPUT_SETTINGS_H
|