summaryrefslogtreecommitdiffstats
path: root/src/plugins/gstreamer
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-08-13 03:01:49 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-08-13 03:01:49 +0200
commit97213e13cd7f2ccae1d5215bbb503f8f59c0ad22 (patch)
treef5586f079726cf909b48bd9e55fa1b5e18381801 /src/plugins/gstreamer
parent2da4e162516830f4976f30c789a3fd9511dde932 (diff)
parent075fa6203856bdf9f58e737ee2f5d2a843a85cad (diff)
Merge remote-tracking branch 'origin/5.12' into 5.13
Diffstat (limited to 'src/plugins/gstreamer')
-rw-r--r--src/plugins/gstreamer/camerabin/camerabinv4limageprocessing.cpp6
1 files changed, 4 insertions, 2 deletions
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<ProcessingParameter, SourceParameterValueInfo>::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<ProcessingParameter, SourceParameterValueInfo>::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;
}