From: Kostya Shishkov Date: Fri, 10 Jul 2020 15:46:23 +0000 (+0200) Subject: cinepakenc: ask for non-flipped image during negotiation X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=4abaf99e414dd4dd270e2703ee5e799a61aada88 cinepakenc: ask for non-flipped image during negotiation --- diff --git a/nihav-commonfmt/src/codecs/cinepakenc.rs b/nihav-commonfmt/src/codecs/cinepakenc.rs index 95994ee..a7cf8c0 100644 --- a/nihav-commonfmt/src/codecs/cinepakenc.rs +++ b/nihav-commonfmt/src/codecs/cinepakenc.rs @@ -920,7 +920,7 @@ impl NAEncoder for CinepakEncoder { NACodecTypeInfo::Audio(_) => Err(EncoderError::FormatError), NACodecTypeInfo::Video(vinfo) => { let pix_fmt = if vinfo.format == GRAY_FORMAT { GRAY_FORMAT } else { YUV420_FORMAT }; - let outinfo = NAVideoInfo::new((vinfo.width + 3) & !3, (vinfo.height + 3) & !3, true, pix_fmt); + let outinfo = NAVideoInfo::new((vinfo.width + 3) & !3, (vinfo.height + 3) & !3, false, pix_fmt); let mut ofmt = *encinfo; ofmt.format = NACodecTypeInfo::Video(outinfo); Ok(ofmt)