aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/IItemRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IItemRepository.cs')
-rw-r--r--MediaBrowser.Controller/Persistence/IItemRepository.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemRepository.cs b/MediaBrowser.Controller/Persistence/IItemRepository.cs
index 11eb4932c..2c52b2b45 100644
--- a/MediaBrowser.Controller/Persistence/IItemRepository.cs
+++ b/MediaBrowser.Controller/Persistence/IItemRepository.cs
@@ -62,27 +62,6 @@ namespace MediaBrowser.Controller.Persistence
void SaveChapters(Guid id, IReadOnlyList<ChapterInfo> chapters);
/// <summary>
- /// Get available trickplay resolutions and corresponding info.
- /// </summary>
- /// <param name="itemId">The item.</param>
- /// <returns>Map of width resolutions to trickplay tiles info.</returns>
- Dictionary<int, TrickplayTilesInfo> GetTilesResolutions(Guid itemId);
-
- /// <summary>
- /// Saves trickplay tiles info.
- /// </summary>
- /// <param name="itemId">The item.</param>
- /// <param name="tilesInfo">The trickplay tiles info.</param>
- void SaveTilesInfo(Guid itemId, TrickplayTilesInfo tilesInfo);
-
- /// <summary>
- /// Gets trickplay data for an item.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <returns>A map of media source id to a map of tile width to tile info.</returns>
- Dictionary<Guid, Dictionary<int, TrickplayTilesInfo>> GetTrickplayManifest(BaseItem item);
-
- /// <summary>
/// Gets the media streams.
/// </summary>
/// <param name="query">The query.</param>