summaryrefslogtreecommitdiffstats
path: root/remoting/base
diff options
context:
space:
mode:
authorchcunningham <chcunningham@chromium.org>2015-06-08 19:09:42 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-09 02:10:16 +0000
commitfd11b3c3aa6730ae1f024811b61913cd63f9d39a (patch)
treeddb45f28c335e4faf1bfe59f4253b7b2c8b99003 /remoting/base
parentbb5c7f582a893881639941ca61ed53517716b1a7 (diff)
downloadchromium_src-fd11b3c3aa6730ae1f024811b61913cd63f9d39a.zip
chromium_src-fd11b3c3aa6730ae1f024811b61913cd63f9d39a.tar.gz
chromium_src-fd11b3c3aa6730ae1f024811b61913cd63f9d39a.tar.bz2
Chromium changes to statically link ffmpeg.
Motivations: 1. Eliminates a large number of windows crashes hit while loading the DLL (see bugs) 2. Reducing the size of binary (about 400KB on linux, about 265KB on 32bit windows) due to dead-code elimination 3. Simplifying media library initialization (Remove bool-ness, it just works) Licensing: We've audited all the licenses for the files we actually use and have the green light from legal as long as we include the license text in the credits. BUG=435455, 429131, 441908 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Committed: https://crrev.com/bfef6d6ba82b172ac0e48c80d9ccf1a1ca0ea5c5 Cr-Commit-Position: refs/heads/master@{#332891} Review URL: https://codereview.chromium.org/1141703002 Cr-Commit-Position: refs/heads/master@{#333423}
Diffstat (limited to 'remoting/base')
-rw-r--r--remoting/base/run_all_unittests.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/base/run_all_unittests.cc b/remoting/base/run_all_unittests.cc
index 5f52f7e..a9c5b64 100644
--- a/remoting/base/run_all_unittests.cc
+++ b/remoting/base/run_all_unittests.cc
@@ -14,8 +14,8 @@ int main(int argc, char** argv) {
// single-threaded.
net::EnableSSLServerSockets();
- // Ensures runtime specific CPU features are initialized.
- media::InitializeCPUSpecificMediaFeatures();
+ // Ensures that media library and specific CPU features are initialized.
+ media::InitializeMediaLibrary();
return base::LaunchUnitTests(
argc, argv, base::Bind(&base::TestSuite::Run,