OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 // This file contains interfaces for RtpReceivers | 11 // This file contains interfaces for RtpReceivers |
12 // http://w3c.github.io/webrtc-pc/#rtcrtpreceiver-interface | 12 // http://w3c.github.io/webrtc-pc/#rtcrtpreceiver-interface |
13 | 13 |
14 #ifndef WEBRTC_API_RTPRECEIVERINTERFACE_H_ | 14 #ifndef WEBRTC_API_RTPRECEIVERINTERFACE_H_ |
15 #define WEBRTC_API_RTPRECEIVERINTERFACE_H_ | 15 #define WEBRTC_API_RTPRECEIVERINTERFACE_H_ |
16 | 16 |
17 #include <string> | 17 #include <string> |
18 | 18 |
19 #include "webrtc/api/mediastreaminterface.h" | 19 #include "webrtc/api/mediastreaminterface.h" |
20 #include "webrtc/api/proxy.h" | 20 #include "webrtc/api/proxy.h" |
21 #include "webrtc/base/refcount.h" | 21 #include "webrtc/base/refcount.h" |
22 #include "webrtc/base/scoped_ref_ptr.h" | 22 #include "webrtc/base/scoped_ref_ptr.h" |
| 23 #include "webrtc/pc/mediasession.h" |
23 | 24 |
24 namespace webrtc { | 25 namespace webrtc { |
25 | 26 |
| 27 class RtpReceiverObserverInterface { |
| 28 public: |
| 29 virtual void OnFirstPacketReceived(cricket::MediaType media_type) = 0; |
| 30 |
| 31 protected: |
| 32 virtual ~RtpReceiverObserverInterface() {} |
| 33 }; |
| 34 |
26 class RtpReceiverInterface : public rtc::RefCountInterface { | 35 class RtpReceiverInterface : public rtc::RefCountInterface { |
27 public: | 36 public: |
28 virtual rtc::scoped_refptr<MediaStreamTrackInterface> track() const = 0; | 37 virtual rtc::scoped_refptr<MediaStreamTrackInterface> track() const = 0; |
29 | 38 |
30 // Not to be confused with "mid", this is a field we can temporarily use | 39 // Not to be confused with "mid", this is a field we can temporarily use |
31 // to uniquely identify a receiver until we implement Unified Plan SDP. | 40 // to uniquely identify a receiver until we implement Unified Plan SDP. |
32 virtual std::string id() const = 0; | 41 virtual std::string id() const = 0; |
33 | 42 |
34 // The WebRTC specification only defines RTCRtpParameters in terms of senders, | 43 // The WebRTC specification only defines RTCRtpParameters in terms of senders, |
35 // but this API also applies them to receivers, similar to ORTC: | 44 // but this API also applies them to receivers, similar to ORTC: |
36 // http://ortc.org/wp-content/uploads/2016/03/ortc.html#rtcrtpparameters*. | 45 // http://ortc.org/wp-content/uploads/2016/03/ortc.html#rtcrtpparameters*. |
37 virtual RtpParameters GetParameters() const = 0; | 46 virtual RtpParameters GetParameters() const = 0; |
38 virtual bool SetParameters(const RtpParameters& parameters) = 0; | 47 virtual bool SetParameters(const RtpParameters& parameters) = 0; |
39 | 48 |
| 49 virtual void SetObserver(RtpReceiverObserverInterface* observer) = 0; |
| 50 |
| 51 virtual cricket::MediaType media_type() = 0; |
| 52 |
40 protected: | 53 protected: |
41 virtual ~RtpReceiverInterface() {} | 54 virtual ~RtpReceiverInterface() {} |
42 }; | 55 }; |
43 | 56 |
44 // Define proxy for RtpReceiverInterface. | 57 // Define proxy for RtpReceiverInterface. |
45 BEGIN_SIGNALING_PROXY_MAP(RtpReceiver) | 58 BEGIN_SIGNALING_PROXY_MAP(RtpReceiver) |
46 PROXY_CONSTMETHOD0(rtc::scoped_refptr<MediaStreamTrackInterface>, track) | 59 PROXY_CONSTMETHOD0(rtc::scoped_refptr<MediaStreamTrackInterface>, track) |
47 PROXY_CONSTMETHOD0(std::string, id) | 60 PROXY_CONSTMETHOD0(std::string, id) |
48 PROXY_CONSTMETHOD0(RtpParameters, GetParameters); | 61 PROXY_CONSTMETHOD0(RtpParameters, GetParameters); |
49 PROXY_METHOD1(bool, SetParameters, const RtpParameters&) | 62 PROXY_METHOD1(bool, SetParameters, const RtpParameters&) |
| 63 PROXY_METHOD1(void, SetObserver, RtpReceiverObserverInterface*); |
| 64 PROXY_METHOD0(cricket::MediaType, media_type); |
50 END_SIGNALING_PROXY() | 65 END_SIGNALING_PROXY() |
51 | 66 |
52 } // namespace webrtc | 67 } // namespace webrtc |
53 | 68 |
54 #endif // WEBRTC_API_RTPRECEIVERINTERFACE_H_ | 69 #endif // WEBRTC_API_RTPRECEIVERINTERFACE_H_ |
OLD | NEW |