| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2014 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 10 matching lines...) Expand all Loading... |
| 21 import org.webrtc.AudioTrack; | 21 import org.webrtc.AudioTrack; |
| 22 import org.webrtc.Camera1Enumerator; | 22 import org.webrtc.Camera1Enumerator; |
| 23 import org.webrtc.Camera2Enumerator; | 23 import org.webrtc.Camera2Enumerator; |
| 24 import org.webrtc.CameraEnumerationAndroid; | 24 import org.webrtc.CameraEnumerationAndroid; |
| 25 import org.webrtc.CameraEnumerator; | 25 import org.webrtc.CameraEnumerator; |
| 26 import org.webrtc.CameraVideoCapturer; | 26 import org.webrtc.CameraVideoCapturer; |
| 27 import org.webrtc.DataChannel; | 27 import org.webrtc.DataChannel; |
| 28 import org.webrtc.EglBase; | 28 import org.webrtc.EglBase; |
| 29 import org.webrtc.IceCandidate; | 29 import org.webrtc.IceCandidate; |
| 30 import org.webrtc.Logging; | 30 import org.webrtc.Logging; |
| 31 import org.webrtc.MediaCodecVideoEncoder; | |
| 32 import org.webrtc.MediaConstraints; | 31 import org.webrtc.MediaConstraints; |
| 33 import org.webrtc.MediaConstraints.KeyValuePair; | 32 import org.webrtc.MediaConstraints.KeyValuePair; |
| 34 import org.webrtc.MediaStream; | 33 import org.webrtc.MediaStream; |
| 35 import org.webrtc.PeerConnection; | 34 import org.webrtc.PeerConnection; |
| 36 import org.webrtc.PeerConnection.IceConnectionState; | 35 import org.webrtc.PeerConnection.IceConnectionState; |
| 37 import org.webrtc.PeerConnectionFactory; | 36 import org.webrtc.PeerConnectionFactory; |
| 38 import org.webrtc.SdpObserver; | 37 import org.webrtc.SdpObserver; |
| 39 import org.webrtc.SessionDescription; | 38 import org.webrtc.SessionDescription; |
| 40 import org.webrtc.StatsObserver; | 39 import org.webrtc.StatsObserver; |
| 41 import org.webrtc.StatsReport; | 40 import org.webrtc.StatsReport; |
| (...skipping 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1198 public void onCreateFailure(final String error) { | 1197 public void onCreateFailure(final String error) { |
| 1199 reportError("createSDP error: " + error); | 1198 reportError("createSDP error: " + error); |
| 1200 } | 1199 } |
| 1201 | 1200 |
| 1202 @Override | 1201 @Override |
| 1203 public void onSetFailure(final String error) { | 1202 public void onSetFailure(final String error) { |
| 1204 reportError("setSDP error: " + error); | 1203 reportError("setSDP error: " + error); |
| 1205 } | 1204 } |
| 1206 } | 1205 } |
| 1207 } | 1206 } |
| OLD | NEW |