toH264InterlaceMode method

H264InterlaceMode toH264InterlaceMode()

Implementation

H264InterlaceMode toH264InterlaceMode() {
  switch (this) {
    case 'PROGRESSIVE':
      return H264InterlaceMode.progressive;
    case 'TOP_FIELD':
      return H264InterlaceMode.topField;
    case 'BOTTOM_FIELD':
      return H264InterlaceMode.bottomField;
    case 'FOLLOW_TOP_FIELD':
      return H264InterlaceMode.followTopField;
    case 'FOLLOW_BOTTOM_FIELD':
      return H264InterlaceMode.followBottomField;
  }
  throw Exception('$this is not known in enum H264InterlaceMode');
}