aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Trickplay/ITrickplayManager.cs')
-rw-r--r--MediaBrowser.Controller/Trickplay/ITrickplayManager.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs
index bda794aa6..800317800 100644
--- a/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs
+++ b/MediaBrowser.Controller/Trickplay/ITrickplayManager.cs
@@ -46,8 +46,10 @@ public interface ITrickplayManager
/// <summary>
/// Gets the item ids of all items with trickplay info.
/// </summary>
+ /// <param name="limit">The limit of items to return.</param>
+ /// <param name="offset">The offset to start the query at.</param>
/// <returns>The list of item ids that have trickplay info.</returns>
- public Task<IReadOnlyList<Guid>> GetTrickplayItemsAsync();
+ Task<IReadOnlyList<TrickplayInfo>> GetTrickplayItemsAsync(int limit, int offset);
/// <summary>
/// Saves trickplay info.