summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY3
-rw-r--r--remux.c3
-rw-r--r--remux.h3
4 files changed, 5 insertions, 5 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index a63644fa..1d808e65 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -2130,6 +2130,7 @@ Christoph Haubrich <christoph1.haubrich@arcor.de>
check to it
for changing cBitmap::DrawText() to always draw the background unless ColorBg
is clrTransparent
+ for reporting unused 'synced' member in cTsToPes
Pekka Mauno <pekka.mauno@iki.fi>
for fixing cSchedule::GetFollowingEvent() in case there is currently no present
diff --git a/HISTORY b/HISTORY
index 7c1e40a2..fb3e9999 100644
--- a/HISTORY
+++ b/HISTORY
@@ -6075,7 +6075,7 @@ Video Disk Recorder Revision History
- cFrameDetector::Analyze() now syncs on the TS packet sync bytes (thanks to
Oliver Endriss for reporting broken index generation after a buffer overflow).
-2009-05-15: Version 1.7.8
+2009-05-17: Version 1.7.8
- Fixed a typo in aspect ratio 2.21:1 (reported by Reinhard Nissl).
- The name of the function cDevice::GetVideoSize() wasn't very well chosen
@@ -6098,3 +6098,4 @@ Video Disk Recorder Revision History
- Added missing update of lastOsdSizeUpdate.
- EIT events are now only processed if a plausible system time is available, to
avoid wrong handling of PDC descriptors (thanks to Tobias Bratfisch).
+- Removed unused 'synced' member from cTsToPes (reported by Christoph Haubrich).
diff --git a/remux.c b/remux.c
index a873e2f6..043b8bbc 100644
--- a/remux.c
+++ b/remux.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remux.c 2.21 2009/05/10 14:30:00 kls Exp $
+ * $Id: remux.c 2.22 2009/05/17 09:46:10 kls Exp $
*/
#include "remux.h"
@@ -591,7 +591,6 @@ cTsToPes::cTsToPes(void)
{
data = NULL;
size = length = offset = 0;
- synced = false;
}
cTsToPes::~cTsToPes()
diff --git a/remux.h b/remux.h
index 3ee9c9e9..a1d26a8e 100644
--- a/remux.h
+++ b/remux.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remux.h 2.11 2009/05/10 13:43:52 kls Exp $
+ * $Id: remux.h 2.12 2009/05/17 09:45:53 kls Exp $
*/
#ifndef __REMUX_H
@@ -239,7 +239,6 @@ private:
int size;
int length;
int offset;
- bool synced;
public:
cTsToPes(void);
~cTsToPes();