Bugfix: Many tables would be dropped for no reason. This is now fixed.
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m46s
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m46s
This commit is contained in:
parent
ca9ed0f11a
commit
8f1ddcdadf
@ -123,7 +123,7 @@ namespace skyscraper5.Mpeg2
|
|||||||
private bool EnsureContinuity(TsPacket packet)
|
private bool EnsureContinuity(TsPacket packet)
|
||||||
{
|
{
|
||||||
//Found in ISO 13818-1.pdf, page 38
|
//Found in ISO 13818-1.pdf, page 38
|
||||||
if (packet.GetPayload() != null)
|
if (packet.GetPayload() == null)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (packet.PID == 0x1fff)
|
if (packet.PID == 0x1fff)
|
||||||
|
|||||||
@ -232,7 +232,5 @@ namespace skyscraper5.Skyscraper.Scraper
|
|||||||
void OnDvbSisNit(int sourcePid, SisNitContainer nitContainer);
|
void OnDvbSisNit(int sourcePid, SisNitContainer nitContainer);
|
||||||
void OnDvbSisTdt(int sourcePid, DateTime? utcTime);
|
void OnDvbSisTdt(int sourcePid, DateTime? utcTime);
|
||||||
|
|
||||||
TaskQueue Tasks { get; set; }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user