From da031320098198efb95da62b154fa0d0ac302e00 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Wed, 20 Dec 2017 10:55:33 +0100 Subject: [PATCH] - movieplayer: try to fix lua-playlist playback; ... there seems an issue in libstb-hal when a background-picture is displayed before video playback is started. Signed-off-by: Thilo Graf --- src/gui/movieplayer.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index ddfe69690..683b4594b 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -1304,13 +1304,8 @@ bool CMoviePlayerGui::PlayFileStart(void) pthread_create(&thrStartHint, NULL, CMoviePlayerGui::ShowStartHint, this); } - if (filefilter_audio.matchFilter(file_name)) - { + if (is_audio_playing) frameBuffer->showFrame("mp3.jpg"); - is_audio_playing = true; - } - else - is_audio_playing = false; bool res = playback->Start((char *) file_name.c_str(), vpid, vtype, currentapid, currentac3, duration);