X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-realmedia%2Fsrc%2Fcodecs%2Fra144.rs;h=31f2c01b9e9dec7c58952867bf8cd029b230adbe;hb=fa57381ec2a3b8c441aa1388492b9ca037cfcf78;hp=abb7f38844ca523e50caeace605cfc19562f0ba4;hpb=ce742854b2912b880fb3d3e330042b049dac8504;p=nihav.git diff --git a/nihav-realmedia/src/codecs/ra144.rs b/nihav-realmedia/src/codecs/ra144.rs index abb7f38..31f2c01 100644 --- a/nihav-realmedia/src/codecs/ra144.rs +++ b/nihav-realmedia/src/codecs/ra144.rs @@ -311,6 +311,12 @@ impl NADecoder for RA144Decoder { } } +impl NAOptionHandler for RA144Decoder { + fn get_supported_options(&self) -> &[NAOptionDefinition] { &[] } + fn set_options(&mut self, _options: &[NAOption]) { } + fn query_option_value(&self, _name: &str) -> Option { None } +} + pub fn get_decoder() -> Box { Box::new(RA144Decoder::new()) }