23 lines
362 B
Dart
23 lines
362 B
Dart
import 'dart:typed_data';
|
|
|
|
class IframeInfo {
|
|
int iframeIndex = -1;
|
|
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 = -1;
|
|
bagNum = 0;
|
|
bagReceive = 0;
|
|
isFull = false;
|
|
cur_len = 0;
|
|
bb = [];
|
|
}
|
|
}
|