aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/CodecType.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-07-17 13:52:31 +0200
committerGitHub <noreply@github.com>2026-07-17 13:52:31 +0200
commit2bf15d95df33dde6fac0a9314f41aa2c8ba8bcad (patch)
tree46c2d72fd74220ed83b20914533450990fe9be3e /MediaBrowser.Model/Dlna/CodecType.cs
parentbe2db995862f515bd54672464e05188f8f7b867b (diff)
parentd96d1f111994104c7672e2f64f64a92902458f41 (diff)
Merge pull request #17340 from mbastian77/docs/dlna-model-xml-docs
Diffstat (limited to 'MediaBrowser.Model/Dlna/CodecType.cs')
-rw-r--r--MediaBrowser.Model/Dlna/CodecType.cs16
1 files changed, 14 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Dlna/CodecType.cs b/MediaBrowser.Model/Dlna/CodecType.cs
index c9f090e4cc..12730a76fa 100644
--- a/MediaBrowser.Model/Dlna/CodecType.cs
+++ b/MediaBrowser.Model/Dlna/CodecType.cs
@@ -1,11 +1,23 @@
-#pragma warning disable CS1591
-
namespace MediaBrowser.Model.Dlna
{
+ /// <summary>
+ /// The codec type of a codec profile.
+ /// </summary>
public enum CodecType
{
+ /// <summary>
+ /// The profile applies to a video codec.
+ /// </summary>
Video = 0,
+
+ /// <summary>
+ /// The profile applies to the audio codec of a video stream.
+ /// </summary>
VideoAudio = 1,
+
+ /// <summary>
+ /// The profile applies to an audio codec.
+ /// </summary>
Audio = 2
}
}