introduce option handling for decoders
[nihav.git] / nihav-realmedia / src / codecs / ra288.rs
index dc4add366cf56b6163569786cc979d978d1142f8..1d983313b6b56520eb42abe849872d304485a1e7 100644 (file)
@@ -201,6 +201,12 @@ impl NADecoder for RA288Decoder {
     }
 }
 
+impl NAOptionHandler for RA288Decoder {
+    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(RA288Decoder::new())
 }