diff options
author | schmirl <schmirl> | 2009-02-13 13:02:39 +0000 |
---|---|---|
committer | schmirl <schmirl> | 2009-02-13 13:02:39 +0000 |
commit | 3d16ba08409e5ca42eec427ef742809cc875f0b0 (patch) | |
tree | a8ee19979caa1f49a5e4b3d9df1c28eadbc40821 /client | |
parent | 78410ea5761eab03a7bc33852e85621594df7254 (diff) | |
download | vdr-plugin-streamdev-3d16ba08409e5ca42eec427ef742809cc875f0b0.tar.gz vdr-plugin-streamdev-3d16ba08409e5ca42eec427ef742809cc875f0b0.tar.bz2 |
added comments to indicate that the VTP filter stream is proprietary format
Modified Files:
client/filter.c server/livefilter.c
Diffstat (limited to 'client')
-rw-r--r-- | client/filter.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/filter.c b/client/filter.c index e88defa..c187e05 100644 --- a/client/filter.c +++ b/client/filter.c @@ -1,5 +1,5 @@ /* - * $Id: filter.c,v 1.13 2008/10/13 11:30:06 schmirl Exp $ + * $Id: filter.c,v 1.14 2009/02/13 13:02:39 schmirl Exp $ */ #include "client/filter.h" @@ -227,6 +227,7 @@ void cStreamdevFilters::Action(void) { u_short pid = (((u_short)block[1] & PID_MASK_HI) << 8) | block[2]; u_char tid = block[3]; bool Pusi = block[1] & 0x40; + // proprietary extension int len = block[4]; #if 0 if (block[1] == 0xff && |