make muxers handle options
[nihav.git] / nihav-commonfmt / src / muxers / wav.rs
index a11bb2a510eb6406d5cb8962ea5693495e49514f..351231708531d3dac705b6c0cdd8627ac61484ca 100644 (file)
@@ -98,6 +98,12 @@ impl<'a> MuxCore<'a> for WAVMuxer<'a> {
     }
 }
 
+impl<'a> NAOptionHandler for WAVMuxer<'a> {
+    fn get_supported_options(&self) -> &[NAOptionDefinition] { &[] }
+    fn set_options(&mut self, _options: &[NAOption]) { }
+    fn query_option_value(&self, _name: &str) -> Option<NAValue> { None }
+}
+
 pub struct WAVMuxerCreator {}
 
 impl MuxerCreator for WAVMuxerCreator {