toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case H264EntropyEncoding.cabac:
      return 'CABAC';
    case H264EntropyEncoding.cavlc:
      return 'CAVLC';
  }
}