diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-24 15:20:49 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-24 15:20:49 +0100 |
commit | 9ff0e7ef27c9676ca171b7ff9886812abd9e2c9b (patch) | |
tree | 81bfd313b091eeddc39b216188650261447f5820 | |
parent | 96ce9817131c79b862916bdf2fdbd31b596bdb29 (diff) | |
download | vdr-9ff0e7ef27c9676ca171b7ff9886812abd9e2c9b.tar.gz vdr-9ff0e7ef27c9676ca171b7ff9886812abd9e2c9b.tar.bz2 |
The PCR pid in generated PMTs is now set to the channel's PCR pid again
-rw-r--r-- | HISTORY | 6 | ||||
-rw-r--r-- | remux.c | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -6276,7 +6276,7 @@ Video Disk Recorder Revision History - Fixed plugin arguments corruption with glibc 2.11 on x86_64 (thanks to Anssi Hannula). -2010-01-23: Version 1.7.12 +2010-01-24: Version 1.7.12 - Changed the EVCONTENTMASK_* macros to enums and changed "mask" to "group". - Updated the Estonian OSD texts (thanks to Arthur Konovalov). @@ -6296,3 +6296,7 @@ Video Disk Recorder Revision History to Matti Lehtimäki). - Fixed determining the frame duration on channels where the PTS deltas jitter by +/-1 around 1800. +- The PCR pid in generated PMTs is now set to the channel's PCR pid again, which + in most cases is the same as the video pid. For channels that use a separate + PCR pid, no TS packets are recorded from that PID (I have yet to see a case where + this actually is a problem). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remux.c 2.38 2010/01/23 15:39:15 kls Exp $ + * $Id: remux.c 2.39 2010/01/24 15:18:29 kls Exp $ */ #include "remux.h" @@ -295,7 +295,7 @@ void cPatPmtGenerator::GeneratePmt(cChannel *Channel) numPmtPackets = 0; if (Channel) { int Vpid = Channel->Vpid(); - int Ppid = 0x1FFF; // no PCR pid + int Ppid = Channel->Ppid(); uchar *p = buf; int i = 0; p[i++] = 0x02; // table id |