23 lines
612 B
C#
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;
|
|
}
|
|
}
|
|
}
|