app-starlock/lib/talk/call/iFrameInfo.dart
2024-05-18 09:37:50 +08:00

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 = [];
}
}