From 413983a66635a1cafb359599e88c1d120d5626dc Mon Sep 17 00:00:00 2001 From: Johns Date: Sun, 1 Apr 2012 17:04:16 +0200 Subject: [PATCH] Calling TrickSpeed without decoder can happen. --- softhddev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/softhddev.c b/softhddev.c index 3dec80f..9d7a49e 100644 --- a/softhddev.c +++ b/softhddev.c @@ -1905,7 +1905,8 @@ void TrickSpeed(int speed) if (MyHwDecoder) { VideoSetTrickSpeed(MyHwDecoder, speed); } else { - Error(_("softhddev: %s called without hw decoder\n"), __FUNCTION__); + // can happen, during startup + Debug(3, "softhddev: %s called without hw decoder\n", __FUNCTION__); } StreamFreezed = 0; }