2018-02-27 18:06:05 +01:00
|
|
|
/*
|
|
|
|
* Strawberry Music Player
|
|
|
|
* This file was part of Clementine.
|
|
|
|
* Copyright 2010, David Sansome <me@davidsansome.com>
|
|
|
|
*
|
|
|
|
* Strawberry 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
2018-08-09 18:39:44 +02:00
|
|
|
*
|
2018-02-27 18:06:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-05-01 00:41:33 +02:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QString>
|
|
|
|
#include <QSlider>
|
|
|
|
#include <QSettings>
|
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
#include "transcoderoptionsinterface.h"
|
2019-01-06 14:34:50 +01:00
|
|
|
#include "transcoderoptionsasf.h"
|
|
|
|
#include "ui_transcoderoptionsasf.h"
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
constexpr char kSettingsGroup[] = "Transcoder/ffenc_wmav2";
|
|
|
|
}
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2021-07-11 07:40:57 +02:00
|
|
|
TranscoderOptionsASF::TranscoderOptionsASF(QWidget *parent) : TranscoderOptionsInterface(parent), ui_(new Ui_TranscoderOptionsASF) {
|
2018-02-27 18:06:05 +01:00
|
|
|
ui_->setupUi(this);
|
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
TranscoderOptionsASF::~TranscoderOptionsASF() {
|
2018-02-27 18:06:05 +01:00
|
|
|
delete ui_;
|
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
void TranscoderOptionsASF::Load() {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
Settings s;
|
|
|
|
s.beginGroup(QLatin1String(kSettingsGroup) + settings_postfix_);
|
2019-01-06 14:34:50 +01:00
|
|
|
ui_->bitrate_slider->setValue(s.value("bitrate", 320000).toInt() / 1000);
|
2020-05-25 23:56:54 +02:00
|
|
|
s.endGroup();
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-01-06 14:34:50 +01:00
|
|
|
void TranscoderOptionsASF::Save() {
|
2018-02-27 18:06:05 +01:00
|
|
|
|
2024-04-11 02:56:01 +02:00
|
|
|
Settings s;
|
|
|
|
s.beginGroup(QLatin1String(kSettingsGroup) + settings_postfix_);
|
2018-02-27 18:06:05 +01:00
|
|
|
s.setValue("bitrate", ui_->bitrate_slider->value() * 1000);
|
2020-05-25 23:56:54 +02:00
|
|
|
s.endGroup();
|
2018-02-27 18:06:05 +01:00
|
|
|
|
|
|
|
}
|