getOutputFormat method

AudioFormat getOutputFormat()

Implementation

AudioFormat getOutputFormat() {
  if (_engine == ffi.nullptr) return AudioFormat.f32;
  final index = _getOutputFormat(_engine);
  return AudioFormat.values[index.clamp(0, AudioFormat.values.length - 1)];
}