diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-13 10:29:27 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-02-13 10:29:27 +0100 |
commit | 28976bf276b27c06abdea22472dd60e48103a6e1 (patch) | |
tree | c39468b92cf727974a59056ba6d4bff4f810d7eb | |
parent | 20d5179ae4cbea835ca796e32ed8aa36ffe26e3d (diff) | |
download | vdr-28976bf276b27c06abdea22472dd60e48103a6e1.tar.gz vdr-28976bf276b27c06abdea22472dd60e48103a6e1.tar.bz2 |
Added a missing 'resultSkipped = 0' to cRemux::Clear()
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | remux.c | 3 |
3 files changed, 5 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a1f8b1f7..d35421a9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1145,6 +1145,7 @@ Marco Schlüßler <marco@lordzodiac.de> for removing the "Cleared/PlayPes(NULL, 0)" handling from cTransfer::Action(), since this is now done when attaching the player to the device for adding DeviceClrAvailableTracks() and DeviceSetCurrentAudioTrack() to cPlayer + for reporting a missing 'resultSkipped = 0' in cRemux::Clear() Jürgen Schmitz <j.schmitz@web.de> for reporting a bug in displaying the current channel when switching via the SVDRP @@ -3408,3 +3408,5 @@ Video Disk Recorder Revision History Dolby Digital compatibility mode". - The 'plugins-clean' target of the Makefile now only deletes the actual plugin library files from this version of VDR (suggested by Andreas Brachold). +- Added a missing 'resultSkipped = 0' to cRemux::Clear() (thanks to Marco Schlüßler + for reporting this one). @@ -11,7 +11,7 @@ * The cDolbyRepacker code was originally written by Reinhard Nissl <rnissl@gmx.de>, * and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.de. * - * $Id: remux.c 1.29 2005/02/12 10:57:50 kls Exp $ + * $Id: remux.c 1.30 2005/02/13 10:23:10 kls Exp $ */ #include "remux.h" @@ -1009,6 +1009,7 @@ void cRemux::Clear(void) resultBuffer->Clear(); synced = false; skipped = 0; + resultSkipped = 0; } void cRemux::SetBrokenLink(uchar *Data, int Length) |