17 lines
437 B
C#
17 lines
437 B
C#
using skyscraper5.Ietf.Rfc971;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using skyscraper8.Atsc.A330;
|
|
|
|
namespace skyscraper8.Atsc.A322
|
|
{
|
|
internal interface IAtscPlpEventHandler
|
|
{
|
|
void OnIpDatagram(int pid, byte[] payload);
|
|
void OnAtsc3LinkMappingTable(ushort plp, AdditionalHeaderForSignalingInformation signalingInformation, LinkMappingTable lmt);
|
|
}
|
|
}
|