diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-11-18 18:00:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2007-11-18 18:00:00 +0100 |
commit | 29b2d48bb53df75f1cb978e72bc709a6658d6e5c (patch) | |
tree | 8b5b7527e98c59d2446ba5b2c6365a1d484fe988 /device.c | |
parent | 182cd78af06cee95594307b792b8951153c4888e (diff) | |
download | vdr-patch-lnbsharing-29b2d48bb53df75f1cb978e72bc709a6658d6e5c.tar.gz vdr-patch-lnbsharing-29b2d48bb53df75f1cb978e72bc709a6658d6e5c.tar.bz2 |
Version 1.5.12vdr-1.5.12
- Fixed assembling PS1 packets in cTS2PES::instant_repack() (thanks to Reinhard
Nissl).
- Updated the Russian OSD texts (thanks to Oleg Roitburd).
- Fixed handling small PES packets that caused subtitles to be displayed late
in live mode (based on a patch from Reinhard Nissl).
- Fixed stopping live subtitles when a player is attached to the device.
- Fixed suddenly stopping subtitles in live mode.
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 1.147 2007/11/03 13:30:09 kls Exp $ + * $Id: device.c 1.148 2007/11/17 15:39:28 kls Exp $ */ #include "device.h" @@ -1148,6 +1148,8 @@ bool cDevice::AttachPlayer(cPlayer *Player) if (CanReplay()) { if (player) Detach(player); + DELETENULL(liveSubtitle); + DELETENULL(dvbSubtitleConverter); pesAssembler->Reset(); player = Player; if (!Transferring()) |