aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs
diff options
context:
space:
mode:
authorTheMelmacian <76712303+TheMelmacian@users.noreply.github.com>2026-05-12 01:47:07 +0200
committerTheMelmacian <76712303+TheMelmacian@users.noreply.github.com>2026-05-12 02:12:14 +0200
commit39049a726e1a88e8acf1d8cc5c217bc8d86be9ae (patch)
tree5239b36e5511781bbb4abea70054b3c7600bbb92 /MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs
parent5701cdce684dbbcdfdd5cc4c79586fe623e9f2d0 (diff)
move language filters from QueryFiltersLegacy to QueryFilters
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs')
-rw-r--r--MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs b/MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs
index 665129eafd..de04ff021d 100644
--- a/MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs
+++ b/MediaBrowser.Controller/Persistence/IMediaStreamRepository.cs
@@ -22,6 +22,13 @@ public interface IMediaStreamRepository
IReadOnlyList<MediaStream> GetMediaStreams(MediaStreamQuery filter);
/// <summary>
+ /// Gets all language codes of the provided stream type.
+ /// </summary>
+ /// <param name="mediaStreamType">The type of the media stream.</param>
+ /// <returns>IEnumerable{string}.</returns>
+ IReadOnlyList<string> GetMediaStreamLanguages(MediaStreamType mediaStreamType);
+
+ /// <summary>
/// Saves the media streams.
/// </summary>
/// <param name="id">The identifier.</param>