libcamera: Use Size::isNull()

Use the new Size::isNull() function through the code base to replace
manual checks. While the new code isn't equivalent, as isNull() checks
that both width and height are zero, it catches the same conditions in
practice.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Umang Jain <email@uajain.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2020-06-26 05:12:28 +03:00
parent 61f4296ac7
commit b5f6a2ce2f
3 changed files with 4 additions and 4 deletions

View file

@ -67,7 +67,7 @@ int FormatHandlingTest::run()
return TestFail;
}
if (format.size.width == 0 || format.size.height == 0) {
if (format.size.isNull()) {
cerr << "Failed to update image format" << endl;
return TestFail;
}