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
package com.iailab.netsdk.lib.structure;
 
import com.iailab.netsdk.lib.NetSDKLib.NET_SPLIT_MODE;
import com.iailab.netsdk.lib.NetSDKLib.SdkStructure;
 
/**
 * 
 * @author 119178
 *
 */
public class NET_COMPOSE_PLAN_DETAIL_INFO  extends SdkStructure {
    /**
     * 预案名称, 用户自定义
     */
    public byte[]              szName=new byte[64];                 
    /**
     * 分割模式(参考NET_SPLIT_MODE)
     */
    public int                 emSplitMode;                            
    /**
     * 分割模式下的各子窗口有效个数
     */
    public int                 nChannelCombinationNum;              
    /**
     * 分割模式下的各子窗口显示内容; 
     */
    public int[]               nChannelCombination=new int[64];     
    /**
     * 输出音频通道个数
     */
    public int                 nAudioOutNum;                        
    /**
     * 输出音频通道信息
     */
    public int[]               nAudioOutChn=new int[4];             
    /**
     * 保留字节
     */
    public byte[]              bReserved=new byte[676];             
}