getOpenBFrame method
获取视频硬编模式下是否开启B帧
returns 是否开启B帧 默认:false
Implementation
Future<bool> getOpenBFrame() async {
String strV = await AlivcLivePusherConfig.methodChannel
.invokeMethod('getOpenBFrame', _wrap());
int intV = int.parse(strV);
return intV == 1 ? true : false;
}