make muxers handle options
[nihav.git] / nihav-commonfmt / src / muxers / avi.rs
index ac13cb231fbd51b456199f874050273303674c51..9b83296db938123f8609bbbc542a1c3fee720316 100644 (file)
@@ -288,6 +288,12 @@ impl<'a> MuxCore<'a> for AVIMuxer<'a> {
     }
 }
 
+impl<'a> NAOptionHandler for AVIMuxer<'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 AVIMuxerCreator {}
 
 impl MuxerCreator for AVIMuxerCreator {