103 lines
2.9 KiB
C++
103 lines
2.9 KiB
C++
/*
|
|
* Strawberry Music Player
|
|
* Copyright 2018, Jonas Kvinge <jonas@jkvinge.net>
|
|
*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gst/gst.h>
|
|
#include <gst/pbutils/pbutils.h>
|
|
|
|
#include <QtGlobal>
|
|
#include <QObject>
|
|
#include <QCoreApplication>
|
|
#include <QStandardPaths>
|
|
#include <QtConcurrentRun>
|
|
#include <QFuture>
|
|
#include <QString>
|
|
#include <QDir>
|
|
|
|
#include "core/utilities.h"
|
|
|
|
#ifdef HAVE_MOODBAR
|
|
# include "ext/gstmoodbar/gstmoodbarplugin.h"
|
|
#endif
|
|
|
|
#include "gststartup.h"
|
|
|
|
GstStartup::GstStartup(QObject *parent) : QObject(parent) {
|
|
initialising_ = QtConcurrent::run(this, &GstStartup::InitialiseGStreamer);
|
|
}
|
|
|
|
GstStartup::~GstStartup() {
|
|
//gst_deinit();
|
|
}
|
|
|
|
void GstStartup::InitialiseGStreamer() {
|
|
|
|
SetEnvironment();
|
|
|
|
gst_init(nullptr, nullptr);
|
|
gst_pb_utils_init();
|
|
|
|
#ifdef HAVE_MOODBAR
|
|
gstfastspectrum_register_static();
|
|
#endif
|
|
|
|
}
|
|
|
|
void GstStartup::SetEnvironment() {
|
|
|
|
QString scanner_path;
|
|
QString plugin_path;
|
|
QString registry_filename;
|
|
|
|
// On Windows and macOS we bundle the gstreamer plugins with strawberry
|
|
#ifdef USE_BUNDLE
|
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACOS)
|
|
scanner_path = QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR + "/gst-plugin-scanner";
|
|
plugin_path = QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR + "/gstreamer";
|
|
#elif defined(Q_OS_WIN32)
|
|
plugin_path = QDir::toNativeSeparators(QCoreApplication::applicationDirPath() + "/gstreamer-plugins");
|
|
#endif
|
|
#endif
|
|
|
|
#if defined(Q_OS_WIN32) || defined(Q_OS_MACOS)
|
|
registry_filename = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation) + QString("/gst-registry-%1-bin").arg(QCoreApplication::applicationVersion());
|
|
#endif
|
|
|
|
if (!scanner_path.isEmpty()) Utilities::SetEnv("GST_PLUGIN_SCANNER", scanner_path);
|
|
|
|
if (!plugin_path.isEmpty()) {
|
|
Utilities::SetEnv("GST_PLUGIN_PATH", plugin_path);
|
|
// Never load plugins from anywhere else.
|
|
Utilities::SetEnv("GST_PLUGIN_SYSTEM_PATH", plugin_path);
|
|
}
|
|
|
|
if (!registry_filename.isEmpty()) {
|
|
Utilities::SetEnv("GST_REGISTRY", registry_filename);
|
|
}
|
|
|
|
#if defined(Q_OS_MACOS) && defined(USE_BUNDLE)
|
|
Utilities::SetEnv("GIO_EXTRA_MODULES", QCoreApplication::applicationDirPath() + "/" + USE_BUNDLE_DIR + "/gio-modules");
|
|
#endif
|
|
|
|
Utilities::SetEnv("PULSE_PROP_media.role", "music");
|
|
|
|
}
|
|
|