From eca1ba0b12da195dff3c31ffb799e4e3a7b5b5b9 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 24 Apr 2014 22:00:19 -0400 Subject: fixes #797 - Determine mpeg2ts timestamp info --- MediaBrowser.Controller/Entities/Video.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 2d926e2363..bfb306b31e 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -2,6 +2,7 @@ using MediaBrowser.Controller.Persistence; using MediaBrowser.Controller.Providers; using MediaBrowser.Controller.Resolvers; +using MediaBrowser.Model.Dlna; using MediaBrowser.Model.Entities; using System; using System.Collections; @@ -11,6 +12,7 @@ using System.Linq; using System.Runtime.Serialization; using System.Threading; using System.Threading.Tasks; +using MediaBrowser.Model.MediaInfo; namespace MediaBrowser.Controller.Entities { @@ -31,6 +33,12 @@ namespace MediaBrowser.Controller.Entities public string Container { get; set; } public int? TotalBitrate { get; set; } + /// + /// Gets or sets the timestamp. + /// + /// The timestamp. + public TransportStreamTimestamp Timestamp { get; set; } + public Video() { PlayableStreamFileNames = new List(); -- cgit v1.2.3