remove verbose parameter that is now manage though log4cpp level

This commit is contained in:
Michel Promonet 2015-03-14 17:04:33 +01:00
parent 0044fcd195
commit 1260ac67c5

View File

@ -238,7 +238,7 @@ int main(int argc, char** argv)
// Init capture
LOG(NOTICE) << "Create V4L2 Source..." << dev_name;
V4L2DeviceParameters param(dev_name,format,width,height,fps);
V4L2DeviceParameters param(dev_name,format,width,height,fps, verbose);
V4l2Capture* videoCapture = createVideoCapure(param, useMmap);
if (videoCapture)
{