OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 LoadClass(jni, "android/graphics/SurfaceTexture"); | 74 LoadClass(jni, "android/graphics/SurfaceTexture"); |
75 LoadClass(jni, "org/webrtc/CameraEnumerator"); | 75 LoadClass(jni, "org/webrtc/CameraEnumerator"); |
76 LoadClass(jni, "org/webrtc/Camera2Enumerator"); | 76 LoadClass(jni, "org/webrtc/Camera2Enumerator"); |
77 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid"); | 77 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid"); |
78 LoadClass(jni, "org/webrtc/VideoCapturerAndroid"); | 78 LoadClass(jni, "org/webrtc/VideoCapturerAndroid"); |
79 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver"); | 79 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver"); |
80 LoadClass(jni, "org/webrtc/EglBase"); | 80 LoadClass(jni, "org/webrtc/EglBase"); |
81 LoadClass(jni, "org/webrtc/EglBase$Context"); | 81 LoadClass(jni, "org/webrtc/EglBase$Context"); |
82 LoadClass(jni, "org/webrtc/EglBase14$Context"); | 82 LoadClass(jni, "org/webrtc/EglBase14$Context"); |
83 LoadClass(jni, "org/webrtc/NetworkMonitor"); | 83 LoadClass(jni, "org/webrtc/NetworkMonitor"); |
| 84 LoadClass(jni, "org/webrtc/NetworkMonitorAutoDetect$ConnectionType"); |
| 85 LoadClass(jni, "org/webrtc/NetworkMonitorAutoDetect$IPAddress"); |
| 86 LoadClass(jni, "org/webrtc/NetworkMonitorAutoDetect$NetworkInformation"); |
84 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder"); | 87 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder"); |
85 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo"); | 88 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo"); |
86 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType"); | 89 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType"); |
87 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder"); | 90 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder"); |
88 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer"); | 91 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer"); |
89 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer"); | 92 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer"); |
90 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType"); | 93 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType"); |
91 LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); | 94 LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); |
92 #endif | 95 #endif |
93 LoadClass(jni, "org/webrtc/MediaSource$State"); | 96 LoadClass(jni, "org/webrtc/MediaSource$State"); |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 RTC_CHECK(inserted) << "Duplicate class name: " << name; | 146 RTC_CHECK(inserted) << "Duplicate class name: " << name; |
144 } | 147 } |
145 | 148 |
146 // Returns a global reference guaranteed to be valid for the lifetime of the | 149 // Returns a global reference guaranteed to be valid for the lifetime of the |
147 // process. | 150 // process. |
148 jclass FindClass(JNIEnv* jni, const char* name) { | 151 jclass FindClass(JNIEnv* jni, const char* name) { |
149 return g_class_reference_holder->GetClass(name); | 152 return g_class_reference_holder->GetClass(name); |
150 } | 153 } |
151 | 154 |
152 } // namespace webrtc_jni | 155 } // namespace webrtc_jni |
OLD | NEW |