From 73b4cecacb970911bbbf58a6a20668581a539db7 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 18 Apr 2009 09:41:00 +0200 Subject: [PATCH] No longer resetting the patPmtParser in cDevice::PlayTs() (cont'd) --- device.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/device.c b/device.c index fa6c8aeb..61216207 100644 --- a/device.c +++ b/device.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 2.15 2009/04/13 12:53:09 kls Exp $ + * $Id: device.c 2.16 2009/04/18 09:41:00 kls Exp $ */ #include "device.h" @@ -1075,6 +1075,7 @@ bool cDevice::AttachPlayer(cPlayer *Player) Detach(player); DELETENULL(liveSubtitle); DELETENULL(dvbSubtitleConverter); + patPmtParser.Reset(); player = Player; if (!Transferring()) ClrAvailableTracks(false, true); @@ -1099,6 +1100,7 @@ void cDevice::Detach(cPlayer *Player) SetPlayMode(pmNone); SetVideoDisplayFormat(eVideoDisplayFormat(Setup.VideoDisplayFormat)); PlayTs(NULL, 0); + patPmtParser.Reset(); Audios.ClearAudio(); isPlayingVideo = false; }