toM2tsSegmentationMarkers method

M2tsSegmentationMarkers toM2tsSegmentationMarkers()

Implementation

M2tsSegmentationMarkers toM2tsSegmentationMarkers() {
  switch (this) {
    case 'EBP':
      return M2tsSegmentationMarkers.ebp;
    case 'EBP_LEGACY':
      return M2tsSegmentationMarkers.ebpLegacy;
    case 'NONE':
      return M2tsSegmentationMarkers.none;
    case 'PSI_SEGSTART':
      return M2tsSegmentationMarkers.psiSegstart;
    case 'RAI_ADAPT':
      return M2tsSegmentationMarkers.raiAdapt;
    case 'RAI_SEGSTART':
      return M2tsSegmentationMarkers.raiSegstart;
  }
  throw Exception('$this is not known in enum M2tsSegmentationMarkers');
}