introduce option handling for demuxers
[nihav.git] / nihav-commonfmt / src / demuxers / mov.rs
index b7aecd52af18ed0e3c9a50adea471391466d117f..29c512de3ae0039c9f5169d11fd2d0757f3c05e7 100644 (file)
@@ -829,6 +829,12 @@ impl<'a> DemuxCore<'a> for MOVDemuxer<'a> {
     }
 }
 
+impl<'a> NAOptionHandler for MOVDemuxer<'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> MOVDemuxer<'a> {
     fn new(io: &'a mut ByteReader<'a>) -> Self {
         MOVDemuxer {