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