mpriscontrolplugin-win: add nullptr check for autoRepeatMode and isShuffleActive
This commit is contained in:
parent
3ffe96a826
commit
d71af0134e
1 changed files with 24 additions and 18 deletions
|
@ -86,6 +86,19 @@ void MprisControlPlugin::sendPlaybackInfo(std::variant<NetworkPacket, QString> c
|
|||
auto playbackInfo = player.GetPlaybackInfo();
|
||||
auto playbackControls = playbackInfo.Controls();
|
||||
|
||||
np.set(QStringLiteral("isPlaying"), playbackInfo.PlaybackStatus() == GlobalSystemMediaTransportControlsSessionPlaybackStatus::Playing);
|
||||
np.set(QStringLiteral("canPause"), playbackControls.IsPauseEnabled());
|
||||
np.set(QStringLiteral("canPlay"), playbackControls.IsPlayEnabled());
|
||||
np.set(QStringLiteral("canGoNext"), playbackControls.IsNextEnabled());
|
||||
np.set(QStringLiteral("canGoPrevious"), playbackControls.IsPreviousEnabled());
|
||||
np.set(QStringLiteral("canSeek"), playbackControls.IsPlaybackPositionEnabled());
|
||||
|
||||
if (playbackInfo.IsShuffleActive()) {
|
||||
const bool shuffleStatus = playbackInfo.IsShuffleActive().Value();
|
||||
np.set(QStringLiteral("shuffle"), shuffleStatus);
|
||||
}
|
||||
|
||||
if (playbackInfo.AutoRepeatMode()) {
|
||||
QString loopStatus;
|
||||
switch(playbackInfo.AutoRepeatMode().Value()) {
|
||||
case Windows::Media::MediaPlaybackAutoRepeatMode::List: {
|
||||
|
@ -101,15 +114,8 @@ void MprisControlPlugin::sendPlaybackInfo(std::variant<NetworkPacket, QString> c
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
np.set(QStringLiteral("isPlaying"), playbackInfo.PlaybackStatus() == GlobalSystemMediaTransportControlsSessionPlaybackStatus::Playing);
|
||||
np.set(QStringLiteral("canPause"), playbackControls.IsPauseEnabled());
|
||||
np.set(QStringLiteral("canPlay"), playbackControls.IsPlayEnabled());
|
||||
np.set(QStringLiteral("canGoNext"), playbackControls.IsNextEnabled());
|
||||
np.set(QStringLiteral("canGoPrevious"), playbackControls.IsPreviousEnabled());
|
||||
np.set(QStringLiteral("canSeek"), playbackControls.IsPlaybackPositionEnabled());
|
||||
np.set(QStringLiteral("shuffle"), playbackInfo.IsShuffleActive().Value());
|
||||
np.set(QStringLiteral("loopStatus"), loopStatus);
|
||||
}
|
||||
|
||||
sendTimelineProperties(np, player);
|
||||
|
||||
|
|
Loading…
Reference in a new issue