summaryrefslogtreecommitdiff
path: root/command/demux.h
diff options
context:
space:
mode:
authorJochen Dolze <vdr@dolze.de>2011-03-14 23:08:40 +0100
committerJochen Dolze <vdr@dolze.de>2011-03-14 23:08:40 +0100
commit0662afd6d8816713ebeef519b38456d0f57a837b (patch)
treed16c991b8677d6c068d9b20281951097256310cd /command/demux.h
parentad13e186a657a6d2488dcc608ef670804107f4a7 (diff)
downloadvdr-plugin-markad-0662afd6d8816713ebeef519b38456d0f57a837b.tar.gz
vdr-plugin-markad-0662afd6d8816713ebeef519b38456d0f57a837b.tar.bz2
Added -O3 and -funroll-loops in Makefile
Reverted cutval to 127, adding commandline argument later Fixed demux error with TS files Added more info messages
Diffstat (limited to 'command/demux.h')
-rw-r--r--command/demux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/command/demux.h b/command/demux.h
index 2299e6b..4d53a95 100644
--- a/command/demux.h
+++ b/command/demux.h
@@ -207,7 +207,8 @@ public:
return ((scannerstart==inptr) || (scannerstart==outptr));
}
}
- int FindPesHeader(int Start);
+ int FindPESHeader(int Start);
+ int FindTSHeader(int Start);
};
// ----------------------------------------------------------------------------
@@ -225,6 +226,7 @@ private:
bool noticeFILLER;
bool noticeSEQUENCE;
bool noticeSTREAM;
+ bool noticeTSERR;
public:
cTS2Pkt(int Pid, const char *QueueName="TS2Pkt", int QueueSize=32768, bool H264=false);
~cTS2Pkt();