diff --git a/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs b/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
index e7fe8d6af2..9b39f9e11a 100644
--- a/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
+++ b/MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs
@@ -2,25 +2,28 @@
namespace MediaBrowser.Model.Dlna
{
+ ///
+ /// Delivery method to use during playback of a specific subtitle format.
+ ///
public enum SubtitleDeliveryMethod
{
///
- /// The encode.
+ /// Burn the subtitles in the video track.
///
Encode = 0,
///
- /// The embed.
+ /// Embed the subtitles in the file or stream.
///
Embed = 1,
///
- /// The external.
+ /// Serve the subtitles as an external file.
///
External = 2,
///
- /// The HLS.
+ /// Serve the subtitles as a separate HLS stream.
///
Hls = 3
}