introduce option handling for decoders
[nihav.git] / nihav-realmedia / src / codecs / ra144.rs
index abb7f38844ca523e50caeace605cfc19562f0ba4..31f2c01b9e9dec7c58952867bf8cd029b230adbe 100644 (file)
@@ -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<NAValue> { None }
+}
+
 pub fn get_decoder() -> Box<dyn NADecoder + Send> {
     Box::new(RA144Decoder::new())
 }