[declarative] Add missing enums to declarative camera MER#1976

This commit is contained in:
Adam Pigg
2019-04-02 20:36:24 +01:00
parent 63e071957b
commit 80f7ecabd3
3 changed files with 10 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ BuildRequires: pkgconfig(gstreamer-audio-1.0)
BuildRequires: pkgconfig(gstreamer-video-1.0) BuildRequires: pkgconfig(gstreamer-video-1.0)
BuildRequires: pkgconfig(gstreamer-pbutils-1.0) BuildRequires: pkgconfig(gstreamer-pbutils-1.0)
BuildRequires: pkgconfig(gstreamer-app-1.0) BuildRequires: pkgconfig(gstreamer-app-1.0)
BuildRequires: pkgconfig(gstreamer-plugins-bad-1.0) BuildRequires: pkgconfig(gstreamer-plugins-bad-1.0) >= 1.14.1+git3.1
BuildRequires: pkgconfig(libresourceqt5) >= 1.29 BuildRequires: pkgconfig(libresourceqt5) >= 1.29
BuildRequires: pkgconfig(Qt5QuickTest) BuildRequires: pkgconfig(Qt5QuickTest)
@@ -86,6 +86,7 @@ Summary: Qt Multimedia - GStreamer camerabin video capture media service
Group: Qt/Qt Group: Qt/Qt
Requires: %{name} = %{version}-%{release} Requires: %{name} = %{version}-%{release}
Requires: qt5-qtmultimedia-gsttools = %{version}-%{release} Requires: qt5-qtmultimedia-gsttools = %{version}-%{release}
Requires: gstreamer1.0-droid >= 20181213.0
%description plugin-mediaservice-gstcamerabin %description plugin-mediaservice-gstcamerabin
This package contains the GStreamer camerabin video capture plugin for QtMultimedia This package contains the GStreamer camerabin video capture plugin for QtMultimedia

View File

@@ -96,6 +96,10 @@ public:
ExposureParty = QCameraExposure::ExposureParty, ExposureParty = QCameraExposure::ExposureParty,
ExposureCandlelight = QCameraExposure::ExposureCandlelight, ExposureCandlelight = QCameraExposure::ExposureCandlelight,
ExposureBarcode = QCameraExposure::ExposureBarcode, ExposureBarcode = QCameraExposure::ExposureBarcode,
ExposureFlowers = QCameraExposure::ExposureFlowers,
ExposureAR = QCameraExposure::ExposureAR,
ExposureHDR = QCameraExposure::ExposureHDR,
ExposureCloseup = QCameraExposure::ExposureCloseup,
ExposureModeVendor = QCameraExposure::ExposureModeVendor ExposureModeVendor = QCameraExposure::ExposureModeVendor
}; };

View File

@@ -76,6 +76,7 @@ public:
WhiteBalanceFluorescent = QCameraImageProcessing::WhiteBalanceFluorescent, WhiteBalanceFluorescent = QCameraImageProcessing::WhiteBalanceFluorescent,
WhiteBalanceFlash = QCameraImageProcessing::WhiteBalanceFlash, WhiteBalanceFlash = QCameraImageProcessing::WhiteBalanceFlash,
WhiteBalanceSunset = QCameraImageProcessing::WhiteBalanceSunset, WhiteBalanceSunset = QCameraImageProcessing::WhiteBalanceSunset,
WhiteBalanceWarmFluorescent = QCameraImageProcessing::WhiteBalanceWarmFluorescent,
WhiteBalanceVendor = QCameraImageProcessing::WhiteBalanceVendor WhiteBalanceVendor = QCameraImageProcessing::WhiteBalanceVendor
}; };
@@ -89,6 +90,9 @@ public:
ColorFilterWhiteboard = QCameraImageProcessing::ColorFilterWhiteboard, ColorFilterWhiteboard = QCameraImageProcessing::ColorFilterWhiteboard,
ColorFilterBlackboard = QCameraImageProcessing::ColorFilterBlackboard, ColorFilterBlackboard = QCameraImageProcessing::ColorFilterBlackboard,
ColorFilterAqua = QCameraImageProcessing::ColorFilterAqua, ColorFilterAqua = QCameraImageProcessing::ColorFilterAqua,
ColorFilterEmboss = QCameraImageProcessing::ColorFilterEmboss,
ColorFilterSketch = QCameraImageProcessing::ColorFilterSketch,
ColorFilterNeon = QCameraImageProcessing::ColorFilterNeon,
ColorFilterVendor = QCameraImageProcessing::ColorFilterVendor ColorFilterVendor = QCameraImageProcessing::ColorFilterVendor
}; };