OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 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 | |
11 #ifndef WEBRTC_SDK_ANDROID_SRC_JNI_PC_RTPRECEIVEROBSERVER_JNI_H_ | |
12 #define WEBRTC_SDK_ANDROID_SRC_JNI_PC_RTPRECEIVEROBSERVER_JNI_H_ | |
13 | |
14 #include "webrtc/api/rtpreceiverinterface.h" | |
15 #include "webrtc/sdk/android/src/jni/jni_helpers.h" | |
16 | |
17 namespace webrtc_jni { | |
18 | |
19 // Adapter between the C++ RtpReceiverObserverInterface and the Java | |
20 // RtpReceiver.Observer interface. Wraps an instance of the Java interface and | |
21 // dispatches C++ callbacks to Java. | |
22 class RtpReceiverObserverJni : public webrtc::RtpReceiverObserverInterface { | |
23 public: | |
24 RtpReceiverObserverJni(JNIEnv* jni, jobject j_observer) | |
25 : j_observer_global_(jni, j_observer) {} | |
26 | |
27 ~RtpReceiverObserverJni() override {} | |
28 | |
29 void OnFirstPacketReceived(cricket::MediaType media_type) override; | |
30 | |
31 private: | |
32 const ScopedGlobalRef<jobject> j_observer_global_; | |
33 }; | |
34 | |
35 } // namespace webrtc_jni | |
36 | |
37 #endif // WEBRTC_SDK_ANDROID_SRC_JNI_PC_RTPRECEIVEROBSERVER_JNI_H_ | |
OLD | NEW |