Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: webrtc/api/remoteaudiosource.h

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/api/quicdatatransport_unittest.cc ('k') | webrtc/api/remoteaudiosource.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11 #ifndef WEBRTC_API_REMOTEAUDIOSOURCE_H_
12 #define WEBRTC_API_REMOTEAUDIOSOURCE_H_
13
14 #include <list>
15 #include <string>
16
17 #include "webrtc/api/call/audio_sink.h"
18 #include "webrtc/api/notifier.h"
19 #include "webrtc/base/criticalsection.h"
20 #include "webrtc/pc/channel.h"
21
22 namespace rtc {
23 struct Message;
24 class Thread;
25 } // namespace rtc
26
27 namespace webrtc {
28
29 // This class implements the audio source used by the remote audio track.
30 class RemoteAudioSource : public Notifier<AudioSourceInterface> {
31 public:
32 // Creates an instance of RemoteAudioSource.
33 static rtc::scoped_refptr<RemoteAudioSource> Create(
34 uint32_t ssrc,
35 cricket::VoiceChannel* channel);
36
37 // MediaSourceInterface implementation.
38 MediaSourceInterface::SourceState state() const override;
39 bool remote() const override;
40
41 void AddSink(AudioTrackSinkInterface* sink) override;
42 void RemoveSink(AudioTrackSinkInterface* sink) override;
43
44 protected:
45 RemoteAudioSource();
46 ~RemoteAudioSource() override;
47
48 // Post construction initialize where we can do things like save a reference
49 // to ourselves (need to be fully constructed).
50 void Initialize(uint32_t ssrc, cricket::VoiceChannel* channel);
51
52 private:
53 typedef std::list<AudioObserver*> AudioObserverList;
54
55 // AudioSourceInterface implementation.
56 void SetVolume(double volume) override;
57 void RegisterAudioObserver(AudioObserver* observer) override;
58 void UnregisterAudioObserver(AudioObserver* observer) override;
59
60 class Sink;
61 void OnData(const AudioSinkInterface::Data& audio);
62 void OnAudioChannelGone();
63
64 class MessageHandler;
65 void OnMessage(rtc::Message* msg);
66
67 AudioObserverList audio_observers_;
68 rtc::CriticalSection sink_lock_;
69 std::list<AudioTrackSinkInterface*> sinks_;
70 rtc::Thread* const main_thread_;
71 SourceState state_;
72 };
73
74 } // namespace webrtc
75
76 #endif // WEBRTC_API_REMOTEAUDIOSOURCE_H_
OLDNEW
« no previous file with comments | « webrtc/api/quicdatatransport_unittest.cc ('k') | webrtc/api/remoteaudiosource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698