d956a5d162
* added sid plugin * added ReplayGain scanner * added gnome hotkey plugin * added DirectSound plugin * added track grouping view * added sorting by group * added quick search to the playlist browser * added multiple tracks support to the details dialog * added context menu to the plugin settings page * added lazy plugin loading * added feature to disable transport plugins * added data waiting condition for transport plugins * added floating point output for lossy decoders * added peak overflow support for lossy decoders * added support for id3v2-based ReplayGain tags * added clipping prevention using ReplayGain information * added delayed initialization in the wildmidi plugin * added volume control hotkeys * added 'mute' global hotkey * added '--toggle-mute' command line option * added '--show-mw' command line option * added ogg opus preset to the converter plugin * added scrobbler 2.0 api for libre.fm * added context menu in the window of the analyzer plugin * added window flags access from visual plugin api * added atomic playlist saving operation * added created playlist auto-selection * added feature to not clear previous playlist when opening new one * added mplayer command line options setting OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/qmmp?expand=0&rev=54
14 lines
590 B
Diff
14 lines
590 B
Diff
Index: src/qmmp/output.cpp
|
|
===================================================================
|
|
--- src/qmmp/output.cpp.orig
|
|
+++ src/qmmp/output.cpp
|
|
@@ -140,7 +140,7 @@ OutputFactory *Output::currentFactory()
|
|
loadPlugins();
|
|
QSettings settings (Qmmp::configFile(), QSettings::IniFormat);
|
|
#ifdef Q_OS_LINUX
|
|
- QString name = settings.value("Output/current_plugin", "alsa").toString();
|
|
+ QString name = settings.value("Output/current_plugin", "pulse").toString();
|
|
#elif defined Q_WS_WIN
|
|
QString name = settings.value("Output/current_plugin", "waveout").toString();
|
|
#else
|