mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio)
This commit is contained in:
parent
08e6d87a86
commit
225f7ab641
3
HISTORY
3
HISTORY
@ -6411,7 +6411,7 @@ Video Disk Recorder Revision History
|
||||
- The new setup option "Folders in timer menu" controls whether the file names in
|
||||
the timer menu are shown with their full folder path.
|
||||
|
||||
2010-05-13: Version 1.7.15
|
||||
2010-05-16: Version 1.7.15
|
||||
|
||||
- Added Macedonian language texts (thanks to Dimitar Petrovski).
|
||||
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
||||
@ -6455,3 +6455,4 @@ Video Disk Recorder Revision History
|
||||
by Rolf Ahrenberg).
|
||||
- Implemented handling of HD resolution subtitles according to v1.3.1 of
|
||||
ETSI EN 300 743, chapter 7.2.1 (thanks to Rolf Ahrenberg).
|
||||
- The EPG data now handles stream components 5 (H.264-video) and 6 (HEAAC-audio).
|
||||
|
4
eit.c
4
eit.c
@ -8,7 +8,7 @@
|
||||
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
|
||||
* Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>.
|
||||
*
|
||||
* $Id: eit.c 2.11 2010/01/08 15:17:09 kls Exp $
|
||||
* $Id: eit.c 2.12 2010/05/14 14:08:35 kls Exp $
|
||||
*/
|
||||
|
||||
#include "eit.h"
|
||||
@ -257,7 +257,7 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data, bo
|
||||
SI::ComponentDescriptor *cd = (SI::ComponentDescriptor *)d;
|
||||
uchar Stream = cd->getStreamContent();
|
||||
uchar Type = cd->getComponentType();
|
||||
if (1 <= Stream && Stream <= 4 && Type != 0) { // 1=video, 2=audio, 3=subtitles, 4=AC3
|
||||
if (1 <= Stream && Stream <= 6 && Type != 0) { // 1=MPEG2-video, 2=MPEG1-audio, 3=subtitles, 4=AC3-audio, 5=H.264-video, 6=HEAAC-audio
|
||||
if (!Components)
|
||||
Components = new cComponents;
|
||||
char buffer[Utf8BufSize(256)];
|
||||
|
Loading…
Reference in New Issue
Block a user