toInputCodec method

InputCodec toInputCodec()

Implementation

InputCodec toInputCodec() {
  switch (this) {
    case 'MPEG2':
      return InputCodec.mpeg2;
    case 'AVC':
      return InputCodec.avc;
    case 'HEVC':
      return InputCodec.hevc;
  }
  throw Exception('$this is not known in enum InputCodec');
}