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

Unified Diff: talk/app/webrtc/remoteaudiotrack.cc

Issue 1505253004: Support for remote audio into tracks (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change when we fire callbacks for external media Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: talk/app/webrtc/remoteaudiotrack.cc
diff --git a/talk/app/webrtc/remoteaudiotrack.cc b/talk/app/webrtc/remoteaudiotrack.cc
index df27f05e4859b2f423a950485aef50915501dd41..2006435a05a232cfc5da2be378f5a8ee6977e6c4 100644
--- a/talk/app/webrtc/remoteaudiotrack.cc
+++ b/talk/app/webrtc/remoteaudiotrack.cc
@@ -26,3 +26,47 @@
*/
#include "talk/app/webrtc/remoteaudiotrack.h"
+
+#include "talk/app/webrtc/remoteaudiosource.h"
+
+using rtc::scoped_refptr;
+
+namespace webrtc {
+
+// static
+scoped_refptr<RemoteAudioTrack> RemoteAudioTrack::Create(
+ const std::string& id,
+ const scoped_refptr<RemoteAudioSource>& source) {
+ return new rtc::RefCountedObject<RemoteAudioTrack>(id, source);
+}
+
+RemoteAudioTrack::RemoteAudioTrack(
+ const std::string& label,
+ const scoped_refptr<RemoteAudioSource>& source)
+ : MediaStreamTrack<AudioTrackInterface>(label), audio_source_(source) {}
+
+std::string RemoteAudioTrack::kind() const {
+ return MediaStreamTrackInterface::kAudioKind;
+}
+
+AudioSourceInterface* RemoteAudioTrack::GetSource() const {
+ return audio_source_.get();
+}
+
+void RemoteAudioTrack::AddSink(AudioTrackSinkInterface* sink) {
+ audio_source_->AddSink(sink);
+}
+
+void RemoteAudioTrack::RemoveSink(AudioTrackSinkInterface* sink) {
+ audio_source_->RemoveSink(sink);
+}
+
+bool RemoteAudioTrack::GetSignalLevel(int* level) {
+ return false;
+}
+
+scoped_refptr<AudioProcessorInterface> RemoteAudioTrack::GetAudioProcessor() {
perkj_webrtc 2015/12/10 12:24:05 Are these not used for remote audio? Only local?
tommi 2015/12/10 22:37:25 Local only. There's a todo to remove it but it's b
+ return nullptr;
+}
+
+} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698