houzhongjian
2024-11-06 7412dd652c0ac48c5a17b5d9b61d5d2a0f686137
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.structure;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5 /**
6  * @author 251823
7  * @description 获取视频编码能力集入参
8  * @date 2022/07/20 13:52:07
9  */
10 public class NET_IN_VIDEO_ENCODE_CAPS extends NetSDKLib.SdkStructure {
11     /**
12      * 该结构体大小
13      */
14     public int dwSize;
15     /**
16      * 通道号
17      */
18     public int nChannel;
19     /**
20      * 组号
21      */
22     public int nGroup;
23     /**
24      * 码流类型,参考枚举{ @link CFG_EM_STREAM_TYPES } 
25      */
26     public int stStreamType;
27
28     public NET_IN_VIDEO_ENCODE_CAPS() {
29         this.dwSize = this.size();
30     }
31 }