X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-ms%2Fsrc%2Fcodecs%2Fmsvideo1.rs;h=42a9a2ee66eb5cba47382960bd46aec910948838;hb=dab59886687a0c360a38743b9dc210e8ba269729;hp=b7bea58439286ed50102b0787067e0e7d136c58d;hpb=4abcd84283e5d7168cc495e41cbc443710bfbd5e;p=nihav.git diff --git a/nihav-ms/src/codecs/msvideo1.rs b/nihav-ms/src/codecs/msvideo1.rs index b7bea58..42a9a2e 100644 --- a/nihav-ms/src/codecs/msvideo1.rs +++ b/nihav-ms/src/codecs/msvideo1.rs @@ -192,7 +192,6 @@ impl Video1Decoder { impl NADecoder for Video1Decoder { fn init(&mut self, _supp: &mut NADecoderSupport, info: NACodecInfoRef) -> DecoderResult<()> { if let NACodecTypeInfo::Video(vinfo) = info.get_properties() { -println!("fmt {}", vinfo.get_format()); self.is_16bit = !vinfo.get_format().palette; let fmt = if !self.is_16bit { PAL8_FORMAT } else { RGB555_FORMAT }; self.width = vinfo.get_width();