Improvments to gstreamer backend and settings +++
- Fixed bug not setting environment for gstreamer before initialization - Fixed windows directsound device - Fixed crash on failure to create gstreamer element - Fixed crash when switching backend - Don't stop playback if equalizer or replay gain fails in gstreamer - Improvments to backend settings - Fixed backend settings to work for windows - Fixed replay gain settings not working - Fixed right click menu for album showing in statusview even when no song was playing - Removed redundant code
This commit is contained in:
@@ -116,9 +116,9 @@ void PulseDeviceFinder::GetSinkInfoCallback(pa_context *c, const pa_sink_info *i
|
||||
|
||||
if (info) {
|
||||
Device dev;
|
||||
dev.device_property_value = QString::fromUtf8(info->name);
|
||||
dev.description = QString::fromUtf8(info->description);
|
||||
dev.iconname = QString::fromUtf8(pa_proplist_gets(info->proplist, "device.icon_name"));
|
||||
dev.value = QString::fromUtf8(info->name);
|
||||
dev.iconname = QString::fromUtf8(pa_proplist_gets(info->proplist, "device.iconname"));
|
||||
|
||||
state->devices.append(dev);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user