introduce option handling for demuxers
[nihav.git] / nihav-game / src / demuxers / vmd.rs
index 70bf0fe15a69aa6400c54e75f60127b44239b1f9..c6da8f46d6810a0603d9543193f158652daaacc8 100644 (file)
@@ -185,6 +185,12 @@ impl<'a> DemuxCore<'a> for VMDDemuxer<'a> {
     }
 }
 
+impl<'a> NAOptionHandler for VMDDemuxer<'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> VMDDemuxer<'a> {
     fn new(io: &'a mut ByteReader<'a>) -> Self {
         Self {