Remove xine

This commit is contained in:
Jonas Kvinge
2020-07-16 00:59:46 +02:00
parent 1773283456
commit 07553476d4
28 changed files with 7 additions and 1476 deletions

View File

@@ -129,7 +129,6 @@ static const QMap<QString, IconProperties> iconmapper_ = {
{ "view-refresh", { {}} },
{ "library-music", { {"vinyl"}} },
{ "vlc", { {}} },
{ "xine", { {}} },
{ "zoom-in", { {}} },
{ "zoom-out", { {}, 0, 0 } }

View File

@@ -1058,7 +1058,7 @@ void MainWindow::ExitFinished() {
void MainWindow::EngineChanged(Engine::EngineType enginetype) {
ui_->action_equalizer->setEnabled(enginetype == Engine::EngineType::GStreamer || enginetype == Engine::EngineType::Xine);
ui_->action_equalizer->setEnabled(enginetype == Engine::EngineType::GStreamer);
#ifdef Q_OS_WIN
ui_->action_open_cd->setEnabled(false);
ui_->action_open_cd->setVisible(false);

View File

@@ -51,9 +51,6 @@
# include "engine/gstengine.h"
# include "engine/gststartup.h"
#endif
#ifdef HAVE_XINE
# include "engine/xineengine.h"
#endif
#ifdef HAVE_VLC
# include "engine/vlcengine.h"
#endif
@@ -125,12 +122,6 @@ Engine::EngineType Player::CreateEngine(Engine::EngineType enginetype) {
break;
}
#endif
#ifdef HAVE_XINE
case Engine::Xine:
use_enginetype=Engine::Xine;
engine_.reset(new XineEngine(app_->task_manager()));
break;
#endif
#ifdef HAVE_VLC
case Engine::VLC:
use_enginetype=Engine::VLC;