diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-11 13:23:44 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-10-11 13:23:44 +0200 |
commit | 6439d378067ceaf2b24ce3e19d3d0be3a261f615 (patch) | |
tree | 5ad08508a6bdba97778ee45fa89a2d7173a7acec /eit.c | |
parent | a3c772330a6e76a0e2442909d5baf4795b38a1d1 (diff) | |
download | vdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.gz vdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.bz2 |
Adapted type names to the new HEAD version of the driver
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -16,7 +16,7 @@ * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * - * $Id: eit.c 1.55 2002/10/07 16:24:04 kls Exp $ + * $Id: eit.c 1.56 2002/10/11 13:14:57 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -1196,7 +1196,11 @@ void cSIProcessor::Action() table identifer tid */ bool cSIProcessor::AddFilter(u_char pid, u_char tid) { +#ifdef NEWSTRUCT + dmx_sct_filter_params sctFilterParams; +#else dmxSctFilterParams sctFilterParams; +#endif memset(&sctFilterParams, 0, sizeof(sctFilterParams)); sctFilterParams.pid = pid; sctFilterParams.timeout = 0; |