- movieplayer/record: stop playback of timeshift when zap to another channel

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-07-29 00:54:54 +02:00
committed by Thilo Graf
parent 351559f664
commit 530c3e1c1b
3 changed files with 13 additions and 2 deletions

View File

@@ -1253,6 +1253,16 @@ void CMoviePlayerGui::stopPlayBack(void)
printf("%s: stopped\n", __func__);
}
void CMoviePlayerGui::stopTimeshift(void)
{
if (timeshift && playback)
{
printf("%s: stopping timeshift...\n", __func__);
playback->RequestAbort();
timeshift = TSHIFT_MODE_OFF;
}
}
void CMoviePlayerGui::Pause(bool b)
{
if (b && (playstate == CMoviePlayerGui::PAUSE))