toH264SubGopLength method

H264SubGopLength toH264SubGopLength()

Implementation

H264SubGopLength toH264SubGopLength() {
  switch (this) {
    case 'DYNAMIC':
      return H264SubGopLength.dynamic;
    case 'FIXED':
      return H264SubGopLength.fixed;
  }
  throw Exception('$this is not known in enum H264SubGopLength');
}