diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | liboutput/stillimage.c | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,9 @@ VDR Plugin 'image' Revision History ----------------------------------- +2008-01-04 +- Clear device buffer, before start playback (need by PVR350) (suggest by Martin Dauskardt) + 2008-01-02 - Reimplement "Playback mode via 'DeviceStillPicture'" active if 'Send encoded frame several times' set to 'no' diff --git a/liboutput/stillimage.c b/liboutput/stillimage.c index 0dd7eff..10b5d5b 100644 --- a/liboutput/stillimage.c +++ b/liboutput/stillimage.c @@ -86,6 +86,7 @@ void cStillImage::Action(void) nFrameOff=0; if(bFreeze) { + player->DeviceClear(); player->DevicePlay(); bFreeze = false; } |