introduce option handling for decoders
[nihav.git] / nihav-realmedia / src / codecs / ralf.rs
index dd8b698d3f1bf154ee3ac9406b79bce45125cee9..56af9671fed5c4eb9a456cec36166bec3b236fe7 100644 (file)
@@ -471,6 +471,12 @@ impl NADecoder for RALFDecoder {
     }
 }
 
+impl NAOptionHandler for RALFDecoder {
+    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(RALFDecoder::new())
 }