introduce option handling for decoders
[nihav.git] / nihav-indeo / src / codecs / indeo2.rs
index 14d3c0ae8a45329e299f6a32c7294bc80446b73a..38079cec0e6ddb7c3557de02fff01660b5941540 100644 (file)
@@ -365,6 +365,12 @@ impl NADecoder for Indeo2Decoder {
     }
 }
 
+impl NAOptionHandler for Indeo2Decoder {
+    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(Indeo2Decoder::new())
 }