1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added a missing 'resultSkipped = 0' to cRemux::Clear()

This commit is contained in:
Klaus Schmidinger 2005-02-13 10:29:27 +01:00
parent 20d5179ae4
commit 28976bf276
3 changed files with 5 additions and 1 deletions

View File

@ -1145,6 +1145,7 @@ Marco Schl
for removing the "Cleared/PlayPes(NULL, 0)" handling from cTransfer::Action(), since for removing the "Cleared/PlayPes(NULL, 0)" handling from cTransfer::Action(), since
this is now done when attaching the player to the device this is now done when attaching the player to the device
for adding DeviceClrAvailableTracks() and DeviceSetCurrentAudioTrack() to cPlayer for adding DeviceClrAvailableTracks() and DeviceSetCurrentAudioTrack() to cPlayer
for reporting a missing 'resultSkipped = 0' in cRemux::Clear()
Jürgen Schmitz <j.schmitz@web.de> Jürgen Schmitz <j.schmitz@web.de>
for reporting a bug in displaying the current channel when switching via the SVDRP for reporting a bug in displaying the current channel when switching via the SVDRP

View File

@ -3408,3 +3408,5 @@ Video Disk Recorder Revision History
Dolby Digital compatibility mode". Dolby Digital compatibility mode".
- The 'plugins-clean' target of the Makefile now only deletes the actual plugin - The 'plugins-clean' target of the Makefile now only deletes the actual plugin
library files from this version of VDR (suggested by Andreas Brachold). 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).

View File

@ -11,7 +11,7 @@
* The cDolbyRepacker code was originally written by Reinhard Nissl <rnissl@gmx.de>, * The cDolbyRepacker code was originally written by Reinhard Nissl <rnissl@gmx.de>,
* and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.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" #include "remux.h"
@ -1009,6 +1009,7 @@ void cRemux::Clear(void)
resultBuffer->Clear(); resultBuffer->Clear();
synced = false; synced = false;
skipped = 0; skipped = 0;
resultSkipped = 0;
} }
void cRemux::SetBrokenLink(uchar *Data, int Length) void cRemux::SetBrokenLink(uchar *Data, int Length)