summaryrefslogtreecommitdiff
path: root/remux.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-02-26 15:53:12 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2011-02-26 15:53:12 +0100
commit63fb010fc5559dc0cb0552b044d4326be7c05f19 (patch)
treee21a80d603a1088b309b64a518bc8f13bfc7c242 /remux.c
parent387ee5b6049bb5b38191fb192a4c6831485dab1c (diff)
downloadvdr-63fb010fc5559dc0cb0552b044d4326be7c05f19.tar.gz
vdr-63fb010fc5559dc0cb0552b044d4326be7c05f19.tar.bz2
Setting the audio type of language descriptors to 0x00 in the PAT/PMT generator
Diffstat (limited to 'remux.c')
-rw-r--r--remux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/remux.c b/remux.c
index 40101212..f7ad86dd 100644
--- a/remux.c
+++ b/remux.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remux.c 2.50 2011/02/25 15:19:57 kls Exp $
+ * $Id: remux.c 2.51 2011/02/26 15:51:04 kls Exp $
*/
#include "remux.h"
@@ -225,7 +225,7 @@ int cPatPmtGenerator::MakeLanguageDescriptor(uchar *Target, const char *Language
Target[i++] = *Language++;
Target[i++] = *Language++;
Target[i++] = *Language++;
- Target[i++] = 0x01; // audio type
+ Target[i++] = 0x00; // audio type
Target[Length] += 0x04; // length
if (*Language == '+')
Language++;