summaryrefslogtreecommitdiff
path: root/remux.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-06-19 10:19:13 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-06-19 10:19:13 +0200
commitf996f100999c72adc98822a9fe89fa9cbb13d698 (patch)
tree6f8ec7ada27284eaa2196b501605fb66be8c72ec /remux.c
parentbe1b6b5e88f4b4468793b992daeb903d7070217a (diff)
downloadvdr-f996f100999c72adc98822a9fe89fa9cbb13d698.tar.gz
vdr-f996f100999c72adc98822a9fe89fa9cbb13d698.tar.bz2
Disabled cVideoRepacker in remux.c
Diffstat (limited to 'remux.c')
-rw-r--r--remux.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/remux.c b/remux.c
index 83d13565..c4e7b203 100644
--- a/remux.c
+++ b/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.34 2005/06/04 14:49:25 kls Exp $
+ * $Id: remux.c 1.35 2005/06/19 10:17:00 kls Exp $
*/
#include "remux.h"
@@ -1155,7 +1155,12 @@ cRemux::cRemux(int VPid, const int *APids, const int *DPids, const int *SPids, b
resultBuffer = new cRingBufferLinear(RESULTBUFFERSIZE, IPACKS, false, "Result");
resultBuffer->SetTimeouts(0, 100);
if (VPid)
+//#define TEST_cVideoRepacker
+#ifdef TEST_cVideoRepacker
ts2pes[numTracks++] = new cTS2PES(VPid, resultBuffer, IPACKS, 0x00, 0x00, new cVideoRepacker);
+#else
+ ts2pes[numTracks++] = new cTS2PES(VPid, resultBuffer, IPACKS);
+#endif
if (APids) {
int n = 0;
while (*APids && numTracks < MAXTRACKS && n < MAXAPIDS)