houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3
4 import com.iailab.netsdk.lib.NetSDKLib;
5
6 /** 
7 * @author 291189
8 * @description  RTSP的配置 
9 * @date 2022/12/15 16:52:19
10 */
11 public class CFG_RTSP_INFO_IN extends NetSDKLib.SdkStructure {
12
13 public            int                    nStructSize;
14 /** 
15 整个功能是否使能
16 */
17 public            int                    bEnable;
18 /** 
19 RTSP服务端口
20 */
21 public            int                    nPort;
22 /** 
23 RTP起始端口
24 */
25 public            int                    nRtpStartPort;
26 /** 
27 RTP结束端口
28 */
29 public            int                    nRtpEndPort;
30 /** 
31 RtspOverHttp使能
32 */
33 public            int                    bHttpEnable;
34 /** 
35 RtspOverHttp端口
36 */
37 public            int                    nHttpPort;
38
39     @Override
40     public String toString() {
41         return "CFG_RTSP_INFO_IN{" +
42                 "nStructSize=" + nStructSize +
43                 ", bEnable=" + bEnable +
44                 ", nPort=" + nPort +
45                 ", nRtpStartPort=" + nRtpStartPort +
46                 ", nRtpEndPort=" + nRtpEndPort +
47                 ", bHttpEnable=" + bHttpEnable +
48                 ", nHttpPort=" + nHttpPort +
49                 '}';
50     }
51
52     public CFG_RTSP_INFO_IN(){
53         this.nStructSize=size();
54 }
55 }