| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
| 11 #ifndef WEBRTC_ENGINE_CONFIGURATIONS_H_ | 11 #ifndef WEBRTC_ENGINE_CONFIGURATIONS_H_ |
| 12 #define WEBRTC_ENGINE_CONFIGURATIONS_H_ | 12 #define WEBRTC_ENGINE_CONFIGURATIONS_H_ |
| 13 | 13 |
| 14 #include "webrtc/typedefs.h" | 14 #include "webrtc/typedefs.h" |
| 15 | 15 |
| 16 // ============================================================================ | 16 // ============================================================================ |
| 17 // Voice and Video | |
| 18 // ============================================================================ | |
| 19 | |
| 20 // ---------------------------------------------------------------------------- | |
| 21 // [Video] Codec settings | |
| 22 // ---------------------------------------------------------------------------- | |
| 23 | |
| 24 #define VIDEOCODEC_I420 | |
| 25 #define VIDEOCODEC_VP8 | |
| 26 #define VIDEOCODEC_VP9 | |
| 27 #define VIDEOCODEC_H264 | |
| 28 | |
| 29 // ============================================================================ | |
| 30 // VoiceEngine | 17 // VoiceEngine |
| 31 // ============================================================================ | 18 // ============================================================================ |
| 32 | 19 |
| 33 // ---------------------------------------------------------------------------- | 20 // ---------------------------------------------------------------------------- |
| 34 // Settings for VoiceEngine | 21 // Settings for VoiceEngine |
| 35 // ---------------------------------------------------------------------------- | 22 // ---------------------------------------------------------------------------- |
| 36 | 23 |
| 37 #define WEBRTC_VOICE_ENGINE_AGC // Near-end AGC | 24 #define WEBRTC_VOICE_ENGINE_AGC // Near-end AGC |
| 38 #define WEBRTC_VOICE_ENGINE_ECHO // Near-end AEC | 25 #define WEBRTC_VOICE_ENGINE_ECHO // Near-end AEC |
| 39 #define WEBRTC_VOICE_ENGINE_NR // Near-end NS | 26 #define WEBRTC_VOICE_ENGINE_NR // Near-end NS |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 | 67 |
| 81 // ---------------------------------------------------------------------------- | 68 // ---------------------------------------------------------------------------- |
| 82 // VideoEngine Mobile iPhone | 69 // VideoEngine Mobile iPhone |
| 83 // ---------------------------------------------------------------------------- | 70 // ---------------------------------------------------------------------------- |
| 84 | 71 |
| 85 #if defined(WEBRTC_IOS) | 72 #if defined(WEBRTC_IOS) |
| 86 #define EAGL_RENDERING | 73 #define EAGL_RENDERING |
| 87 #endif | 74 #endif |
| 88 | 75 |
| 89 #endif // WEBRTC_ENGINE_CONFIGURATIONS_H_ | 76 #endif // WEBRTC_ENGINE_CONFIGURATIONS_H_ |
| OLD | NEW |