Skip to content

Commit 576c6d9

Browse files
nxg07908TE-N-ElvenWang
nxg07908
authored andcommittedNov 20, 2024
MATTER-2796 nxp-media-app: it can't play music successfully after pause action. 100%
Determine in the paly function if the current state is paused. If it's paused it starts the music by starting the paused function again; if it's stopped, it runs with the original method. Change-Id: I2b25a04b16163fec01b311badc454c7e55f9964c Signed-off-by: nxg07908 <tommy.chen@nxp.com> Reviewed-on: http://androidsource.nxp.com/project/26388 Reviewed-by: Elven Wang <elven.wang@nxp.com>
1 parent fc71b7d commit 576c6d9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎examples/nxp-media-app/nxp-media-common/clusters/media-playback/MediaPlaybackManager.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,11 @@ void MediaPlaybackManager::HandlePlay(CommandResponseHelper<Commands::PlaybackRe
148148
CHECKRESULT(gMediaIPCHelper->Notify("c 1"));
149149
mCurrentState = gMediaIPCHelper->GetCurrentStatus();
150150

151-
CHECKRESULT(gMediaIPCHelper->Notify("p"));
151+
if (mCurrentState == chip::app::Clusters::MediaPlayback::PlaybackStateEnum::kPaused) {
152+
CHECKRESULT(gMediaIPCHelper->Notify("a"));
153+
}else {
154+
CHECKRESULT(gMediaIPCHelper->Notify("p"));
155+
}
152156

153157
Commands::PlaybackResponse::Type response;
154158
response.data = chip::MakeOptional(CharSpan::fromCharString("data response"));

0 commit comments

Comments
 (0)
Please sign in to comment.