diff options
author | Johns <johns98@gmx.net> | 2012-04-01 17:04:16 +0200 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2012-04-01 17:04:16 +0200 |
commit | 413983a66635a1cafb359599e88c1d120d5626dc (patch) | |
tree | d4db51b9c1285449956f6d6fcec13a8c23badea3 /softhddev.c | |
parent | f86fa4edd7e493d4fc5ffc444d4f09c098a07a4c (diff) | |
download | vdr-plugin-softhddevice-413983a66635a1cafb359599e88c1d120d5626dc.tar.gz vdr-plugin-softhddevice-413983a66635a1cafb359599e88c1d120d5626dc.tar.bz2 |
Calling TrickSpeed without decoder can happen.
Diffstat (limited to 'softhddev.c')
-rw-r--r-- | softhddev.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |