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:
parent
20d5179ae4
commit
28976bf276
@ -1145,6 +1145,7 @@ Marco Schl
|
||||
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
|
||||
|
2
HISTORY
2
HISTORY
@ -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).
|
||||
|
3
remux.c
3
remux.c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user