15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2011 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)[
2681a5157921f1d2a7ff6aae115bfe3c139b38a5c8Torne (Richard Coles)    NoInterfaceObject,
27926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    Constructor,
2853e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    Constructor(MediaStream stream),
2953e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    Constructor(MediaStreamTrack[] tracks),
30521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    ConstructorCallWith=ScriptExecutionContext
31e69819bd8e388ea4ad1636a19aa6b2eed4952191Ben Murdoch] interface MediaStream : EventTarget {
32926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    // DEPRECATED
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    readonly attribute DOMString label;
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
35926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    readonly attribute DOMString id;
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
37926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    sequence<MediaStreamTrack> getAudioTracks();
38926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    sequence<MediaStreamTrack> getVideoTracks();
39926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
4053e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    [RaisesException] void addTrack(MediaStreamTrack track);
4153e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    [RaisesException] void removeTrack(MediaStreamTrack track);
42926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    MediaStreamTrack getTrackById(DOMString trackId);
43926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
44926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    readonly attribute boolean ended;
4553e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)    void stop();
46926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
47e6d4491e48613634a83c1957c72759da80987961Ben Murdoch    attribute EventHandler onended;
48e6d4491e48613634a83c1957c72759da80987961Ben Murdoch    attribute EventHandler onaddtrack;
49e6d4491e48613634a83c1957c72759da80987961Ben Murdoch    attribute EventHandler onremovetrack;
505c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
515c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
52