From 93fdbc17d8e3dde88647b8baad20d664374d4a35 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 13 Sep 2013 16:53:46 -0400 Subject: [PATCH] Added video bitrate sort order --- MediaBrowser.Model/Querying/ItemSortBy.cs | 1 + ...MediaBrowser.Server.Implementations.csproj | 1 + .../Sorting/SeriesCountComparer.cs | 7 +-- .../Sorting/VideoBitRateComparer.cs | 49 +++++++++++++++++++ 4 files changed, 52 insertions(+), 6 deletions(-) create mode 100644 MediaBrowser.Server.Implementations/Sorting/VideoBitRateComparer.cs diff --git a/MediaBrowser.Model/Querying/ItemSortBy.cs b/MediaBrowser.Model/Querying/ItemSortBy.cs index deb0ce51dd..f2c9ece326 100644 --- a/MediaBrowser.Model/Querying/ItemSortBy.cs +++ b/MediaBrowser.Model/Querying/ItemSortBy.cs @@ -82,5 +82,6 @@ namespace MediaBrowser.Model.Querying public const string AlbumCount = "AlbumCount"; public const string MusicVideoCount = "MusicVideoCount"; public const string SeriesSortName = "SeriesSortName"; + public const string VideoBitRate = "VideoBitRate"; } } diff --git a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj index 6be7487ad7..fed6dad82e 100644 --- a/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj +++ b/MediaBrowser.Server.Implementations/MediaBrowser.Server.Implementations.csproj @@ -210,6 +210,7 @@ + diff --git a/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs b/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs index 33da4cec31..f8c8c4bce5 100644 --- a/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs +++ b/MediaBrowser.Server.Implementations/Sorting/SeriesCountComparer.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using MediaBrowser.Controller.Entities; +using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Persistence; using MediaBrowser.Controller.Sorting; diff --git a/MediaBrowser.Server.Implementations/Sorting/VideoBitRateComparer.cs b/MediaBrowser.Server.Implementations/Sorting/VideoBitRateComparer.cs new file mode 100644 index 0000000000..469eb5d6ae --- /dev/null +++ b/MediaBrowser.Server.Implementations/Sorting/VideoBitRateComparer.cs @@ -0,0 +1,49 @@ +using MediaBrowser.Controller.Entities; +using MediaBrowser.Controller.Sorting; +using MediaBrowser.Model.Entities; +using MediaBrowser.Model.Querying; +using System.Linq; + +namespace MediaBrowser.Server.Implementations.Sorting +{ + class VideoBitRateComparer : IBaseItemComparer + { + /// + /// Compares the specified x. + /// + /// The x. + /// The y. + /// System.Int32. + public int Compare(BaseItem x, BaseItem y) + { + return GetValue(x).CompareTo(GetValue(y)); + } + + private int GetValue(BaseItem item) + { + var video = item as IHasMediaStreams; + + if (video != null) + { + var videoStream = video.MediaStreams + .FirstOrDefault(i => i.Type == MediaStreamType.Video); + + if (videoStream != null) + { + return videoStream.BitRate ?? 0; + } + } + + return 0; + } + + /// + /// Gets the name. + /// + /// The name. + public string Name + { + get { return ItemSortBy.VideoBitRate; } + } + } +}