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

Unified Diff: webrtc/audio/audio_receive_stream.h

Issue 2867943003: New class RtpDemuxer and RtpPacketSinkInterface, use in Call. (Closed)
Patch Set: Fix Flexfec recursion issue in a different way. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/call/BUILD.gn » ('j') | webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_receive_stream.h
diff --git a/webrtc/audio/audio_receive_stream.h b/webrtc/audio/audio_receive_stream.h
index 20ed4613a7ede16d1ad3aa8897cb957c8c282c34..d0b5a4d1cbf1464fb69ac5f916ad56a88b6fef19 100644
--- a/webrtc/audio/audio_receive_stream.h
+++ b/webrtc/audio/audio_receive_stream.h
@@ -19,6 +19,7 @@
#include "webrtc/base/constructormagic.h"
#include "webrtc/base/thread_checker.h"
#include "webrtc/call/audio_receive_stream.h"
+#include "webrtc/call/rtp_demuxer.h"
#include "webrtc/call/syncable.h"
namespace webrtc {
@@ -35,7 +36,8 @@ class AudioSendStream;
class AudioReceiveStream final : public webrtc::AudioReceiveStream,
public AudioMixer::Source,
- public Syncable {
+ public Syncable,
+ public RtpPacketSinkInterface {
public:
AudioReceiveStream(PacketRouter* packet_router,
const webrtc::AudioReceiveStream::Config& config,
@@ -52,8 +54,8 @@ class AudioReceiveStream final : public webrtc::AudioReceiveStream,
void SetGain(float gain) override;
std::vector<webrtc::RtpSource> GetSources() const override;
- // TODO(nisse): Intended to be part of an RtpPacketReceiver interface.
- void OnRtpPacket(const RtpPacketReceived& packet);
+ // RtpPacketSinkInterface.
+ void OnRtpPacket(const RtpPacketReceived& packet) override;
// AudioMixer::Source
AudioFrameInfo GetAudioFrameWithInfo(int sample_rate_hz,
« no previous file with comments | « no previous file | webrtc/call/BUILD.gn » ('j') | webrtc/modules/rtp_rtcp/source/flexfec_receiver.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698