fix fastforward

Origin commit data
------------------
Branch: master
Commit: 7f494e1a77
Author: redblue-pkt <redblue-pkt@orange.pl>
Date: 2018-10-04 (Thu, 04 Oct 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
redblue-pkt
2018-10-04 00:45:42 +02:00
parent 16ad24432a
commit c3d6ef0a00

View File

@@ -399,6 +399,7 @@ static int32_t PlaybackContinue(Context_t *context)
if (context->playback->SlowMotion || context->playback->isForwarding || context->playback->BackWard) if (context->playback->SlowMotion || context->playback->isForwarding || context->playback->BackWard)
context->output->Command(context, OUTPUT_CLEAR, NULL); context->output->Command(context, OUTPUT_CLEAR, NULL);
context->output->Command(context, OUTPUT_PAUSE, NULL);
context->output->Command(context, OUTPUT_CONTINUE, NULL); context->output->Command(context, OUTPUT_CONTINUE, NULL);
if (context->playback->BackWard) if (context->playback->BackWard)
@@ -539,7 +540,7 @@ static int PlaybackFastForward(Context_t *context, int *speed)
context->playback->Speed = *speed; context->playback->Speed = *speed;
playback_printf(20, "Speed: %d x {%d}\n", *speed, context->playback->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_FASTFORWARD, NULL);
context->output->Command(context, OUTPUT_CONTINUE, NULL); //context->output->Command(context, OUTPUT_CONTINUE, NULL);
} }
else else
{ {