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 |
(...skipping 17 matching lines...) Expand all Loading... |
28 #else | 28 #else |
29 #define WEBRTC_CODEC_ISAC // Floating-point iSAC implementation (default). | 29 #define WEBRTC_CODEC_ISAC // Floating-point iSAC implementation (default). |
30 #endif // WEBRTC_ARCH_ARM | 30 #endif // WEBRTC_ARCH_ARM |
31 #define WEBRTC_CODEC_G722 | 31 #define WEBRTC_CODEC_G722 |
32 #endif // !WEBRTC_MOZILLA_BUILD | 32 #endif // !WEBRTC_MOZILLA_BUILD |
33 | 33 |
34 // AVT is included in all builds, along with G.711, NetEQ and CNG | 34 // AVT is included in all builds, along with G.711, NetEQ and CNG |
35 // (which are mandatory and don't have any defines). | 35 // (which are mandatory and don't have any defines). |
36 #define WEBRTC_CODEC_AVT | 36 #define WEBRTC_CODEC_AVT |
37 | 37 |
38 // PCM16 is useful for testing and incurs only a small binary size cost. | |
39 #define WEBRTC_CODEC_PCM16 | |
40 | |
41 // iLBC and Redundancy coding are excluded from Chromium and Mozilla | 38 // iLBC and Redundancy coding are excluded from Chromium and Mozilla |
42 // builds to reduce binary size. | 39 // builds to reduce binary size. |
43 #if !defined(WEBRTC_CHROMIUM_BUILD) && !defined(WEBRTC_MOZILLA_BUILD) | 40 #if !defined(WEBRTC_CHROMIUM_BUILD) && !defined(WEBRTC_MOZILLA_BUILD) |
44 #define WEBRTC_CODEC_ILBC | 41 #define WEBRTC_CODEC_ILBC |
45 #define WEBRTC_CODEC_RED | 42 #define WEBRTC_CODEC_RED |
46 #endif // !WEBRTC_CHROMIUM_BUILD && !WEBRTC_MOZILLA_BUILD | 43 #endif // !WEBRTC_CHROMIUM_BUILD && !WEBRTC_MOZILLA_BUILD |
47 | 44 |
48 // ---------------------------------------------------------------------------- | 45 // ---------------------------------------------------------------------------- |
49 // [Video] Codec settings | 46 // [Video] Codec settings |
50 // ---------------------------------------------------------------------------- | 47 // ---------------------------------------------------------------------------- |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 #define EAGL_RENDERING | 111 #define EAGL_RENDERING |
115 #endif | 112 #endif |
116 | 113 |
117 // ---------------------------------------------------------------------------- | 114 // ---------------------------------------------------------------------------- |
118 // Deprecated | 115 // Deprecated |
119 // ---------------------------------------------------------------------------- | 116 // ---------------------------------------------------------------------------- |
120 | 117 |
121 // #define WEBRTC_DTMF_DETECTION | 118 // #define WEBRTC_DTMF_DETECTION |
122 | 119 |
123 #endif // WEBRTC_ENGINE_CONFIGURATIONS_H_ | 120 #endif // WEBRTC_ENGINE_CONFIGURATIONS_H_ |
OLD | NEW |