diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-16 15:20:29 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-16 15:20:29 +0100 |
commit | d500f17d50cd237b5d4e2e871d69a4c700273279 (patch) | |
tree | 2a59a9fc065257d1d319cadaad5132ab7cae1354 | |
parent | 70ec0dfa1bb79224349171c0b4b3e00969bcbd8e (diff) | |
download | vdr-d500f17d50cd237b5d4e2e871d69a4c700273279.tar.gz vdr-d500f17d50cd237b5d4e2e871d69a4c700273279.tar.bz2 |
Added clearing the TS buffers in cDevice::Detach()
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | device.c | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index f65ffcc6..1d0aabcb 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1488,6 +1488,7 @@ Marco Schlüßler <marco@lordzodiac.de> to avoid unnecessary OSD access for changing cDvbDevice::GrabImage() to use V4L2 for adding a missing Detach() in cTransfer::Activate() + for adding clearing the TS buffers in cDevice::Detach() Jürgen Schmitz <j.schmitz@web.de> for reporting a bug in displaying the current channel when switching via the SVDRP @@ -5928,3 +5928,4 @@ Video Disk Recorder Revision History - Fixed returning complete PES packets in cTsToPes::GetPes() (thanks to Reinhard Nissl). - Added a missing Detach() in cTransfer::Activate() (thanks to Marco Schlüßler). +- Added clearing the TS buffers in cDevice::Detach() (thanks to Marco Schlüßler). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 2.5 2009/01/06 09:55:13 kls Exp $ + * $Id: device.c 2.6 2009/01/16 15:20:21 kls Exp $ */ #include "device.h" @@ -1098,6 +1098,7 @@ void cDevice::Detach(cPlayer *Player) dvbSubtitleConverter = NULL; SetPlayMode(pmNone); SetVideoDisplayFormat(eVideoDisplayFormat(Setup.VideoDisplayFormat)); + PlayTs(NULL, 0); Audios.ClearAudio(); } } |