OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 17 matching lines...) Expand all Loading... |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #include "platform/mediastream/MediaStreamSource.h" | 31 #include "platform/mediastream/MediaStreamSource.h" |
32 | 32 |
33 namespace blink { | 33 namespace blink { |
34 | 34 |
35 MediaStreamSource* MediaStreamSource::create(const String& id, | 35 MediaStreamSource* MediaStreamSource::create(const String& id, |
36 StreamType type, | 36 StreamType type, |
37 const String& name, | 37 const String& name, |
| 38 bool remote, |
38 ReadyState readyState, | 39 ReadyState readyState, |
39 bool requiresConsumer) { | 40 bool requiresConsumer) { |
40 return new MediaStreamSource(id, type, name, readyState, requiresConsumer); | 41 return new MediaStreamSource(id, type, name, remote, readyState, |
| 42 requiresConsumer); |
41 } | 43 } |
42 | 44 |
43 MediaStreamSource::MediaStreamSource(const String& id, | 45 MediaStreamSource::MediaStreamSource(const String& id, |
44 StreamType type, | 46 StreamType type, |
45 const String& name, | 47 const String& name, |
| 48 bool remote, |
46 ReadyState readyState, | 49 ReadyState readyState, |
47 bool requiresConsumer) | 50 bool requiresConsumer) |
48 : m_id(id), | 51 : m_id(id), |
49 m_type(type), | 52 m_type(type), |
50 m_name(name), | 53 m_name(name), |
| 54 m_remote(remote), |
51 m_readyState(readyState), | 55 m_readyState(readyState), |
52 m_requiresConsumer(requiresConsumer) {} | 56 m_requiresConsumer(requiresConsumer) {} |
53 | 57 |
54 void MediaStreamSource::setReadyState(ReadyState readyState) { | 58 void MediaStreamSource::setReadyState(ReadyState readyState) { |
55 if (m_readyState != ReadyStateEnded && m_readyState != readyState) { | 59 if (m_readyState != ReadyStateEnded && m_readyState != readyState) { |
56 m_readyState = readyState; | 60 m_readyState = readyState; |
57 | 61 |
58 // Observers may dispatch events which create and add new Observers; | 62 // Observers may dispatch events which create and add new Observers; |
59 // take a snapshot so as to safely iterate. | 63 // take a snapshot so as to safely iterate. |
60 HeapVector<Member<Observer>> observers; | 64 HeapVector<Member<Observer>> observers; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 it != m_audioConsumers.end(); ++it) | 112 it != m_audioConsumers.end(); ++it) |
109 (*it)->consumeAudio(bus, numberOfFrames); | 113 (*it)->consumeAudio(bus, numberOfFrames); |
110 } | 114 } |
111 | 115 |
112 DEFINE_TRACE(MediaStreamSource) { | 116 DEFINE_TRACE(MediaStreamSource) { |
113 visitor->trace(m_observers); | 117 visitor->trace(m_observers); |
114 visitor->trace(m_audioConsumers); | 118 visitor->trace(m_audioConsumers); |
115 } | 119 } |
116 | 120 |
117 } // namespace blink | 121 } // namespace blink |
OLD | NEW |