mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed processing EPG data in case there is no title
This commit is contained in:
parent
454b63416b
commit
277ac424d4
@ -644,6 +644,7 @@ Torsten Herz <torsten.herz@web.de>
|
|||||||
for fixing a bug in resetting OSD color palettes
|
for fixing a bug in resetting OSD color palettes
|
||||||
for adding missing 'const' to some cChannel member functions
|
for adding missing 'const' to some cChannel member functions
|
||||||
for fixing handling Priority -1 in cDvbDevice::ProvidesChannel()
|
for fixing handling Priority -1 in cDvbDevice::ProvidesChannel()
|
||||||
|
for fixing processing EPG data in case there is no title
|
||||||
|
|
||||||
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
|
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
|
||||||
for reporting a problem with CPU load peaks (in the EPG scanner)
|
for reporting a problem with CPU load peaks (in the EPG scanner)
|
||||||
|
1
HISTORY
1
HISTORY
@ -2464,3 +2464,4 @@ Video Disk Recorder Revision History
|
|||||||
|
|
||||||
- Fixed handling Priority -1 in cDvbDevice::ProvidesChannel() (thanks to
|
- Fixed handling Priority -1 in cDvbDevice::ProvidesChannel() (thanks to
|
||||||
Torsten Herz).
|
Torsten Herz).
|
||||||
|
- Fixed processing EPG data in case there is no title (thanks to Torsten Herz).
|
||||||
|
@ -118,7 +118,6 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
|
|||||||
AddItemToText (Item->Text,
|
AddItemToText (Item->Text,
|
||||||
VdrProgramInfo->ExtendedText);
|
VdrProgramInfo->ExtendedText);
|
||||||
}
|
}
|
||||||
GotVdrProgramInfo = 1;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -134,7 +133,6 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
|
|||||||
VdrProgramInfo->ContentNibble2 =
|
VdrProgramInfo->ContentNibble2 =
|
||||||
GetContentContentNibble2(Descriptor, j);
|
GetContentContentNibble2(Descriptor, j);
|
||||||
}
|
}
|
||||||
GotVdrProgramInfo = 1;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -147,12 +145,12 @@ struct LIST *createVdrProgramInfos (unsigned char *siBuffer)
|
|||||||
if (!strncmp (VdrProgramInfo->LanguageCode,
|
if (!strncmp (VdrProgramInfo->LanguageCode,
|
||||||
Rating->LanguageCode, 3))
|
Rating->LanguageCode, 3))
|
||||||
VdrProgramInfo->Rating = Rating->Rating;
|
VdrProgramInfo->Rating = Rating->Rating;
|
||||||
GotVdrProgramInfo = 1;
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (GotVdrProgramInfo) xAddTail (Result, VdrProgramInfo);
|
if (GotVdrProgramInfo) xAddTail (Result, VdrProgramInfo);
|
||||||
|
else xMemFree (VdrProgramInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (Result);
|
return (Result);
|
||||||
|
Loading…
Reference in New Issue
Block a user