skyscraper8/skyscraper8/Scte35/IScte35EventHandler.cs
feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

16 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using skyscraper5.Scte35.Descriptors;
namespace skyscraper5.Scte35
{
interface IScte35EventHandler
{
void NotifySpliceInsert(ushort ProgramNumber, SpliceInsert spliceInsert);
void NotifyTimeSignal(ushort programNumber, TimeSignal timeSignal);
}
}