diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-05-01 15:41:04 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-05-01 15:41:04 +0200 |
commit | 7d1b84a997b29f032132957b5b411c15accb2dcf (patch) | |
tree | c294f3f42429a19711691b009fab36679a51c0c8 /menu.c | |
parent | df12c00ff8699f23cb9176b3261ccf505633c434 (diff) | |
download | vdr-7d1b84a997b29f032132957b5b411c15accb2dcf.tar.gz vdr-7d1b84a997b29f032132957b5b411c15accb2dcf.tar.bz2 |
Implemented handling the standard component descriptor for AC3
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 2.1 2008/04/12 11:37:17 kls Exp $ + * $Id: menu.c 2.2 2008/05/01 14:37:24 kls Exp $ */ #include "menu.h" @@ -3147,6 +3147,8 @@ static void SetTrackDescriptions(int LiveChannel) break; case 3: cDevice::PrimaryDevice()->SetAvailableTrack(ttSubtitle, indexSubtitle++, 0, LiveChannel ? NULL : p->language, p->description); break; + case 4: cDevice::PrimaryDevice()->SetAvailableTrack(ttDolby, indexDolby++, 0, LiveChannel ? NULL : p->language, p->description); + break; } } } |