introduce option handling for decoders
[nihav.git] / nihav-duck / src / codecs / vp3.rs
index c33f97b7aca2c3d99b2ebdf0a7b6efa846beef9f..e456cfa9fb55f656c4504a11f17633ad5230475d 100644 (file)
@@ -1864,6 +1864,12 @@ impl NADecoder for VP34Decoder {
     }
 }
 
+impl NAOptionHandler for VP34Decoder {
+    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_vp3() -> Box<NADecoder + Send> {
     Box::new(VP34Decoder::new(3))
 }