toCmafCodecSpecification method
Implementation
CmafCodecSpecification toCmafCodecSpecification() {
switch (this) {
case 'RFC_6381':
return CmafCodecSpecification.rfc_6381;
case 'RFC_4281':
return CmafCodecSpecification.rfc_4281;
}
throw Exception('$this is not known in enum CmafCodecSpecification');
}