diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-23 16:44:46 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-23 16:44:46 +0100 |
commit | 2b174b07bde731981068895a780e3e0564bb85ac (patch) | |
tree | 854680d01966886fda0c8267cfde62056b9a6c3a /transfer.c | |
parent | 1ca753003b97ea3df52460165118e040ae73a080 (diff) | |
download | vdr-2b174b07bde731981068895a780e3e0564bb85ac.tar.gz vdr-2b174b07bde731981068895a780e3e0564bb85ac.tar.bz2 |
Changed cPatPmtGenerator to make sure the PMT pid doesn't collide with any of the actual pids of the channel
Diffstat (limited to 'transfer.c')
-rw-r--r-- | transfer.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.c 2.2 2009/01/16 15:16:08 kls Exp $ + * $Id: transfer.c 2.3 2009/01/23 16:44:29 kls Exp $ */ #include "transfer.h" @@ -14,7 +14,7 @@ cTransfer::cTransfer(tChannelID ChannelID, int VPid, const int *APids, const int *DPids, const int *SPids) :cReceiver(ChannelID, -1, VPid, APids, Setup.UseDolbyDigital ? DPids : NULL, SPids) { - patPmtGenerator.GeneratePmt(ChannelID); + patPmtGenerator.SetChannel(Channels.GetByChannelID(ChannelID)); } cTransfer::~cTransfer() |