| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2013 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 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "webrtc/api/java/jni/androidmediaencoder_jni.h" | 48 #include "webrtc/api/java/jni/androidmediaencoder_jni.h" |
| 49 #include "webrtc/api/java/jni/androidnetworkmonitor_jni.h" | 49 #include "webrtc/api/java/jni/androidnetworkmonitor_jni.h" |
| 50 #include "webrtc/api/java/jni/androidvideocapturer_jni.h" | 50 #include "webrtc/api/java/jni/androidvideocapturer_jni.h" |
| 51 #include "webrtc/api/java/jni/classreferenceholder.h" | 51 #include "webrtc/api/java/jni/classreferenceholder.h" |
| 52 #include "webrtc/api/java/jni/jni_helpers.h" | 52 #include "webrtc/api/java/jni/jni_helpers.h" |
| 53 #include "webrtc/api/java/jni/native_handle_impl.h" | 53 #include "webrtc/api/java/jni/native_handle_impl.h" |
| 54 #include "webrtc/api/mediaconstraintsinterface.h" | 54 #include "webrtc/api/mediaconstraintsinterface.h" |
| 55 #include "webrtc/api/peerconnectioninterface.h" | 55 #include "webrtc/api/peerconnectioninterface.h" |
| 56 #include "webrtc/api/rtpreceiverinterface.h" | 56 #include "webrtc/api/rtpreceiverinterface.h" |
| 57 #include "webrtc/api/rtpsenderinterface.h" | 57 #include "webrtc/api/rtpsenderinterface.h" |
| 58 #include "webrtc/api/videosourceinterface.h" |
| 58 #include "webrtc/api/webrtcsdp.h" | 59 #include "webrtc/api/webrtcsdp.h" |
| 59 #include "webrtc/base/bind.h" | 60 #include "webrtc/base/bind.h" |
| 60 #include "webrtc/base/checks.h" | 61 #include "webrtc/base/checks.h" |
| 61 #include "webrtc/base/event_tracer.h" | 62 #include "webrtc/base/event_tracer.h" |
| 62 #include "webrtc/base/logging.h" | 63 #include "webrtc/base/logging.h" |
| 63 #include "webrtc/base/logsinks.h" | 64 #include "webrtc/base/logsinks.h" |
| 64 #include "webrtc/base/messagequeue.h" | 65 #include "webrtc/base/messagequeue.h" |
| 65 #include "webrtc/base/networkmonitor.h" | 66 #include "webrtc/base/networkmonitor.h" |
| 66 #include "webrtc/base/ssladapter.h" | 67 #include "webrtc/base/ssladapter.h" |
| 67 #include "webrtc/base/stringutils.h" | 68 #include "webrtc/base/stringutils.h" |
| (...skipping 2035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2103 return JavaStringFromStdString( | 2104 return JavaStringFromStdString( |
| 2104 jni, | 2105 jni, |
| 2105 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); | 2106 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); |
| 2106 } | 2107 } |
| 2107 | 2108 |
| 2108 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { | 2109 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { |
| 2109 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); | 2110 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); |
| 2110 } | 2111 } |
| 2111 | 2112 |
| 2112 } // namespace webrtc_jni | 2113 } // namespace webrtc_jni |
| OLD | NEW |