Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.structure;
H 2
3 import com.netsdk.lib.NetSDKLib;
4
5 /**
6  * 录像文件信息
7  *
8  * @author 47040
9  * @since Created at 2021/5/31 15:47
10  */
11 public class LPNET_RECORDFILE_INFO extends NetSDKLib.SdkStructure {
12     /**
13      * 通道号
14      */
15     public int ch;
16     /**
17      * 文件名
18      */
19     public byte[] filename = new byte[124];
20     /**
21      * 文件总帧数
22      */
23     public int framenum;
24     /**
25      * 文件长度, 单位为 Kbyte
26      */
27     public int size;
28     /**
29      * 开始时间
30      */
31     public NET_TIME starttime;
32     /**
33      * 结束时间
34      */
35     public NET_TIME endtime;
36     /**
37      * 磁盘号(区分网络录像和本地录像的类型,0-127表示本地录像,其中64表示光盘1,128表示网络录像)
38      */
39     public int driveno;
40     /**
41      * 起始簇号
42      */
43     public int startcluster;
44     /**
45      * 录象文件类型  0:普通录象;1:报警录象;2:移动检测;3:卡号录象;4:图片, 5: 智能录像, 19: POS录像, 255:所有录像
46      */
47     public byte nRecordFileType;
48     /**
49      * 0:普通录像 1:重要录像
50      */
51     public byte bImportantRecID;
52     /**
53      * 文件定位索引(nRecordFileType==4<图片>时,bImportantRecID<<8 +bHint ,组成图片定位索引 )
54      */
55     public byte bHint;
56     /**
57      * 0-主码流录像 1-辅码1流录像 2-辅码流2 3-辅码流3录像
58      */
59     public byte bRecType;
60 }