| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 public static final String VIDEO_TRACK_TYPE = "video"; | 73 public static final String VIDEO_TRACK_TYPE = "video"; |
| 74 private static final String TAG = "PCRTCClient"; | 74 private static final String TAG = "PCRTCClient"; |
| 75 private static final String VIDEO_CODEC_VP8 = "VP8"; | 75 private static final String VIDEO_CODEC_VP8 = "VP8"; |
| 76 private static final String VIDEO_CODEC_VP9 = "VP9"; | 76 private static final String VIDEO_CODEC_VP9 = "VP9"; |
| 77 private static final String VIDEO_CODEC_H264 = "H264"; | 77 private static final String VIDEO_CODEC_H264 = "H264"; |
| 78 private static final String VIDEO_CODEC_H264_BASELINE = "H264 Baseline"; | 78 private static final String VIDEO_CODEC_H264_BASELINE = "H264 Baseline"; |
| 79 private static final String VIDEO_CODEC_H264_HIGH = "H264 High"; | 79 private static final String VIDEO_CODEC_H264_HIGH = "H264 High"; |
| 80 private static final String AUDIO_CODEC_OPUS = "opus"; | 80 private static final String AUDIO_CODEC_OPUS = "opus"; |
| 81 private static final String AUDIO_CODEC_ISAC = "ISAC"; | 81 private static final String AUDIO_CODEC_ISAC = "ISAC"; |
| 82 private static final String VIDEO_CODEC_PARAM_START_BITRATE = "x-google-start-
bitrate"; | 82 private static final String VIDEO_CODEC_PARAM_START_BITRATE = "x-google-start-
bitrate"; |
| 83 private static final String VIDEO_FLEXFEC_FIELDTRIAL = "WebRTC-FlexFEC-03/Enab
led/"; | 83 private static final String VIDEO_FLEXFEC_FIELDTRIAL = |
| 84 "WebRTC-FlexFEC-03-Advertised/Enabled/WebRTC-FlexFEC-03/Enabled/"; |
| 84 private static final String VIDEO_VP8_INTEL_HW_ENCODER_FIELDTRIAL = "WebRTC-In
telVP8/Enabled/"; | 85 private static final String VIDEO_VP8_INTEL_HW_ENCODER_FIELDTRIAL = "WebRTC-In
telVP8/Enabled/"; |
| 85 private static final String VIDEO_H264_HIGH_PROFILE_FIELDTRIAL = | 86 private static final String VIDEO_H264_HIGH_PROFILE_FIELDTRIAL = |
| 86 "WebRTC-H264HighProfile/Enabled/"; | 87 "WebRTC-H264HighProfile/Enabled/"; |
| 87 private static final String AUDIO_CODEC_PARAM_BITRATE = "maxaveragebitrate"; | 88 private static final String AUDIO_CODEC_PARAM_BITRATE = "maxaveragebitrate"; |
| 88 private static final String AUDIO_ECHO_CANCELLATION_CONSTRAINT = "googEchoCanc
ellation"; | 89 private static final String AUDIO_ECHO_CANCELLATION_CONSTRAINT = "googEchoCanc
ellation"; |
| 89 private static final String AUDIO_AUTO_GAIN_CONTROL_CONSTRAINT = "googAutoGain
Control"; | 90 private static final String AUDIO_AUTO_GAIN_CONTROL_CONSTRAINT = "googAutoGain
Control"; |
| 90 private static final String AUDIO_HIGH_PASS_FILTER_CONSTRAINT = "googHighpassF
ilter"; | 91 private static final String AUDIO_HIGH_PASS_FILTER_CONSTRAINT = "googHighpassF
ilter"; |
| 91 private static final String AUDIO_NOISE_SUPPRESSION_CONSTRAINT = "googNoiseSup
pression"; | 92 private static final String AUDIO_NOISE_SUPPRESSION_CONSTRAINT = "googNoiseSup
pression"; |
| 92 private static final String AUDIO_LEVEL_CONTROL_CONSTRAINT = "levelControl"; | 93 private static final String AUDIO_LEVEL_CONTROL_CONSTRAINT = "levelControl"; |
| 93 private static final String DTLS_SRTP_KEY_AGREEMENT_CONSTRAINT = "DtlsSrtpKeyA
greement"; | 94 private static final String DTLS_SRTP_KEY_AGREEMENT_CONSTRAINT = "DtlsSrtpKeyA
greement"; |
| (...skipping 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1323 public void onCreateFailure(final String error) { | 1324 public void onCreateFailure(final String error) { |
| 1324 reportError("createSDP error: " + error); | 1325 reportError("createSDP error: " + error); |
| 1325 } | 1326 } |
| 1326 | 1327 |
| 1327 @Override | 1328 @Override |
| 1328 public void onSetFailure(final String error) { | 1329 public void onSetFailure(final String error) { |
| 1329 reportError("setSDP error: " + error); | 1330 reportError("setSDP error: " + error); |
| 1330 } | 1331 } |
| 1331 } | 1332 } |
| 1332 } | 1333 } |
| OLD | NEW |