Origin commit data
------------------
Branch: master
Commit: eafc697216
Author: TangoCash <eric@loxat.de>
Date: 2018-10-05 (Fri, 05 Oct 2018)


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

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2018-10-05 19:25:02 +02:00
7 changed files with 182 additions and 119 deletions

View File

@@ -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
{
@@ -578,7 +579,7 @@ static int PlaybackFastBackward(Context_t *context, int *speed)
context->playback->BackWard = 0;
context->playback->SlowMotion = 0;
context->playback->Speed = 0;
context->output->Command(context, OUTPUT_AUDIOMUTE, "0");
//context->output->Command(context, OUTPUT_AUDIOMUTE, "0");
}
else
{
@@ -589,7 +590,7 @@ static int PlaybackFastBackward(Context_t *context, int *speed)
context->playback->SlowMotion = 0;
context->playback->Speed = *speed;
context->playback->isSeeking = 1;
context->output->Command(context, OUTPUT_AUDIOMUTE, "1");
//context->output->Command(context, OUTPUT_AUDIOMUTE, "1");
playback_printf(1, "Speed: %d, Backward: %d\n", context->playback->Speed, context->playback->BackWard);
}