mirror of
https://github.com/opencv/opencv.git
synced 2025-06-23 04:01:31 +08:00
Code review fixes.
This commit is contained in:
parent
fbffaa5276
commit
648424eaf2
@ -412,6 +412,7 @@ public:
|
||||
|
||||
return (int)(bayer - (bayer_end - width));
|
||||
#else
|
||||
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst); CV_UNUSED(width); CV_UNUSED(blue);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
@ -547,6 +548,8 @@ public:
|
||||
|
||||
return (int)(bayer - (bayer_end - width));
|
||||
#else
|
||||
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst);
|
||||
CV_UNUSED(width); CV_UNUSED(blue); CV_UNUSED(alpha);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
@ -657,6 +660,7 @@ public:
|
||||
|
||||
return int(bayer - (bayer_end - width));
|
||||
#else
|
||||
CV_UNUSED(bayer); CV_UNUSED(bayer_step); CV_UNUSED(dst); CV_UNUSED(width); CV_UNUSED(blue);
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user