introduce option handling for demuxers
[nihav.git] / nihav-commonfmt / src / demuxers / avi.rs
index 4ea40673aa40c2be22249d453ea7bc8552857278..cf1b5bfa5fb1b7ebf4f5aa1c80e53faac5244839 100644 (file)
@@ -154,6 +154,12 @@ impl<'a> DemuxCore<'a> for AVIDemuxer<'a> {
     }
 }
 
+impl<'a> NAOptionHandler for AVIDemuxer<'a> {
+    fn get_supported_options(&self) -> &[NAOptionDefinition] { &[] }
+    fn set_options(&mut self, _options: &[NAOption]) { }
+    fn query_option_value(&self, _name: &str) -> Option<NAValue> { None }
+}
+
 impl<'a> AVIDemuxer<'a> {
     fn new(io: &'a mut ByteReader<'a>) -> Self {
         AVIDemuxer {