fix record info size overflow for 2G
This commit is contained in:
parent
18c5bb3670
commit
03a451caa8
|
|
@ -32,7 +32,7 @@ class RecordInfo: public MediaTuple {
|
||||||
public:
|
public:
|
||||||
time_t start_time; // GMT 标准时间,单位秒
|
time_t start_time; // GMT 标准时间,单位秒
|
||||||
float time_len; // 录像长度,单位秒
|
float time_len; // 录像长度,单位秒
|
||||||
off_t file_size; // 文件大小,单位 BYTE
|
uint64_t file_size; // 文件大小,单位 BYTE
|
||||||
std::string file_path; // 文件路径
|
std::string file_path; // 文件路径
|
||||||
std::string file_name; // 文件名称
|
std::string file_name; // 文件名称
|
||||||
std::string folder; // 文件夹路径
|
std::string folder; // 文件夹路径
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue