introduce option handling for decoders
[nihav.git] / nihav-indeo / src / codecs / indeo4.rs
index c035eec487806dc42d83e5d6eb2c5a65ad91fbcf..879f850f27eed70df639992242a073eb0765a63d 100644 (file)
@@ -461,6 +461,12 @@ impl NADecoder for Indeo4Decoder {
     }
 }
 
+impl NAOptionHandler for Indeo4Decoder {
+    fn get_supported_options(&self) -> &[NAOptionDefinition] { &[] }
+    fn set_options(&mut self, _options: &[NAOption]) { }
+    fn query_option_value(&self, _name: &str) -> Option<NAValue> { None }
+}
+
 const INDEO4_PICTURE_SIZE_TAB: [[usize; 2]; 7] = [
     [640, 480], [320, 240], [160, 120], [704, 480], [352, 240], [352, 288], [176, 144]
 ];