From f22b29733f1408d4ed864d19f657319559593cf0 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 23 Mar 2025 18:19:54 +0100 Subject: [PATCH] avimux: handle raw video --- nihav-commonfmt/src/muxers/avi.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nihav-commonfmt/src/muxers/avi.rs b/nihav-commonfmt/src/muxers/avi.rs index b1b176a..1b32ad4 100644 --- a/nihav-commonfmt/src/muxers/avi.rs +++ b/nihav-commonfmt/src/muxers/avi.rs @@ -207,7 +207,9 @@ impl<'a> MuxCore<'a> for AVIMuxer<'a> { match strm.get_media_type() { StreamType::Video => { self.bw.write_buf(b"vids")?; - let fcc = find_avi_fourcc(strm.get_info().get_name()); + let fcc = if strm.get_info().get_name() == "rawvideo-ms" { + Some(*b"DIB ") + } else { find_avi_fourcc(strm.get_info().get_name()) }; if fcc.is_none() { return Err(MuxerError::UnsupportedFormat); } @@ -276,7 +278,9 @@ impl<'a> MuxCore<'a> for AVIMuxer<'a> { self.bw.write_u16le(1)?; self.bw.write_u16le(8)?; } - let fcc = find_avi_fourcc(strm.get_info().get_name()); + let fcc = if strm.get_info().get_name() == "rawvideo-ms" { + Some([0; 4]) + } else { find_avi_fourcc(strm.get_info().get_name()) }; if fcc.is_none() { return Err(MuxerError::UnsupportedFormat); } -- 2.39.5