diff options
author | acolwell@chromium.org <acolwell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-09 23:52:25 +0000 |
---|---|---|
committer | acolwell@chromium.org <acolwell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-09 23:52:25 +0000 |
commit | a830cd58ac3f146a797553abf6533b8fd3a5399d (patch) | |
tree | 4158d599f32e75956931c4b1badabfd3485391cb /media/base/stream_parser.cc | |
parent | 91e0e293fdf8be438d14b8ca25537fe3785aa3bf (diff) | |
download | chromium_src-a830cd58ac3f146a797553abf6533b8fd3a5399d.zip chromium_src-a830cd58ac3f146a797553abf6533b8fd3a5399d.tar.gz chromium_src-a830cd58ac3f146a797553abf6533b8fd3a5399d.tar.bz2 |
Move WebM specific code from ChunkDemuxer to WebMStreamParser.
Created StreamParser interface to allow ChunkDemuxer to support formats other than WebM.
BUG=108329
TEST=Existing ChunkDemuxer unittests
Review URL: http://codereview.chromium.org/9018019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116957 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/stream_parser.cc')
-rw-r--r-- | media/base/stream_parser.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/media/base/stream_parser.cc b/media/base/stream_parser.cc new file mode 100644 index 0000000..255cc6f --- /dev/null +++ b/media/base/stream_parser.cc @@ -0,0 +1,17 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "media/base/stream_parser.h" + +namespace media { + +StreamParserHost::StreamParserHost() {} + +StreamParserHost::~StreamParserHost() {} + +StreamParser::StreamParser() {} + +StreamParser::~StreamParser() {} + +} // namespace media |