skyscraper8/skyscraper8/DvbSis/SisPmtContainer.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

21 lines
495 B
C#

using skyscraper5.Mpeg2.Psi;
using skyscraper5.Mpeg2.Psi.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.DvbSis
{
public class SisPmtContainer : IPmtEventHandler
{
public void PmtEvent(ProgramMapping result, int pmtPid)
{
this.ProgramMapping = result;
}
public ProgramMapping ProgramMapping { get; private set; }
}
}