summaryrefslogtreecommitdiffstats
path: root/src/plugins/gstreamer/camerabin/camerabinvideoencoder.h
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@theqtcompany.com>2015-11-13 18:48:19 +0100
committerYoann Lopes <yoann.lopes@theqtcompany.com>2015-11-19 11:59:20 +0000
commit7c4574a6985671f14148ad8ee591aee4487f5d4d (patch)
tree5c1a748ba06c94d6866ecac4bd75409c5ed5f85d /src/plugins/gstreamer/camerabin/camerabinvideoencoder.h
parent4a2c597a0666452a39939339ebd6f87040952cd3 (diff)
Support compiling with GStreamer < 0.10.32 in the camerabin plugin.
The documented minimum GStreamer version for Qt Multimedia is 0.10.24, however, the camerabin plugin actually required 0.10.32 to compile successfully. The reason is mainly due to the GstEncodingProfiles API, which is used to implement the audio and video encoding settings controls. There's no hard requirement for that API anymore and the aforementioned controls simply don't do anything when the GStreamer version used to compile is older than 0.10.32. A few other GStreamer calls had to be ifdef'd or replaced in order to compile with 0.10.24. Note that this patch only makes sure it compiles with older versions, running the camerabin plugin with GStreamer < 0.10.32 is currently untested and it might not work as expected. Task-number: QTBUG-48914 Change-Id: I4ce8e932f24a33e919e29326729e12bbae561faf Reviewed-by: Christian Stromme <christian.stromme@theqtcompany.com>
Diffstat (limited to 'src/plugins/gstreamer/camerabin/camerabinvideoencoder.h')
-rw-r--r--src/plugins/gstreamer/camerabin/camerabinvideoencoder.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/gstreamer/camerabin/camerabinvideoencoder.h b/src/plugins/gstreamer/camerabin/camerabinvideoencoder.h
index 9eebf28b8..532376ac6 100644
--- a/src/plugins/gstreamer/camerabin/camerabinvideoencoder.h
+++ b/src/plugins/gstreamer/camerabin/camerabinvideoencoder.h
@@ -42,8 +42,11 @@
#include <gst/gst.h>
#include <gst/pbutils/pbutils.h>
+
+#ifdef HAVE_GST_ENCODING_PROFILES
#include <gst/pbutils/encoding-profile.h>
#include <private/qgstcodecsinfo_p.h>
+#endif
QT_BEGIN_NAMESPACE
@@ -74,7 +77,9 @@ public:
void setActualVideoSettings(const QVideoEncoderSettings&);
void resetActualSettings();
+#ifdef HAVE_GST_ENCODING_PROFILES
GstEncodingProfile *createProfile();
+#endif
void applySettings(GstElement *encoder);
@@ -84,7 +89,9 @@ Q_SIGNALS:
private:
CameraBinSession *m_session;
+#ifdef HAVE_GST_ENCODING_PROFILES
QGstCodecsInfo m_codecs;
+#endif
QVideoEncoderSettings m_actualVideoSettings;
QVideoEncoderSettings m_videoSettings;