skyscraper8/skyscraper8/DvbSis/SisTotContainer.cs
Fey 7ff359e52d
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 1m22s
Passthrough DVB-SIS DSACI, EIT, PAT and T2-Mi Timestamps to database.
2025-12-17 09:28:53 +01:00

23 lines
612 B
C#

using skyscraper5.Dvb.Descriptors;
using skyscraper5.Dvb.Psi;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.DvbSis
{
public class SisTotContainer : ITotEventHandler
{
public DateTime UtcTime { get; private set; }
public LocalTimeOffsetDescriptor LocalTimeOffset { get; private set; }
public void OnTotTime(DateTime utcTime, LocalTimeOffsetDescriptor ltod)
{
this.UtcTime = utcTime;
this.LocalTimeOffset = ltod;
}
}
}