mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Removed leftover 'needsBufferReserve' variable from cTransfer
This commit is contained in:
parent
913814a500
commit
e34ddc507d
@ -1292,6 +1292,7 @@ Marco Schl
|
|||||||
for figuring out some obscure length bytes the the CA PMT Reply data of AlphaCrypt CAMs
|
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 fixing handling OSD areas that have invalid sizes
|
||||||
for removing unused variables in skinclassic.c and skinsttng.c
|
for removing unused variables in skinclassic.c and skinsttng.c
|
||||||
|
for removing leftover 'needsBufferReserve' variable from cTransfer
|
||||||
|
|
||||||
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
|
||||||
|
5
HISTORY
5
HISTORY
@ -4270,3 +4270,8 @@ Video Disk Recorder Revision History
|
|||||||
system, it is now tried again after 5 minutes (suggested by Helmut Auer).
|
system, it is now tried again after 5 minutes (suggested by Helmut Auer).
|
||||||
- Separated the 'install' target into several individual targets; renamed the
|
- Separated the 'install' target into several individual targets; renamed the
|
||||||
'plugins-install' target to 'install-plugins' (thanks to Helmut Auer).
|
'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).
|
||||||
|
6
config.h
6
config.h
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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
|
#ifndef __CONFIG_H
|
||||||
@ -19,8 +19,8 @@
|
|||||||
#include "i18n.h"
|
#include "i18n.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
|
||||||
#define VDRVERSION "1.3.41"
|
#define VDRVERSION "1.3.42"
|
||||||
#define VDRVERSNUM 10341 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10342 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
#define MAXPRIORITY 99
|
#define MAXPRIORITY 99
|
||||||
#define MAXLIFETIME 99
|
#define MAXLIFETIME 99
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#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");
|
ringBuffer = new cRingBufferLinear(TRANSFERBUFSIZE, TS_SIZE * 2, true, "Transfer");
|
||||||
remux = new cRemux(VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids);
|
remux = new cRemux(VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids);
|
||||||
needsBufferReserve = Setup.UseDolbyDigital && VPid != 0 && DPids && DPids[0] != 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cTransfer::~cTransfer()
|
cTransfer::~cTransfer()
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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
|
#ifndef __TRANSFER_H
|
||||||
@ -20,7 +20,6 @@ class cTransfer : public cReceiver, public cPlayer, public cThread {
|
|||||||
private:
|
private:
|
||||||
cRingBufferLinear *ringBuffer;
|
cRingBufferLinear *ringBuffer;
|
||||||
cRemux *remux;
|
cRemux *remux;
|
||||||
bool needsBufferReserve;
|
|
||||||
protected:
|
protected:
|
||||||
virtual void Activate(bool On);
|
virtual void Activate(bool On);
|
||||||
virtual void Receive(uchar *Data, int Length);
|
virtual void Receive(uchar *Data, int Length);
|
||||||
|
Loading…
Reference in New Issue
Block a user