videoparams: add interlacing to == operator

This commit is contained in:
itsmattkc
2022-10-10 23:24:19 -07:00
parent 92bf60cc72
commit 01874ba786
+1
View File
@@ -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()