Removed leftover 'needsBufferReserve' variable from cTransfer

This commit is contained in:
Klaus Schmidinger 2006-01-29 17:26:38 +01:00
parent 913814a500
commit e34ddc507d
5 changed files with 11 additions and 7 deletions

View File

@ -1292,6 +1292,7 @@ Marco Schl
for figuring out some obscure length bytes the the CA PMT Reply data of AlphaCrypt CAMs
for fixing handling OSD areas that have invalid sizes
for removing unused variables in skinclassic.c and skinsttng.c
for removing leftover 'needsBufferReserve' variable from cTransfer
Jürgen Schmitz <j.schmitz@web.de>
for reporting a bug in displaying the current channel when switching via the SVDRP

View File

@ -4270,3 +4270,8 @@ Video Disk Recorder Revision History
system, it is now tried again after 5 minutes (suggested by Helmut Auer).
- Separated the 'install' target into several individual targets; renamed the
'plugins-install' target to 'install-plugins' (thanks to Helmut Auer).
2006-01-29: Version 1.3.42
- Removed leftover 'needsBufferReserve' variable from cTransfer (thanks to Marco
Schlüßler).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: config.h 1.242 2006/01/27 13:27:41 kls Exp $
* $Id: config.h 1.243 2006/01/29 17:24:53 kls Exp $
*/
#ifndef __CONFIG_H
@ -19,8 +19,8 @@
#include "i18n.h"
#include "tools.h"
#define VDRVERSION "1.3.41"
#define VDRVERSNUM 10341 // Version * 10000 + Major * 100 + Minor
#define VDRVERSION "1.3.42"
#define VDRVERSNUM 10342 // Version * 10000 + Major * 100 + Minor
#define MAXPRIORITY 99
#define MAXLIFETIME 99

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: transfer.c 1.32 2006/01/28 14:23:38 kls Exp $
* $Id: transfer.c 1.33 2006/01/29 17:24:39 kls Exp $
*/
#include "transfer.h"
@ -20,7 +20,6 @@ cTransfer::cTransfer(int VPid, const int *APids, const int *DPids, const int *SP
{
ringBuffer = new cRingBufferLinear(TRANSFERBUFSIZE, TS_SIZE * 2, true, "Transfer");
remux = new cRemux(VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids);
needsBufferReserve = Setup.UseDolbyDigital && VPid != 0 && DPids && DPids[0] != 0;
}
cTransfer::~cTransfer()

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: transfer.h 1.10 2005/08/13 10:16:02 kls Exp $
* $Id: transfer.h 1.11 2006/01/29 17:24:43 kls Exp $
*/
#ifndef __TRANSFER_H
@ -20,7 +20,6 @@ class cTransfer : public cReceiver, public cPlayer, public cThread {
private:
cRingBufferLinear *ringBuffer;
cRemux *remux;
bool needsBufferReserve;
protected:
virtual void Activate(bool On);
virtual void Receive(uchar *Data, int Length);