diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-16 15:28:18 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2009-01-16 15:28:18 +0100 |
commit | 036c29246073c5384f4fa4457da3cb5ea326b25e (patch) | |
tree | e0c9d9c5a06700b4862d8b4cabda4ef845d5afe0 /remux.c | |
parent | d500f17d50cd237b5d4e2e871d69a4c700273279 (diff) | |
download | vdr-036c29246073c5384f4fa4457da3cb5ea326b25e.tar.gz vdr-036c29246073c5384f4fa4457da3cb5ea326b25e.tar.bz2 |
Fixed incrementing the continuity counter in cPatPmtGenerator::GetPmt()
Diffstat (limited to 'remux.c')
-rw-r--r-- | remux.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: remux.c 2.6 2009/01/16 14:43:15 kls Exp $ + * $Id: remux.c 2.7 2009/01/16 15:25:42 kls Exp $ */ #include "remux.h" @@ -320,7 +320,7 @@ uchar *cPatPmtGenerator::GetPat(void) uchar *cPatPmtGenerator::GetPmt(int &Index) { if (Index < numPmtPackets) { - IncCounter(patCounter, pmt[Index]); + IncCounter(pmtCounter, pmt[Index]); return pmt[Index++]; } return NULL; |