diff options
author | vigneshv@chromium.org <vigneshv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-06 05:09:07 +0000 |
---|---|---|
committer | vigneshv@chromium.org <vigneshv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-06 05:09:07 +0000 |
commit | 5e3484fcaf2acc8f3cf44db4fbb9a75596440d04 (patch) | |
tree | 6f767188aec2bf08f5e8b7814c9100095329b59f /media/base/run_all_unittests.cc | |
parent | 0026387d76bcab8405a73038c5734b05f0f786fe (diff) | |
download | chromium_src-5e3484fcaf2acc8f3cf44db4fbb9a75596440d04.zip chromium_src-5e3484fcaf2acc8f3cf44db4fbb9a75596440d04.tar.gz chromium_src-5e3484fcaf2acc8f3cf44db4fbb9a75596440d04.tar.bz2 |
media: Opus support for WebM in Media Source
Matroska's specification of Opus has been standardized here:
http://wiki.xiph.org/MatroskaOpus. This CL adds support for the
new Matroska elements related to Opus and enables Opus playback
in WebM files through Media Source API. It also adds support for
end trimming.
This is a first CL in a sequence of CLs that will attempt to add
various features towards fully functional working of Opus in WebM
(both media source and video tag).
BUG=
Review URL: https://chromiumcodereview.appspot.com/23014009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221574 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/run_all_unittests.cc')
-rw-r--r-- | media/base/run_all_unittests.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/media/base/run_all_unittests.cc b/media/base/run_all_unittests.cc index c63f1dc..1c4da93 100644 --- a/media/base/run_all_unittests.cc +++ b/media/base/run_all_unittests.cc @@ -41,6 +41,10 @@ void TestSuiteNoAtExit::Initialize() { media::InitializeMediaLibraryForTesting(); CommandLine* cmd_line = CommandLine::ForCurrentProcess(); cmd_line->AppendSwitch(switches::kEnableMP3StreamParser); + + // Enable Opus support for all media tests. + // TODO(vigneshv): Remove this once the Opus flag is removed or negated. + cmd_line->AppendSwitch(switches::kEnableOpusPlayback); } int main(int argc, char** argv) { |