summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h')
-rw-r--r--Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h b/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
index 4e8cdf58c..8bebb5af7 100644
--- a/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
+++ b/Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h
@@ -29,7 +29,7 @@ namespace WebCore {
class AudioDestinationGStreamer : public AudioDestination {
public:
- AudioDestinationGStreamer(AudioSourceProvider&, float sampleRate);
+ AudioDestinationGStreamer(AudioIOCallback&, float sampleRate);
virtual ~AudioDestinationGStreamer();
virtual void start();
@@ -37,12 +37,12 @@ public:
bool isPlaying() { return m_isPlaying; }
float sampleRate() const { return m_sampleRate; }
- AudioSourceProvider& sourceProvider() const { return m_provider; }
+ AudioIOCallback& callback() const { return m_callback; }
void finishBuildingPipelineAfterWavParserPadReady(GstPad*);
private:
- AudioSourceProvider& m_provider;
+ AudioIOCallback& m_callback;
AudioBus m_renderBus;
float m_sampleRate;