Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
***************
*** 67,73 ****
// If the existing event has a zero table ID it was defined externally and shall
// not be overwritten.
if (pEvent->TableID() == 0x00)
- continue;
// If the new event has a higher table ID, let's skip it.
// The lower the table ID, the more "current" the information.
if (Tid > pEvent->TableID())
--- 67,149 ----
// If the existing event has a zero table ID it was defined externally and shall
// not be overwritten.
if (pEvent->TableID() == 0x00)
+ {
+ if(Setup.MixEpgAction == 0)
+ continue;
.
.
.
+ delete ExtendedEventDescriptors;
+ delete ShortEventDescriptor;
+ continue;
+ }
// If the new event has a higher table ID, let's skip it.
// The lower the table ID, the more "current" the information.
if (Tid > pEvent->TableID())
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 |
pEvent->SetSeen();
// If the existing event has a zero table ID it was defined externally and shall
// not be overwritten.
if (pEvent->TableID() == 0x00) {
if (pEvent->Version() == getVersionNumber())
continue;
HasExternalData = ExternalData = true;
}
// If the new event has a higher table ID, let's skip it.
// The lower the table ID, the more "current" the information.
else if (Tid > pEvent->TableID())
|
):
Quoted
....
ShowValidInput Patch
Patch fuer das Decruft Plugin
JumpPlay Patch
DisableDoubleEPG Patch 0.7.3b
Patch fuer das subtitles Plugin
listplugins Script hinzugefuegt
sortrec Patch
TimerInfo Patch 0.3
DolbyInRecordings Patch
mini/SwitchTimerOnly Patch
........
|
|
Source code |
1 |
continue; |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
pEvent->SetSeen();
// If the existing event has a zero table ID it was defined externally and shall
// not be overwritten.
if (pEvent->TableID() == 0x00) {
if (pEvent->Version() == getVersionNumber())
{
if(Setup.MixEpgAction == 0)
continue;
delete ExtendedEventDescriptors;
delete ShortEventDescriptor;
continue;
}
HasExternalData = ExternalData = true;
}
// If the new event has a higher table ID, let's skip it.
// The lower the table ID, the more "current" the information.
else if (Tid > pEvent->TableID())
|

This post has been edited 2 times, last edit by "Toxic-Tonic" (Feb 21st 2006, 3:25pm)