Code review fixes.

This commit is contained in:
Alexander Smorkalov 2025-03-07 15:33:54 +03:00
parent fbffaa5276
commit 648424eaf2

View File

@ -412,6 +412,7 @@ public:
return (int)(bayer - (bayer_end - width)); return (int)(bayer - (bayer_end - width));
#else #else
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst); CV_UNUSED(width); CV_UNUSED(blue);
return 0; return 0;
#endif #endif
} }
@ -547,6 +548,8 @@ public:
return (int)(bayer - (bayer_end - width)); return (int)(bayer - (bayer_end - width));
#else #else
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst);
CV_UNUSED(width); CV_UNUSED(blue); CV_UNUSED(alpha);
return 0; return 0;
#endif #endif
} }
@ -657,6 +660,7 @@ public:
return int(bayer - (bayer_end - width)); return int(bayer - (bayer_end - width));
#else #else
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst); CV_UNUSED(width); CV_UNUSED(blue);
return 0; return 0;
#endif #endif
} }