From c3d6ef0a005665d2dd2f228ce1d7cbed79071e52 Mon Sep 17 00:00:00 2001 From: redblue-pkt Date: Thu, 4 Oct 2018 00:45:42 +0200 Subject: [PATCH] fix fastforward Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/7f494e1a778847098e34bbe89a30db6536544d81 Author: redblue-pkt Date: 2018-10-04 (Thu, 04 Oct 2018) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- libeplayer3-arm/playback/playback.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libeplayer3-arm/playback/playback.c b/libeplayer3-arm/playback/playback.c index 96566e0..4ec98be 100644 --- a/libeplayer3-arm/playback/playback.c +++ b/libeplayer3-arm/playback/playback.c @@ -399,6 +399,7 @@ static int32_t PlaybackContinue(Context_t *context) if (context->playback->SlowMotion || context->playback->isForwarding || context->playback->BackWard) context->output->Command(context, OUTPUT_CLEAR, NULL); + context->output->Command(context, OUTPUT_PAUSE, NULL); context->output->Command(context, OUTPUT_CONTINUE, NULL); if (context->playback->BackWard) @@ -539,7 +540,7 @@ static int PlaybackFastForward(Context_t *context, int *speed) context->playback->Speed = *speed; playback_printf(20, "Speed: %d x {%d}\n", *speed, context->playback->Speed); context->output->Command(context, OUTPUT_FASTFORWARD, NULL); - context->output->Command(context, OUTPUT_CONTINUE, NULL); + //context->output->Command(context, OUTPUT_CONTINUE, NULL); } else {