nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 1 | /* |
| 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 | */ |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 10 | |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 11 | #ifndef WEBRTC_CALL_RTP_DEMUXER_H_ |
| 12 | #define WEBRTC_CALL_RTP_DEMUXER_H_ |
| 13 | |
| 14 | #include <map> |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 15 | #include <string> |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 16 | #include <vector> |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 17 | |
| 18 | namespace webrtc { |
| 19 | |
| 20 | class RtpPacketReceived; |
nisse | d76b7b2 | 2017-06-01 11:02:35 | [diff] [blame] | 21 | class RtpPacketSinkInterface; |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 22 | class SsrcBindingObserver; |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 23 | |
| 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. |
| 29 | class RtpDemuxer { |
| 30 | public: |
| 31 | RtpDemuxer(); |
| 32 | ~RtpDemuxer(); |
| 33 | |
eladalon | 5daecca | 2017-08-04 13:34:54 | [diff] [blame] | 34 | // 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); |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 40 | |
eladalon | 5daecca | 2017-08-04 13:34:54 | [diff] [blame] | 41 | // Registers a sink's association to an RSID. Only one sink may be associated |
| 42 | // with a given RSID. Null pointer is not allowed. |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 43 | 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); |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 48 | |
eladalon | 5daecca | 2017-08-04 13:34:54 | [diff] [blame] | 49 | // Handles RTP packets. Returns true if at least one matching sink was found. |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 50 | bool OnRtpPacket(const RtpPacketReceived& packet); |
| 51 | |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 52 | // Allows other objects to be notified when RSID-SSRC associations are |
| 53 | // resolved by this object. |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 54 | void RegisterSsrcBindingObserver(SsrcBindingObserver* observer); |
| 55 | // Deprecated: Use the above method. |
| 56 | void RegisterRsidResolutionObserver(SsrcBindingObserver* observer); |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 57 | |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 58 | // Undo a previous RegisterSsrcBindingObserver(). |
| 59 | void DeregisterSsrcBindingObserver(const SsrcBindingObserver* observer); |
| 60 | // Deprecated: Use the above method. |
| 61 | void DeregisterRsidResolutionObserver(const SsrcBindingObserver* observer); |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 62 | |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 63 | private: |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 64 | // 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); |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 69 | |
| 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. |
eladalon | 5daecca | 2017-08-04 13:34:54 | [diff] [blame] | 72 | std::map<uint32_t, RtpPacketSinkInterface*> ssrc_sinks_; |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 73 | |
| 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 |
eladalon | c3e3e60 | 2017-06-28 15:18:51 | [diff] [blame] | 77 | // from this container, and moved into |ssrc_sinks_|. |
eladalon | 5daecca | 2017-08-04 13:34:54 | [diff] [blame] | 78 | std::map<std::string, RtpPacketSinkInterface*> rsid_sinks_; |
eladalon | d0244c2 | 2017-06-08 11:19:13 | [diff] [blame] | 79 | |
eladalon | a52722f | 2017-06-26 18:23:54 | [diff] [blame] | 80 | // Observers which will be notified when an RSID association to an SSRC is |
| 81 | // resolved by this object. |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 82 | std::vector<SsrcBindingObserver*> ssrc_binding_observers_; |
nisse | e4bcd6d | 2017-05-16 11:47:04 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | } // namespace webrtc |
| 86 | |
| 87 | #endif // WEBRTC_CALL_RTP_DEMUXER_H_ |