├── .gitignore ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── TransportStream │ ├── CyclicRedundancyCheck.swift │ ├── Demultiplexer.swift │ ├── Extensions │ ├── ArrayExtensions.swift │ └── BinaryExtensions.swift │ ├── ProgramSpecificInformation │ ├── ConditionalAccessTable │ │ └── ConditionalAccessTable.swift │ ├── Descriptors │ │ └── Descriptor.swift │ ├── IPMPControlInformationTable.swift │ ├── NetworkInformationTable │ │ └── NetworkInformationTable.swift │ ├── Other │ │ └── Stream.swift │ ├── ProgramAssociationTable │ │ ├── ProgramAssociationTable.swift │ │ └── ProgramAssociationTableProgram.swift │ ├── ProgramMapTable │ │ └── ProgramMapTable.swift │ ├── ProgramSpecificInformation.swift │ └── TransportStreamDescriptionTable.swift │ └── TransportStream │ ├── AdaptationExtension.swift │ ├── AdaptationField.swift │ ├── AdaptationFieldControl.swift │ ├── PartialTransportStreamPacket.swift │ ├── PartialTransportStreamPacketError.swift │ └── TransportStreamPacket.swift └── Tests ├── LinuxMain.swift └── TransportStreamTests ├── TransportStreamTests.swift └── XCTestManifests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/.gitignore -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/README.md -------------------------------------------------------------------------------- /Sources/TransportStream/CyclicRedundancyCheck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/CyclicRedundancyCheck.swift -------------------------------------------------------------------------------- /Sources/TransportStream/Demultiplexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/Demultiplexer.swift -------------------------------------------------------------------------------- /Sources/TransportStream/Extensions/ArrayExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/Extensions/ArrayExtensions.swift -------------------------------------------------------------------------------- /Sources/TransportStream/Extensions/BinaryExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/Extensions/BinaryExtensions.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/ConditionalAccessTable/ConditionalAccessTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/ConditionalAccessTable/ConditionalAccessTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/Descriptors/Descriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/Descriptors/Descriptor.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/IPMPControlInformationTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/IPMPControlInformationTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/NetworkInformationTable/NetworkInformationTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/NetworkInformationTable/NetworkInformationTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/Other/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/Other/Stream.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/ProgramAssociationTable/ProgramAssociationTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/ProgramAssociationTable/ProgramAssociationTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/ProgramAssociationTable/ProgramAssociationTableProgram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/ProgramAssociationTable/ProgramAssociationTableProgram.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/ProgramMapTable/ProgramMapTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/ProgramMapTable/ProgramMapTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/ProgramSpecificInformation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/ProgramSpecificInformation.swift -------------------------------------------------------------------------------- /Sources/TransportStream/ProgramSpecificInformation/TransportStreamDescriptionTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/ProgramSpecificInformation/TransportStreamDescriptionTable.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/AdaptationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/AdaptationExtension.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/AdaptationField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/AdaptationField.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/AdaptationFieldControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/AdaptationFieldControl.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/PartialTransportStreamPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/PartialTransportStreamPacket.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/PartialTransportStreamPacketError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/PartialTransportStreamPacketError.swift -------------------------------------------------------------------------------- /Sources/TransportStream/TransportStream/TransportStreamPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Sources/TransportStream/TransportStream/TransportStreamPacket.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/TransportStreamTests/TransportStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Tests/TransportStreamTests/TransportStreamTests.swift -------------------------------------------------------------------------------- /Tests/TransportStreamTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cosmo/TransportStream/HEAD/Tests/TransportStreamTests/XCTestManifests.swift --------------------------------------------------------------------------------