21 lines
333 B
Dart
Executable File
21 lines
333 B
Dart
Executable File
class IframeInfo {
|
|
int iframeIndex = 0;
|
|
int iframeTime = 0;
|
|
int bagNum = 0;
|
|
int bagReceive = 1;
|
|
bool isFull = false;
|
|
int cur_len = 0;
|
|
int bb_len = 0;
|
|
List<int>? bb;
|
|
int codecMode = 0;
|
|
|
|
IframeInfo() {
|
|
iframeIndex = 0;
|
|
bagNum = 0;
|
|
bagReceive = 0;
|
|
isFull = false;
|
|
cur_len = 0;
|
|
bb = [];
|
|
}
|
|
}
|