diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-06-13 10:29:53 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-06-13 10:29:53 +0200 |
commit | 00541fe53128d501ba7db26b8627e3c82e2992cd (patch) | |
tree | 0482881f7f8c43bdf31018b314fd42e5eedba2af | |
parent | 24ec693c2d4f16f8b21632b06820a277efb6b847 (diff) | |
download | vdr-00541fe53128d501ba7db26b8627e3c82e2992cd.tar.gz vdr-00541fe53128d501ba7db26b8627e3c82e2992cd.tar.bz2 |
Added missing Dtypes for ATSC
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | pat.c | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index cd518120..7437ee1c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2590,6 +2590,7 @@ Lars Hanisch <dvb@flensrocker.de> Alex Lasnier <alex@fepg.org> for adding tuning support for ATSC devices + for adding missing Dtypes for ATSC Dimitar Petrovski <dimeptr@gmail.com> for translating OSD texts to the Macedonian language @@ -6465,6 +6465,7 @@ Video Disk Recorder Revision History the number keys can be used to enter characters in a text input field (suggested by Stefan Huskamp). -2010-06-11: Version 1.7.16 +2010-06-13: Version 1.7.16 - Updated the Italian OSD texts (thanks to Diego Pierotto). +- Added missing Dtypes for ATSC (thanks to Alex Lasnier). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: pat.c 2.11 2010/06/05 13:26:47 kls Exp $ + * $Id: pat.c 2.12 2010/06/13 10:28:19 kls Exp $ */ #include "pat.h" @@ -473,6 +473,7 @@ void cPatFilter::Process(u_short Pid, u_char Tid, const u_char *Data, int Length } if (NumDpids < MAXDPIDS) { Dpids[NumDpids] = esPid; + Dtypes[NumDpids] = SI::AC3DescriptorTag; strn0cpy(DLangs[NumDpids], lang, MAXLANGCODE1); NumDpids++; } |