aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authormarkus <lomion@aon.at>2022-10-01 08:53:54 -0600
committerCody Robibero <cody@robibe.ro>2022-10-01 08:53:54 -0600
commit0a1563455063abbd4560438b203b0e2b0e8a4430 (patch)
treea4f53a2c12bb7deeb094cabf0901a6d1768b3a5e /MediaBrowser.Model/Entities
parent55b0ebbbf300421479d2c0dcf6be45e667a8ac9e (diff)
Streams with CodecType "data" (like "epg" streams in DVB
recordings) get ignored. This results in wrong stream specifiers for all subsequent streams. This fix correctly handles "data" streams without any further processing.
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/MediaStreamType.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStreamType.cs b/MediaBrowser.Model/Entities/MediaStreamType.cs
index e09aaf6d0..83751a6a7 100644
--- a/MediaBrowser.Model/Entities/MediaStreamType.cs
+++ b/MediaBrowser.Model/Entities/MediaStreamType.cs
@@ -23,6 +23,11 @@ namespace MediaBrowser.Model.Entities
/// <summary>
/// The embedded image.
/// </summary>
- EmbeddedImage
+ EmbeddedImage,
+
+ /// <summary>
+ /// The data.
+ /// </summary>
+ Data
}
}