OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2011 Ericsson AB. All rights reserved. | 2 * Copyright (C) 2011 Ericsson AB. All rights reserved. |
3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
42 | 42 |
43 class PLATFORM_EXPORT MediaStreamDescriptorClient { | 43 class PLATFORM_EXPORT MediaStreamDescriptorClient { |
44 public: | 44 public: |
45 virtual ~MediaStreamDescriptorClient() { } | 45 virtual ~MediaStreamDescriptorClient() { } |
46 | 46 |
47 virtual void streamEnded() = 0; | 47 virtual void streamEnded() = 0; |
48 virtual void addRemoteTrack(MediaStreamComponent*) = 0; | 48 virtual void addRemoteTrack(MediaStreamComponent*) = 0; |
49 virtual void removeRemoteTrack(MediaStreamComponent*) = 0; | 49 virtual void removeRemoteTrack(MediaStreamComponent*) = 0; |
50 }; | 50 }; |
51 | 51 |
52 class PLATFORM_EXPORT MediaStreamDescriptor final : public RefCounted<MediaStrea mDescriptor> { | 52 class PLATFORM_EXPORT MediaStreamDescriptor final : public GarbageCollectedFinal ized<MediaStreamDescriptor> { |
53 public: | 53 public: |
54 class ExtraData { | 54 class ExtraData { |
55 public: | 55 public: |
56 virtual ~ExtraData() { } | 56 virtual ~ExtraData() { } |
57 }; | 57 }; |
58 | 58 |
59 // Only used for AudioDestinationNode. | 59 // Only used for AudioDestinationNode. |
60 static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamSourceVecto r& audioSources, const MediaStreamSourceVector& videoSources); | 60 static MediaStreamDescriptor* create(const MediaStreamSourceVector& audioSou rces, const MediaStreamSourceVector& videoSources); |
61 | 61 |
62 static PassRefPtr<MediaStreamDescriptor> create(const MediaStreamComponentVe ctor& audioComponents, const MediaStreamComponentVector& videoComponents); | 62 static MediaStreamDescriptor* create(const MediaStreamComponentVector& audio Components, const MediaStreamComponentVector& videoComponents); |
63 | 63 |
64 static PassRefPtr<MediaStreamDescriptor> create(const String& id, const Medi aStreamComponentVector& audioComponents, const MediaStreamComponentVector& video Components); | 64 static MediaStreamDescriptor* create(const String& id, const MediaStreamComp onentVector& audioComponents, const MediaStreamComponentVector& videoComponents) ; |
65 | 65 |
66 MediaStreamDescriptorClient* client() const { return m_client; } | 66 MediaStreamDescriptorClient* client() const { return m_client; } |
67 void setClient(MediaStreamDescriptorClient* client) { m_client = client; } | 67 void setClient(MediaStreamDescriptorClient* client) { m_client = client; } |
68 | 68 |
69 String id() const { return m_id; } | 69 String id() const { return m_id; } |
70 | 70 |
71 unsigned numberOfAudioComponents() const { return m_audioComponents.size(); } | 71 unsigned numberOfAudioComponents() const { return m_audioComponents.size(); } |
72 MediaStreamComponent* audioComponent(unsigned index) const { return m_audioC omponents[index].get(); } | 72 MediaStreamComponent* audioComponent(unsigned index) const { return m_audioC omponents[index].get(); } |
73 | 73 |
74 unsigned numberOfVideoComponents() const { return m_videoComponents.size(); } | 74 unsigned numberOfVideoComponents() const { return m_videoComponents.size(); } |
75 MediaStreamComponent* videoComponent(unsigned index) const { return m_videoC omponents[index].get(); } | 75 MediaStreamComponent* videoComponent(unsigned index) const { return m_videoC omponents[index].get(); } |
76 | 76 |
77 void addComponent(PassRefPtr<MediaStreamComponent>); | 77 void addComponent(MediaStreamComponent*); |
78 void removeComponent(PassRefPtr<MediaStreamComponent>); | 78 void removeComponent(MediaStreamComponent*); |
79 | 79 |
80 void addRemoteTrack(MediaStreamComponent*); | 80 void addRemoteTrack(MediaStreamComponent*); |
81 void removeRemoteTrack(MediaStreamComponent*); | 81 void removeRemoteTrack(MediaStreamComponent*); |
82 | 82 |
83 bool active() const { return m_active; } | 83 bool active() const { return m_active; } |
84 void setActive(bool active) { m_active = active; } | 84 void setActive(bool active) { m_active = active; } |
85 | 85 |
86 bool ended() const { return m_ended; } | 86 bool ended() const { return m_ended; } |
87 void setEnded() { m_ended = true; } | 87 void setEnded() { m_ended = true; } |
88 | 88 |
89 ExtraData* extraData() const { return m_extraData.get(); } | 89 ExtraData* extraData() const { return m_extraData.get(); } |
90 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData ; } | 90 void setExtraData(PassOwnPtr<ExtraData> extraData) { m_extraData = extraData ; } |
91 | 91 |
92 DECLARE_TRACE(); | |
93 | |
92 private: | 94 private: |
93 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio Sources, const MediaStreamSourceVector& videoSources); | 95 MediaStreamDescriptor(const String& id, const MediaStreamSourceVector& audio Sources, const MediaStreamSourceVector& videoSources); |
94 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au dioComponents, const MediaStreamComponentVector& videoComponents); | 96 MediaStreamDescriptor(const String& id, const MediaStreamComponentVector& au dioComponents, const MediaStreamComponentVector& videoComponents); |
95 | 97 |
96 MediaStreamDescriptorClient* m_client; | 98 MediaStreamDescriptorClient* m_client; |
sof
2015/09/30 06:26:34
Can you add a comment clarifying lifetime assumpti
peria
2015/09/30 07:50:05
Done.
| |
97 String m_id; | 99 String m_id; |
98 Vector<RefPtr<MediaStreamComponent>> m_audioComponents; | 100 HeapVector<Member<MediaStreamComponent>> m_audioComponents; |
99 Vector<RefPtr<MediaStreamComponent>> m_videoComponents; | 101 HeapVector<Member<MediaStreamComponent>> m_videoComponents; |
100 bool m_active; | 102 bool m_active; |
101 bool m_ended; | 103 bool m_ended; |
102 | 104 |
103 OwnPtr<ExtraData> m_extraData; | 105 OwnPtr<ExtraData> m_extraData; |
104 }; | 106 }; |
105 | 107 |
106 typedef Vector<RefPtr<MediaStreamDescriptor>> MediaStreamDescriptorVector; | 108 typedef HeapVector<Member<MediaStreamDescriptor>> MediaStreamDescriptorVector; |
107 | 109 |
108 } // namespace blink | 110 } // namespace blink |
109 | 111 |
110 #endif // MediaStreamDescriptor_h | 112 #endif // MediaStreamDescriptor_h |
OLD | NEW |