introduce option handling for decoders
[nihav.git] / nihav-indeo / src / codecs / intel263.rs
index a1a0ace6c1c5f94f7f22e395eca6d68973aa303e..e74f684c0a4506b4eeb5f055bb9b5a69f45f4cc7 100644 (file)
@@ -732,6 +732,12 @@ impl NADecoder for Intel263Decoder {
     }
 }
 
+impl NAOptionHandler for Intel263Decoder {
+    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(Intel263Decoder::new())