21 lines
495 B
C#
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; }
|
|
}
|
|
}
|