Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: webrtc/sdk/android/src/jni/peerconnection_jni.cc

Issue 2547483003: Move /webrtc/api/android files to /webrtc/sdk/android (Closed)
Patch Set: Move to api folder under Android instead of src Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 27 matching lines...) Expand all
38 #include <jni.h> 38 #include <jni.h>
39 #undef JNIEXPORT 39 #undef JNIEXPORT
40 #define JNIEXPORT __attribute__((visibility("default"))) 40 #define JNIEXPORT __attribute__((visibility("default")))
41 41
42 #include <limits> 42 #include <limits>
43 #include <memory> 43 #include <memory>
44 #include <utility> 44 #include <utility>
45 45
46 #include "third_party/libyuv/include/libyuv/convert_from.h" 46 #include "third_party/libyuv/include/libyuv/convert_from.h"
47 #include "third_party/libyuv/include/libyuv/scale.h" 47 #include "third_party/libyuv/include/libyuv/scale.h"
48 #include "webrtc/api/android/jni/androidmediadecoder_jni.h" 48 #include "webrtc/sdk/android/src/jni/androidmediadecoder_jni.h"
49 #include "webrtc/api/android/jni/androidmediaencoder_jni.h" 49 #include "webrtc/sdk/android/src/jni/androidmediaencoder_jni.h"
50 #include "webrtc/api/android/jni/androidnetworkmonitor_jni.h" 50 #include "webrtc/sdk/android/src/jni/androidnetworkmonitor_jni.h"
51 #include "webrtc/api/android/jni/androidvideotracksource.h" 51 #include "webrtc/sdk/android/src/jni/androidvideotracksource.h"
52 #include "webrtc/api/android/jni/classreferenceholder.h" 52 #include "webrtc/sdk/android/src/jni/classreferenceholder.h"
53 #include "webrtc/api/android/jni/jni_helpers.h" 53 #include "webrtc/sdk/android/src/jni/jni_helpers.h"
54 #include "webrtc/api/android/jni/native_handle_impl.h" 54 #include "webrtc/sdk/android/src/jni/native_handle_impl.h"
55 #include "webrtc/api/mediaconstraintsinterface.h" 55 #include "webrtc/api/mediaconstraintsinterface.h"
56 #include "webrtc/api/peerconnectioninterface.h" 56 #include "webrtc/api/peerconnectioninterface.h"
57 #include "webrtc/api/rtpreceiverinterface.h" 57 #include "webrtc/api/rtpreceiverinterface.h"
58 #include "webrtc/api/rtpsenderinterface.h" 58 #include "webrtc/api/rtpsenderinterface.h"
59 #include "webrtc/api/videosourceproxy.h" 59 #include "webrtc/api/videosourceproxy.h"
60 #include "webrtc/api/webrtcsdp.h" 60 #include "webrtc/api/webrtcsdp.h"
61 #include "webrtc/base/bind.h" 61 #include "webrtc/base/bind.h"
62 #include "webrtc/base/checks.h" 62 #include "webrtc/base/checks.h"
63 #include "webrtc/base/event_tracer.h" 63 #include "webrtc/base/event_tracer.h"
64 #include "webrtc/base/logging.h" 64 #include "webrtc/base/logging.h"
(...skipping 2340 matching lines...) Expand 10 before | Expand all | Expand 10 after
2405 return JavaStringFromStdString( 2405 return JavaStringFromStdString(
2406 jni, 2406 jni,
2407 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); 2407 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id());
2408 } 2408 }
2409 2409
2410 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { 2410 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) {
2411 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); 2411 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release();
2412 } 2412 }
2413 2413
2414 } // namespace webrtc_jni 2414 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « webrtc/sdk/android/src/jni/native_handle_impl.cc ('k') | webrtc/sdk/android/src/jni/surfacetexturehelper_jni.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698