浏览代码

Document SubtitleDeliveryMethod

MrTimscampi 4 年之前
父节点
当前提交
22efb69e92
共有 1 个文件被更改,包括 7 次插入4 次删除
  1. 7 4
      MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs

+ 7 - 4
MediaBrowser.Model/Dlna/SubtitleDeliveryMethod.cs

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