diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-22 13:25:54 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-22 13:25:54 -0400 |
| commit | 54eb7cb85537ef6959e3f1fab7871361b9bf8243 (patch) | |
| tree | 581c3f120c09c0acc2856c5fc684d00c467e5aa8 /MediaBrowser.Model | |
| parent | 4331700747440cfa2c2df0cea1abcace9ed60019 (diff) | |
update dlna profiles
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Dlna/DeviceProfile.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStream.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/Session/PlaybackReports.cs | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Dlna/DeviceProfile.cs b/MediaBrowser.Model/Dlna/DeviceProfile.cs index ca5ce13d88..df717fd105 100644 --- a/MediaBrowser.Model/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Model/Dlna/DeviceProfile.cs @@ -61,7 +61,7 @@ namespace MediaBrowser.Model.Dlna /// </summary> public string XDlnaCap { get; set; } /// <summary> - /// Controls the content of the aggregationFlags element in the urn:schemas-sonycom:av. + /// Controls the content of the aggregationFlags element in the urn:schemas-sonycom:av namespace. /// </summary> public string SonyAggregationFlags { get; set; } diff --git a/MediaBrowser.Model/Entities/MediaStream.cs b/MediaBrowser.Model/Entities/MediaStream.cs index 9719f4e7df..cdfdd19c84 100644 --- a/MediaBrowser.Model/Entities/MediaStream.cs +++ b/MediaBrowser.Model/Entities/MediaStream.cs @@ -173,6 +173,8 @@ namespace MediaBrowser.Model.Entities /// <value>The format.</value> public string Format { get; set; } + public int? TotalBitrate { get; set; } + public MediaInfo() { MediaStreams = new List<MediaStream>(); diff --git a/MediaBrowser.Model/Session/PlaybackReports.cs b/MediaBrowser.Model/Session/PlaybackReports.cs index 80524c06ec..93960076e3 100644 --- a/MediaBrowser.Model/Session/PlaybackReports.cs +++ b/MediaBrowser.Model/Session/PlaybackReports.cs @@ -1,5 +1,5 @@ -using System.Collections.Generic; -using MediaBrowser.Model.Entities; +using MediaBrowser.Model.Entities; +using System.Collections.Generic; namespace MediaBrowser.Model.Session { |
