From 01874ba786dd2200c9d6a8e65be161de934ee51b Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Mon, 10 Oct 2022 23:24:19 -0700 Subject: [PATCH] videoparams: add interlacing to == operator --- app/render/videoparams.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/render/videoparams.cpp b/app/render/videoparams.cpp index 58442bcd3..77d785d24 100644 --- a/app/render/videoparams.cpp +++ b/app/render/videoparams.cpp @@ -164,6 +164,7 @@ bool VideoParams::operator==(const VideoParams &rhs) const return width() == rhs.width() && height() == rhs.height() && depth() == rhs.depth() + && interlacing() == rhs.interlacing() && time_base() == rhs.time_base() && format() == rhs.format() && pixel_aspect_ratio() == rhs.pixel_aspect_ratio()