Steve Anton | b332917 | 2017-08-17 22:23:51 | [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 | */ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 10 | #ifndef CALL_SSRC_BINDING_OBSERVER_H_ |
| 11 | #define CALL_SSRC_BINDING_OBSERVER_H_ |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 12 | |
| 13 | #include <string> |
| 14 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 15 | #include "rtc_base/basictypes.h" |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | |
| 19 | // With newer versions of SDP, SSRC is often not explicitly signaled and must |
| 20 | // be learned on the fly. This happens by correlating packet SSRCs with included |
| 21 | // RTP extension headers like MID and RSID, or by receiving information from |
| 22 | // RTCP messages. |
| 23 | // SsrcBindingObservers will be notified when a new binding is learned, which |
| 24 | // can happen during call setup and/or during the call. |
| 25 | class SsrcBindingObserver { |
| 26 | public: |
| 27 | virtual ~SsrcBindingObserver() = default; |
| 28 | |
Steve Anton | 53c7ba6 | 2017-08-18 17:05:47 | [diff] [blame] | 29 | virtual void OnSsrcBoundToRsid(const std::string& rsid, uint32_t ssrc) {} |
| 30 | |
| 31 | virtual void OnSsrcBoundToMid(const std::string& mid, uint32_t ssrc) {} |
| 32 | |
| 33 | virtual void OnSsrcBoundToMidRsid(const std::string& mid, |
| 34 | const std::string& rsid, |
| 35 | uint32_t ssrc) {} |
| 36 | |
| 37 | virtual void OnSsrcBoundToPayloadType(uint8_t payload_type, uint32_t ssrc) {} |
Steve Anton | b332917 | 2017-08-17 22:23:51 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | } // namespace webrtc |
| 41 | |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 42 | #endif // CALL_SSRC_BINDING_OBSERVER_H_ |