diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-24 01:08:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-24 01:08:10 -0400 |
| commit | a748c660cb3b20fba0f141025a41afa4426a935c (patch) | |
| tree | beb1c7b0ace7a697f53253ecba2471039842c452 /MediaBrowser.Model/Entities/MediaStream.cs | |
| parent | 0ab3a1bf8e437591e8f949ed198f33b95522c703 (diff) | |
updated dlna profiles
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaStream.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index cdfdd19c8..920112d02 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.Diagnostics; +using MediaBrowser.Model.Dlna; namespace MediaBrowser.Model.Entities { @@ -40,6 +41,24 @@ namespace MediaBrowser.Model.Entities public int? BitRate { get; set; } /// <summary> + /// Gets or sets the bit depth. + /// </summary> + /// <value>The bit depth.</value> + public int? BitDepth { get; set; } + + /// <summary> + /// Gets or sets the length of the packet. + /// </summary> + /// <value>The length of the packet.</value> + public int? PacketLength { get; set; } + + /// <summary> + /// Gets or sets the timestamp. + /// </summary> + /// <value>The timestamp.</value> + public TransportStreamTimestamp Timestamp { get; set; } + + /// <summary> /// Gets or sets the channels. /// </summary> /// <value>The channels.</value> |
