From a5fbcf059e14eb7ac66562bb51fecbfa0f330ad8 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Thu, 13 May 2021 16:27:17 +1000 Subject: [PATCH] videoparams: compare depth Seems like a good thing to do --- app/render/videoparams.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/render/videoparams.cpp b/app/render/videoparams.cpp index 04dff26b0..dbdc47e13 100644 --- a/app/render/videoparams.cpp +++ b/app/render/videoparams.cpp @@ -160,6 +160,7 @@ bool VideoParams::operator==(const VideoParams &rhs) const { return width() == rhs.width() && height() == rhs.height() + && depth() == rhs.depth() && time_base() == rhs.time_base() && format() == rhs.format() && pixel_aspect_ratio() == rhs.pixel_aspect_ratio()