mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
44 lines
1.8 KiB
C#
44 lines
1.8 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace Nikse.SubtitleEdit.Core.TransportStream
|
|
{
|
|
public class ProgramAssociationTable
|
|
{
|
|
public int TableId { get; set; }
|
|
public int SectionLength { get; set; }
|
|
public int TransportStreamId { get; set; }
|
|
public int VersionNumber { get; set; }
|
|
public int CurrentNextIndicator { get; set; }
|
|
public int SectionNumber { get; set; }
|
|
public int LastSectionNumber { get; set; }
|
|
public List<int> ProgramNumbers { get; set; }
|
|
public List<int> ProgramIds { get; set; }
|
|
|
|
public ProgramAssociationTable(byte[] packetBuffer, int index)
|
|
{
|
|
TableId = packetBuffer[index];
|
|
SectionLength = (packetBuffer[index + 1] & Helper.B00000011) * 256 + packetBuffer[index + 2];
|
|
TransportStreamId = packetBuffer[index + 3] * 256 + packetBuffer[index + 4];
|
|
VersionNumber = (packetBuffer[index + 5] & Helper.B00111110) >> 1;
|
|
CurrentNextIndicator = packetBuffer[index + 5] & 1;
|
|
SectionNumber = packetBuffer[index + 6];
|
|
LastSectionNumber = packetBuffer[index + 7];
|
|
|
|
ProgramNumbers = new List<int>();
|
|
ProgramIds = new List<int>();
|
|
index = index + 8;
|
|
for (int i = 0; i < (SectionLength - 5) / 8; i++)
|
|
{
|
|
if (index + 3 < packetBuffer.Length)
|
|
{
|
|
int programNumber = packetBuffer[index] * 256 + packetBuffer[index + 1];
|
|
int programId = (packetBuffer[index + 2] & Helper.B00011111) * 256 + packetBuffer[index + 3];
|
|
ProgramNumbers.Add(programNumber);
|
|
ProgramIds.Add(programId);
|
|
index += 8;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|