Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Unified Diff: webrtc/engine_configurations.h

Issue 1349393003: Don't link with audio codecs that we don't use (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@dmove-clean
Patch Set: ARM fix Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/engine_configurations.h
diff --git a/webrtc/engine_configurations.h b/webrtc/engine_configurations.h
index 5963892e5a67625978bb30e4ed4048039a8a824f..1fd378dd42660fd5086a71d6024b3f770137e932 100644
--- a/webrtc/engine_configurations.h
+++ b/webrtc/engine_configurations.h
@@ -18,27 +18,6 @@
// ============================================================================
// ----------------------------------------------------------------------------
-// [Voice] Codec settings
-// ----------------------------------------------------------------------------
-
-// iSAC and G722 are not included in the Mozilla build, but in all other builds.
-#ifndef WEBRTC_MOZILLA_BUILD
-#ifdef WEBRTC_ARCH_ARM
-#define WEBRTC_CODEC_ISACFX // Fix-point iSAC implementation.
-#else
-#define WEBRTC_CODEC_ISAC // Floating-point iSAC implementation (default).
-#endif // WEBRTC_ARCH_ARM
-#define WEBRTC_CODEC_G722
-#endif // !WEBRTC_MOZILLA_BUILD
-
-// iLBC and Redundancy coding are excluded from Chromium and Mozilla
-// builds to reduce binary size.
-#if !defined(WEBRTC_CHROMIUM_BUILD) && !defined(WEBRTC_MOZILLA_BUILD)
-#define WEBRTC_CODEC_ILBC
-#define WEBRTC_CODEC_RED
-#endif // !WEBRTC_CHROMIUM_BUILD && !WEBRTC_MOZILLA_BUILD
-
-// ----------------------------------------------------------------------------
// [Video] Codec settings
// ----------------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698