app-starlock/lib/talk/call/iFrameInfo.dart

21 lines
333 B
Dart
Raw Normal View History

2023-12-11 10:43:41 +08:00
class IframeInfo {
int iframeIndex = 0;
2023-12-11 10:43:41 +08:00
int iframeTime = 0;
int bagNum = 0;
int bagReceive = 1;
2023-12-11 10:43:41 +08:00
bool isFull = false;
int cur_len = 0;
int bb_len = 0;
List<int>? bb;
2023-12-11 10:43:41 +08:00
int codecMode = 0;
IframeInfo() {
iframeIndex = 0;
2023-12-11 10:43:41 +08:00
bagNum = 0;
bagReceive = 0;
isFull = false;
cur_len = 0;
bb = [];
2023-12-11 10:43:41 +08:00
}
}