introduce option handling for decoders
[nihav.git] / nihav-indeo / src / codecs / indeo3.rs
index 2f9b16c991d5ec8c3179c41e6f1a0c4b35e374bf..224c3ecd62c9658c5912a3293970ac07f82083ee 100644 (file)
@@ -792,6 +792,12 @@ impl NADecoder for Indeo3Decoder {
     }
 }
 
+impl NAOptionHandler for Indeo3Decoder {
+    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(Indeo3Decoder::new())
 }