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

« back to all changes in this revision

Viewing changes to Source/WebCore/Modules/mediasource/MediaSource.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) 2012 Google Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions are
 
6
 * met:
 
7
 *
 
8
 *     * Redistributions of source code must retain the above copyright
 
9
 * notice, this list of conditions and the following disclaimer.
 
10
 *     * Redistributions in binary form must reproduce the above
 
11
 * copyright notice, this list of conditions and the following disclaimer
 
12
 * in the documentation and/or other materials provided with the
 
13
 * distribution.
 
14
 *     * Neither the name of Google Inc. nor the names of its
 
15
 * contributors may be used to endorse or promote products derived from
 
16
 * this software without specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
19
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
20
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
21
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
22
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
23
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
24
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
25
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
26
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
27
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
28
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
29
 */
 
30
 
 
31
#ifndef MediaSource_h
 
32
#define MediaSource_h
 
33
 
 
34
#if ENABLE(MEDIA_SOURCE)
 
35
 
 
36
#include "ActiveDOMObject.h"
 
37
#include "GenericEventQueue.h"
 
38
#include "MediaPlayer.h"
 
39
#include "SourceBuffer.h"
 
40
#include "SourceBufferList.h"
 
41
#include <wtf/RefCounted.h>
 
42
 
 
43
namespace WebCore {
 
44
 
 
45
class MediaSource : public RefCounted<MediaSource>, public EventTarget, public ActiveDOMObject {
 
46
public:
 
47
    static const String& openKeyword();
 
48
    static const String& closedKeyword();
 
49
    static const String& endedKeyword();
 
50
 
 
51
    static PassRefPtr<MediaSource> create(ScriptExecutionContext*);
 
52
    virtual ~MediaSource() { }
 
53
 
 
54
    SourceBufferList* sourceBuffers();
 
55
    SourceBufferList* activeSourceBuffers();
 
56
 
 
57
    double duration() const;
 
58
    void setDuration(double, ExceptionCode&);
 
59
 
 
60
    SourceBuffer* addSourceBuffer(const String& type, ExceptionCode&);
 
61
    void removeSourceBuffer(SourceBuffer*, ExceptionCode&);
 
62
 
 
63
    const String& readyState() const;
 
64
    void setReadyState(const String&);
 
65
 
 
66
    void endOfStream(const String& error, ExceptionCode&);
 
67
 
 
68
    void setMediaPlayer(MediaPlayer* player) { m_player = player; }
 
69
 
 
70
    PassRefPtr<TimeRanges> buffered(const String& id, ExceptionCode&) const;
 
71
    void append(const String& id, PassRefPtr<Uint8Array> data, ExceptionCode&);
 
72
    void abort(const String& id, ExceptionCode&);
 
73
    bool setTimestampOffset(const String& id, double, ExceptionCode&);
 
74
 
 
75
    // EventTarget interface
 
76
    virtual const AtomicString& interfaceName() const OVERRIDE;
 
77
    virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE;
 
78
 
 
79
    // ActiveDOMObject interface
 
80
    virtual bool hasPendingActivity() const OVERRIDE;
 
81
    virtual void stop() OVERRIDE;
 
82
 
 
83
    using RefCounted<MediaSource>::ref;
 
84
    using RefCounted<MediaSource>::deref;
 
85
 
 
86
private:
 
87
    explicit MediaSource(ScriptExecutionContext*);
 
88
 
 
89
    virtual EventTargetData* eventTargetData() OVERRIDE;
 
90
    virtual EventTargetData* ensureEventTargetData() OVERRIDE;
 
91
 
 
92
    virtual void refEventTarget() OVERRIDE { ref(); }
 
93
    virtual void derefEventTarget() OVERRIDE { deref(); }
 
94
 
 
95
    void scheduleEvent(const AtomicString& eventName);
 
96
 
 
97
    EventTargetData m_eventTargetData;
 
98
 
 
99
    String m_readyState;
 
100
    MediaPlayer* m_player;
 
101
 
 
102
    RefPtr<SourceBufferList> m_sourceBuffers;
 
103
    RefPtr<SourceBufferList> m_activeSourceBuffers;
 
104
    OwnPtr<GenericEventQueue> m_asyncEventQueue;
 
105
};
 
106
 
 
107
} // namespace WebCore
 
108
 
 
109
#endif
 
110
#endif