瀏覽代碼

Complete the output

Jimmy 2 年之前
父節點
當前提交
d7d5f91de4

+ 3 - 0
demo/fis.media/Library/OutPut/VideoFrameOutput/Channelbase.cs

@@ -21,6 +21,9 @@ namespace fis.media.Library.OutPut.VideoFrameOutput
         /// </summary>
         public abstract string ChannelDisplayName { get; set; }
 
+        /// <summary>
+        /// 频道Id
+        /// </summary>
         public string Id { get; set; }
 
         /// <summary>

+ 2 - 1
demo/fis.media/Library/OutPut/VideoFrameOutput/LocalCameraChannel.cs

@@ -6,7 +6,8 @@ using System.Threading.Tasks;
 
 namespace fis.media.Library.OutPut.VideoFrameOutput
 {
-    public class LocalCameraChannel
+    public class LocalCameraChannel : Channelbase
     {
+        public override string ChannelDisplayName { get; set ; }
     }
 }

+ 2 - 1
demo/fis.media/Library/OutPut/VideoFrameOutput/MainChannel.cs

@@ -6,7 +6,8 @@ using System.Threading.Tasks;
 
 namespace fis.media.Library.OutPut.VideoFrameOutput
 {
-    internal class MainChannel
+    internal class MainChannel : Channelbase
     {
+        public override string ChannelDisplayName { get; set; }
     }
 }

+ 2 - 1
demo/fis.media/Library/OutPut/VideoFrameOutput/SideChannelOne.cs

@@ -6,7 +6,8 @@ using System.Threading.Tasks;
 
 namespace fis.media.Library.OutPut.VideoFrameOutput
 {
-    internal class SideChannelOne
+    internal class SideChannelOne : Channelbase
     {
+        public override string ChannelDisplayName { get; set ; }
     }
 }

+ 2 - 1
demo/fis.media/Library/OutPut/VideoFrameOutput/SideChannelTwo.cs

@@ -6,7 +6,8 @@ using System.Threading.Tasks;
 
 namespace fis.media.Library.OutPut.VideoFrameOutput
 {
-    internal class SideChannelTwo
+    internal class SideChannelTwo : Channelbase
     {
+        public override string ChannelDisplayName { get; set; }
     }
 }