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