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