From ba875f66b8bb4b696f33223638edb2a9e7ba0996 Mon Sep 17 00:00:00 2001 From: VaL Doroshchuk Date: Fri, 2 Aug 2019 14:44:48 +0200 Subject: CameraBinV4LImageProcessing: Show warning only if the camera is loaded Change-Id: Ie1c77fa373d37979e69c08ab4a959c18efc9599e Fixes: QTBUG-76135 Reviewed-by: Timur Pocheptsov --- src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/plugins/gstreamer') diff --git a/src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp b/src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp index 6ca1dbe94..46b9e4616 100644 --- a/src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp +++ b/src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp @@ -124,7 +124,8 @@ QVariant CameraBinV4LImageProcessing::parameter( QMap::const_iterator sourceValueInfo = m_parametersInfo.constFind(parameter); if (sourceValueInfo == m_parametersInfo.constEnd()) { - qWarning() << "Unable to get the parameter value: the parameter is not supported."; + if (!m_parametersInfo.empty()) + qWarning() << "Unable to get the unsupported parameter:" << parameter; return QVariant(); } @@ -178,7 +179,8 @@ void CameraBinV4LImageProcessing::setParameter( QMap::const_iterator sourceValueInfo = m_parametersInfo.constFind(parameter); if (sourceValueInfo == m_parametersInfo.constEnd()) { - qWarning() << "Unable to set the parameter value: the parameter is not supported."; + if (!m_parametersInfo.empty()) + qWarning() << "Unable to set the unsupported parameter:" << parameter; return; } -- cgit v1.2.3