mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Now only writing Dolby Digital tracks into the 'info.vdr' file of a recording if Setup.UseDolbyDigital is true
This commit is contained in:
parent
cad1a88a7b
commit
dda33ecb04
@ -1646,3 +1646,7 @@ Patrick Cernko <errror@errror.org>
|
||||
Philippe Gramoullé <philippe@gramoulle.com>
|
||||
for reporting a a missing '-' in the example for viewing a grabbed image on a remote
|
||||
host
|
||||
|
||||
André Weidemann <Andre.Weidemann@web.de>
|
||||
for suggesting to only write Dolby Digital tracks into the 'info.vdr' file of a
|
||||
recording if Setup.UseDolbyDigital is true
|
||||
|
2
HISTORY
2
HISTORY
@ -4183,3 +4183,5 @@ Video Disk Recorder Revision History
|
||||
"All events on all channels" page may take a while.
|
||||
- The status markers in the "Schedule" menu are now only updated if a submenu is
|
||||
closed in which a timer has been modified, which speeds up closing submenus.
|
||||
- Now only writing Dolby Digital tracks into the 'info.vdr' file of a recording
|
||||
if Setup.UseDolbyDigital is true (suggested by André Weidemann).
|
||||
|
4
epg.c
4
epg.c
@ -7,7 +7,7 @@
|
||||
* Original version (as used in VDR before 1.3.0) written by
|
||||
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
||||
*
|
||||
* $Id: epg.c 1.48 2006/01/14 15:46:50 kls Exp $
|
||||
* $Id: epg.c 1.49 2006/01/15 13:58:30 kls Exp $
|
||||
*/
|
||||
|
||||
#include "epg.h"
|
||||
@ -247,6 +247,8 @@ void cEvent::Dump(FILE *f, const char *Prefix, bool InfoOnly) const
|
||||
if (components) {
|
||||
for (int i = 0; i < components->NumComponents(); i++) {
|
||||
tComponent *p = components->Component(i);
|
||||
if (!Setup.UseDolbyDigital && p->stream == 0x02 && p->type == 0x05)
|
||||
continue;
|
||||
fprintf(f, "%sX %s\n", Prefix, *p->ToString());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user