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

Unified Diff: talk/media/base/mediachannel.h

Issue 1505253004: Support for remote audio into tracks (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add thread check, Remove bits_per_sample and use int16_t. 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/media/base/mediachannel.h
diff --git a/talk/media/base/mediachannel.h b/talk/media/base/mediachannel.h
index fe223bba0418d27454aae73cb6b3dc2be3df392a..92cfb34bd130acf392024bdb71822b7d560c4b09 100644
--- a/talk/media/base/mediachannel.h
+++ b/talk/media/base/mediachannel.h
@@ -31,9 +31,11 @@
#include <string>
#include <vector>
+#include "talk/media/base/audiorenderer.h"
tommi (sloooow) - chröme 2015/12/11 17:51:18 also reverted this change
the sun 2015/12/11 19:46:28 Acknowledged.
#include "talk/media/base/codec.h"
#include "talk/media/base/constants.h"
#include "talk/media/base/streamparams.h"
+#include "webrtc/audio/audio_sink.h"
the sun 2015/12/11 16:32:04 forward declare instead?
tommi (sloooow) - chröme 2015/12/11 17:51:18 Done. (be warned that about 10 more file were adde
the sun 2015/12/11 19:46:28 Ah, oh. Hmm. Well, that didn't turn out too well t
tommi 2015/12/12 00:33:11 This didn't make sense to me either, so I went thr
#include "webrtc/base/basictypes.h"
#include "webrtc/base/buffer.h"
#include "webrtc/base/dscp.h"
@@ -53,7 +55,6 @@ class Timing;
namespace cricket {
-class AudioRenderer;
struct RtpHeader;
class ScreencastId;
struct VideoFormat;
@@ -1028,6 +1029,10 @@ class VoiceMediaChannel : public MediaChannel {
virtual bool InsertDtmf(uint32_t ssrc, int event, int duration) = 0;
// Gets quality stats for the channel.
virtual bool GetStats(VoiceMediaInfo* info) = 0;
+
+ virtual void SetRawAudioSink(
+ uint32_t ssrc,
+ rtc::scoped_ptr<webrtc::AudioSinkInterface> sink) = 0;
};
struct VideoSendParameters : RtpSendParameters<VideoCodec, VideoOptions> {

Powered by Google App Engine
This is Rietveld 408576698