2016-05-18 22:01:03 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "audio_core/sink_details.h"
|
|
|
|
|
|
|
|
#include "citra_qt/configure_audio.h"
|
|
|
|
#include "ui_configure_audio.h"
|
|
|
|
|
|
|
|
#include "core/settings.h"
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
ConfigureAudio::ConfigureAudio(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(std::make_unique<Ui::ConfigureAudio>()) {
|
2016-05-18 22:01:03 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
ui->output_sink_combo_box->clear();
|
|
|
|
ui->output_sink_combo_box->addItem("auto");
|
|
|
|
for (const auto& sink_detail : AudioCore::g_sink_details) {
|
|
|
|
ui->output_sink_combo_box->addItem(sink_detail.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->setConfiguration();
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigureAudio::~ConfigureAudio() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureAudio::setConfiguration() {
|
2016-05-20 18:37:34 +00:00
|
|
|
int new_sink_index = 0;
|
2016-05-18 22:01:03 +00:00
|
|
|
for (int index = 0; index < ui->output_sink_combo_box->count(); index++) {
|
|
|
|
if (ui->output_sink_combo_box->itemText(index).toStdString() == Settings::values.sink_id) {
|
2016-05-20 18:37:34 +00:00
|
|
|
new_sink_index = index;
|
2016-05-18 22:01:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-05-20 18:37:34 +00:00
|
|
|
ui->output_sink_combo_box->setCurrentIndex(new_sink_index);
|
2016-08-31 15:59:37 +00:00
|
|
|
|
|
|
|
ui->toggle_audio_stretching->setChecked(Settings::values.enable_audio_stretching);
|
2016-05-18 22:01:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureAudio::applyConfiguration() {
|
2016-09-18 00:38:01 +00:00
|
|
|
Settings::values.sink_id =
|
|
|
|
ui->output_sink_combo_box->itemText(ui->output_sink_combo_box->currentIndex())
|
|
|
|
.toStdString();
|
2016-08-31 15:59:37 +00:00
|
|
|
Settings::values.enable_audio_stretching = ui->toggle_audio_stretching->isChecked();
|
2016-05-18 22:01:03 +00:00
|
|
|
Settings::Apply();
|
|
|
|
}
|