using System; namespace JMS.DVB.TS { /// /// Internally used stream types for transport streams elements. /// public enum StreamTypes { /// /// Video stream. /// Video = 2, /// /// Audio stream. /// Audio = 3, /// /// Dolby Digital (AC3) stream mapped to a private stream. /// Private = 6, /// /// Teletext stream mapped to a private stream. /// TeleText = -1, /// /// DVB subtitle stream mapped to a private stream. /// SubTitles = -2 } }