summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2017-06-27 06:07:23 +0000
commit1bf1084f2b10c3b47fd1a588d85d21ed0eb41d0c (patch)
tree46dcd36c86e7fbc6e5df36deb463b33e9967a6f7 /Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
parent32761a6cee1d0dee366b885b7b9c777e67885688 (diff)
downloadWebKitGtk-tarball-master.tar.gz
Diffstat (limited to 'Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h')
-rw-r--r--Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h b/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
index 9dc9a9bea..3b89febc6 100644
--- a/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
+++ b/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
@@ -34,14 +34,13 @@ public:
AudioDestinationGStreamer(AudioIOCallback&, float sampleRate);
virtual ~AudioDestinationGStreamer();
- virtual void start();
- virtual void stop();
+ void start() override;
+ void stop() override;
- bool isPlaying() { return m_isPlaying; }
- float sampleRate() const { return m_sampleRate; }
+ bool isPlaying() override { return m_isPlaying; }
+ float sampleRate() const override { return m_sampleRate; }
AudioIOCallback& callback() const { return m_callback; }
- void finishBuildingPipelineAfterWavParserPadReady(GstPad*);
gboolean handleMessage(GstMessage*);
private:
@@ -50,7 +49,6 @@ private:
float m_sampleRate;
bool m_isPlaying;
- bool m_wavParserAvailable;
bool m_audioSinkAvailable;
GstElement* m_pipeline;
};