skyscraper8/skyscraper8/Atsc/A322/IAtscPlpEventHandler.cs
feyris-tan 3c6b5cf98e
All checks were successful
🚀 Pack skyscraper8 / make-zip (push) Successful in 56s
Can now parse ATSC3 PLPs.
2026-06-03 22:59:24 +02:00

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);
}
}