~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/audio/gstreamer/AudioDestinationGStreamer.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (C) 2011 Philippe Normand <pnormand@igalia.com>
 
3
 *
 
4
 *  This library is free software; you can redistribute it and/or
 
5
 *  modify it under the terms of the GNU Lesser General Public
 
6
 *  License as published by the Free Software Foundation; either
 
7
 *  version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 *  This library is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 *  Lesser General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU Lesser General Public
 
15
 *  License along with this library; if not, write to the Free Software
 
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 */
 
18
 
 
19
#ifndef AudioDestinationGStreamer_h
 
20
#define AudioDestinationGStreamer_h
 
21
 
 
22
#include "AudioBus.h"
 
23
#include "AudioDestination.h"
 
24
 
 
25
typedef struct _GstElement GstElement;
 
26
typedef struct _GstPad GstPad;
 
27
 
 
28
namespace WebCore {
 
29
 
 
30
class AudioDestinationGStreamer : public AudioDestination {
 
31
public:
 
32
    AudioDestinationGStreamer(AudioIOCallback&, float sampleRate);
 
33
    virtual ~AudioDestinationGStreamer();
 
34
 
 
35
    virtual void start();
 
36
    virtual void stop();
 
37
 
 
38
    bool isPlaying() { return m_isPlaying; }
 
39
    float sampleRate() const { return m_sampleRate; }
 
40
    AudioIOCallback& callback() const { return m_callback; }
 
41
 
 
42
    void finishBuildingPipelineAfterWavParserPadReady(GstPad*);
 
43
 
 
44
private:
 
45
    AudioIOCallback& m_callback;
 
46
    AudioBus m_renderBus;
 
47
 
 
48
    float m_sampleRate;
 
49
    bool m_isPlaying;
 
50
    bool m_wavParserAvailable;
 
51
    bool m_audioSinkAvailable;
 
52
    GstElement* m_pipeline;
 
53
};
 
54
 
 
55
} // namespace WebCore
 
56
 
 
57
#endif // AudioDestinationGStreamer_h