OLD | NEW |
---|---|
(Empty) | |
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 */ | |
10 #ifndef WEBRTC_CALL_RTP_DEMUXER_H_ | |
11 #define WEBRTC_CALL_RTP_DEMUXER_H_ | |
12 | |
13 #include <map> | |
14 | |
15 namespace webrtc { | |
16 | |
17 class RtpPacketReceived; | |
18 | |
19 // This class represents a receiver of an already parsed RTP packets. | |
20 class RtpPacketSinkInterface { | |
21 public: | |
22 virtual ~RtpPacketSinkInterface() {} | |
23 virtual void OnRtpPacket(const RtpPacketReceived& packet) = 0; | |
24 }; | |
25 | |
26 // This class represents the RTP demuxing, for a single transport. It | |
pthatcher1
2017/05/10 00:04:21
We should define "transport" here. I think you me
nisse-webrtc
2017/05/10 07:41:32
I mean one SSRC space, and my understanding is tha
Taylor Brandstetter
2017/05/10 20:59:43
RTP session? From RFC7656:
"An RTP session shares
pthatcher1
2017/05/12 00:38:51
That's exactly what I meant. Basically quote/refe
| |
27 // isn't thread aware, leaving responsibility of multithreading issues | |
28 // to the user of this class. | |
29 class RtpDemuxer { | |
30 public: | |
31 RtpDemuxer(); | |
32 virtual ~RtpDemuxer(); | |
danilchap
2017/05/09 09:20:22
why this class has virtual functions?
nisse-webrtc
2017/05/09 12:11:49
It's not needed for now, I'll remove virtual.
(To
| |
33 | |
34 // Registers a sink. The same sink can be registered for multiple ssrcs. | |
35 virtual void AddSink(uint32_t ssrc, RtpPacketSinkInterface* sink); | |
pthatcher1
2017/05/10 00:04:21
What happens if a single SSRC has multiple sinks a
nisse-webrtc
2017/05/10 07:41:32
We can have multiple sinks for the same ssrc, e.g,
pthatcher1
2017/05/12 00:38:51
Could you make that clear in the comment?
nisse-webrtc
2017/05/12 08:50:08
I'm updating the comments to say that null pointer
| |
36 // TODO(nisse): It's unclear what info is conveniently available at | |
37 // remove time. For now, we take only the |receiver| pointer and | |
38 // iterate over the mapping. | |
39 virtual void RemoveSink(const RtpPacketSinkInterface* sink); | |
40 | |
41 // Returns true if at least one matching sink was found, otherwise false. | |
42 virtual bool OnRtpPacket(const RtpPacketReceived& packet); | |
43 | |
44 private: | |
45 std::multimap<uint32_t, RtpPacketSinkInterface*> sinks_; | |
46 }; | |
47 | |
48 } // namespace webrtc | |
49 | |
50 #endif // WEBRTC_CALL_RTP_DEMUXER_H_ | |
OLD | NEW |