blob: 702d7879c20af2efeafff7f0351f47c8d1c17437 [file] [log] [blame]
nissee4bcd6d2017-05-16 11:47:041/*
2 * Copyright (c) 2017 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 */
eladalond0244c22017-06-08 11:19:1310
nissee4bcd6d2017-05-16 11:47:0411#ifndef WEBRTC_CALL_RTP_DEMUXER_H_
12#define WEBRTC_CALL_RTP_DEMUXER_H_
13
14#include <map>
eladalond0244c22017-06-08 11:19:1315#include <string>
eladalona52722f2017-06-26 18:23:5416#include <vector>
nissee4bcd6d2017-05-16 11:47:0417
18namespace webrtc {
19
20class RtpPacketReceived;
nissed76b7b22017-06-01 11:02:3521class RtpPacketSinkInterface;
Steve Antonb3329172017-08-17 22:23:5122class SsrcBindingObserver;
nissee4bcd6d2017-05-16 11:47:0423
24// This class represents the RTP demuxing, for a single RTP session (i.e., one
25// ssrc space, see RFC 7656). It isn't thread aware, leaving responsibility of
26// multithreading issues to the user of this class.
27// TODO(nisse): Should be extended to also do MID-based demux and payload-type
28// demux.
29class RtpDemuxer {
30 public:
31 RtpDemuxer();
32 ~RtpDemuxer();
33
eladalon5daecca2017-08-04 13:34:5434 // Registers a sink. Multiple SSRCs may be mapped to the same sink, but
35 // each SSRC may only be mapped to one sink. The return value reports
36 // whether the association has been recorded or rejected. Rejection may occur
37 // if the SSRC has already been associated with a sink. The previously added
38 // sink is *not* forgotten.
39 bool AddSink(uint32_t ssrc, RtpPacketSinkInterface* sink);
eladalond0244c22017-06-08 11:19:1340
eladalon5daecca2017-08-04 13:34:5441 // Registers a sink's association to an RSID. Only one sink may be associated
42 // with a given RSID. Null pointer is not allowed.
eladalond0244c22017-06-08 11:19:1343 void AddSink(const std::string& rsid, RtpPacketSinkInterface* sink);
44
45 // Removes a sink. Return value reports if anything was actually removed.
46 // Null pointer is not allowed.
47 bool RemoveSink(const RtpPacketSinkInterface* sink);
nissee4bcd6d2017-05-16 11:47:0448
eladalon5daecca2017-08-04 13:34:5449 // Handles RTP packets. Returns true if at least one matching sink was found.
nissee4bcd6d2017-05-16 11:47:0450 bool OnRtpPacket(const RtpPacketReceived& packet);
51
eladalona52722f2017-06-26 18:23:5452 // Allows other objects to be notified when RSID-SSRC associations are
53 // resolved by this object.
Steve Antonb3329172017-08-17 22:23:5154 void RegisterSsrcBindingObserver(SsrcBindingObserver* observer);
55 // Deprecated: Use the above method.
56 void RegisterRsidResolutionObserver(SsrcBindingObserver* observer);
eladalona52722f2017-06-26 18:23:5457
Steve Antonb3329172017-08-17 22:23:5158 // Undo a previous RegisterSsrcBindingObserver().
59 void DeregisterSsrcBindingObserver(const SsrcBindingObserver* observer);
60 // Deprecated: Use the above method.
61 void DeregisterRsidResolutionObserver(const SsrcBindingObserver* observer);
eladalona52722f2017-06-26 18:23:5462
nissee4bcd6d2017-05-16 11:47:0463 private:
eladalona52722f2017-06-26 18:23:5464 // Find the associations of RSID to SSRCs.
65 void ResolveRsidToSsrcAssociations(const RtpPacketReceived& packet);
66
67 // Notify observers of the resolution of an RSID to an SSRC.
68 void NotifyObserversOfRsidResolution(const std::string& rsid, uint32_t ssrc);
eladalond0244c22017-06-08 11:19:1369
70 // This records the association SSRCs to sinks. Other associations, such
71 // as by RSID, also end up here once the RSID, etc., is resolved to an SSRC.
eladalon5daecca2017-08-04 13:34:5472 std::map<uint32_t, RtpPacketSinkInterface*> ssrc_sinks_;
eladalond0244c22017-06-08 11:19:1373
74 // A sink may be associated with an RSID - RTP Stream ID. This tag has a
75 // one-to-one association with an SSRC, but that SSRC is not yet known.
76 // When it becomes known, the association of the sink to the RSID is deleted
eladalonc3e3e602017-06-28 15:18:5177 // from this container, and moved into |ssrc_sinks_|.
eladalon5daecca2017-08-04 13:34:5478 std::map<std::string, RtpPacketSinkInterface*> rsid_sinks_;
eladalond0244c22017-06-08 11:19:1379
eladalona52722f2017-06-26 18:23:5480 // Observers which will be notified when an RSID association to an SSRC is
81 // resolved by this object.
Steve Antonb3329172017-08-17 22:23:5182 std::vector<SsrcBindingObserver*> ssrc_binding_observers_;
nissee4bcd6d2017-05-16 11:47:0483};
84
85} // namespace webrtc
86
87#endif // WEBRTC_CALL_RTP_DEMUXER_H_