summaryrefslogtreecommitdiffstats
path: root/src/plugins/gstreamer/camerabin/camerabinrecorder.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2016-12-13 13:53:55 +0300
committerYoann Lopes <yoann.lopes@qt.io>2016-12-13 13:40:17 +0000
commit0bae6b50dd1b654a218fe687ba6498f12e049337 (patch)
tree0dc6b5408ebaf29de7cc6935b5d19fe6f8bc2d42 /src/plugins/gstreamer/camerabin/camerabinrecorder.h
parent32e35a8839085d88ddbf289ba2669c6745e9a04a (diff)
GStreamer camerabin: Add missing override and remove redundant virtual
Change-Id: I17d716e366cd74226ac858669b10fa0ed28a2fad Reviewed-by: Yoann Lopes <yoann.lopes@qt.io>
Diffstat (limited to 'src/plugins/gstreamer/camerabin/camerabinrecorder.h')
-rw-r--r--src/plugins/gstreamer/camerabin/camerabinrecorder.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/plugins/gstreamer/camerabin/camerabinrecorder.h b/src/plugins/gstreamer/camerabin/camerabinrecorder.h
index c5280ebd7..9392f69a5 100644
--- a/src/plugins/gstreamer/camerabin/camerabinrecorder.h
+++ b/src/plugins/gstreamer/camerabin/camerabinrecorder.h
@@ -58,27 +58,27 @@ public:
CameraBinRecorder(CameraBinSession *session);
virtual ~CameraBinRecorder();
- QUrl outputLocation() const;
- bool setOutputLocation(const QUrl &sink);
+ QUrl outputLocation() const override;
+ bool setOutputLocation(const QUrl &sink) override;
- QMediaRecorder::State state() const;
- QMediaRecorder::Status status() const;
+ QMediaRecorder::State state() const override;
+ QMediaRecorder::Status status() const override;
- qint64 duration() const;
+ qint64 duration() const override;
- bool isMuted() const;
- qreal volume() const;
+ bool isMuted() const override;
+ qreal volume() const override;
- void applySettings();
+ void applySettings() override;
#ifdef HAVE_GST_ENCODING_PROFILES
GstEncodingContainerProfile *videoProfile();
#endif
public slots:
- void setState(QMediaRecorder::State state);
- void setMuted(bool);
- void setVolume(qreal volume);
+ void setState(QMediaRecorder::State state) override;
+ void setMuted(bool) override;
+ void setVolume(qreal volume) override;
void updateStatus();