From b41267f19ddb2bc6fbe8f38337f0fe7140d4f9ab Mon Sep 17 00:00:00 2001 From: redblue-pkt Date: Thu, 4 Oct 2018 00:26:23 +0200 Subject: [PATCH] fix segfault in backward Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/7381cf04bb6a90def7311c41cece3695e3da8bd0 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 --- .gitignore | 3 +++ libeplayer3-arm/playback/playback.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 303dfee..a92a185 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,6 @@ Makefile.in *.o *.Plo *.Po + +git-* +go_* diff --git a/libeplayer3-arm/playback/playback.c b/libeplayer3-arm/playback/playback.c index 257fb67..96566e0 100644 --- a/libeplayer3-arm/playback/playback.c +++ b/libeplayer3-arm/playback/playback.c @@ -578,7 +578,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 +589,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); }