namespace MediaBrowser.Model.MediaInfo
{
///
/// The type of timestamps used in a transport stream.
///
public enum TransportStreamTimestamp
{
///
/// The stream contains no timestamps.
///
None,
///
/// The stream contains zero-value timestamps.
///
Zero,
///
/// The stream contains valid timestamps.
///
Valid
}
}