123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- * 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 OUTPUT_SETTINGS_H
- #define OUTPUT_SETTINGS_H
- #include "lmms_basics.h"
- class OutputSettings
- {
- public:
- enum BitDepth
- {
- Depth_16Bit,
- Depth_24Bit,
- Depth_32Bit,
- NumDepths
- };
- enum StereoMode
- {
- StereoMode_Stereo,
- StereoMode_JointStereo,
- StereoMode_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;
- };
- #endif
|