toH264EntropyEncoding method

H264EntropyEncoding toH264EntropyEncoding()

Implementation

H264EntropyEncoding toH264EntropyEncoding() {
  switch (this) {
    case 'CABAC':
      return H264EntropyEncoding.cabac;
    case 'CAVLC':
      return H264EntropyEncoding.cavlc;
  }
  throw Exception('$this is not known in enum H264EntropyEncoding');
}