| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "webrtc/base/checks.h" | 61 #include "webrtc/base/checks.h" |
| 62 #include "webrtc/base/event_tracer.h" | 62 #include "webrtc/base/event_tracer.h" |
| 63 #include "webrtc/base/logging.h" | 63 #include "webrtc/base/logging.h" |
| 64 #include "webrtc/base/logsinks.h" | 64 #include "webrtc/base/logsinks.h" |
| 65 #include "webrtc/base/messagequeue.h" | 65 #include "webrtc/base/messagequeue.h" |
| 66 #include "webrtc/base/networkmonitor.h" | 66 #include "webrtc/base/networkmonitor.h" |
| 67 #include "webrtc/base/rtccertificategenerator.h" | 67 #include "webrtc/base/rtccertificategenerator.h" |
| 68 #include "webrtc/base/ssladapter.h" | 68 #include "webrtc/base/ssladapter.h" |
| 69 #include "webrtc/base/stringutils.h" | 69 #include "webrtc/base/stringutils.h" |
| 70 #include "webrtc/media/base/videocapturer.h" | 70 #include "webrtc/media/base/videocapturer.h" |
| 71 #include "webrtc/media/devices/videorendererfactory.h" | |
| 72 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" | 71 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" |
| 73 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" | 72 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" |
| 74 #include "webrtc/system_wrappers/include/field_trial_default.h" | 73 #include "webrtc/system_wrappers/include/field_trial_default.h" |
| 75 #include "webrtc/system_wrappers/include/logcat_trace_context.h" | 74 #include "webrtc/system_wrappers/include/logcat_trace_context.h" |
| 76 #include "webrtc/system_wrappers/include/trace.h" | 75 #include "webrtc/system_wrappers/include/trace.h" |
| 77 #include "webrtc/voice_engine/include/voe_base.h" | 76 #include "webrtc/voice_engine/include/voe_base.h" |
| 78 | 77 |
| 79 using cricket::WebRtcVideoDecoderFactory; | 78 using cricket::WebRtcVideoDecoderFactory; |
| 80 using cricket::WebRtcVideoEncoderFactory; | 79 using cricket::WebRtcVideoEncoderFactory; |
| 81 using rtc::Bind; | 80 using rtc::Bind; |
| (...skipping 2166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2248 return JavaStringFromStdString( | 2247 return JavaStringFromStdString( |
| 2249 jni, | 2248 jni, |
| 2250 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); | 2249 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); |
| 2251 } | 2250 } |
| 2252 | 2251 |
| 2253 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { | 2252 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { |
| 2254 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); | 2253 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); |
| 2255 } | 2254 } |
| 2256 | 2255 |
| 2257 } // namespace webrtc_jni | 2256 } // namespace webrtc_jni |
| OLD | NEW |