| Index: media/filters/stream_parser_factory.cc
|
| diff --git a/media/filters/stream_parser_factory.cc b/media/filters/stream_parser_factory.cc
|
| index b47fa753733dd507858b535a5cb8710d61b9f9ec..393a3d536f9c2da9e6f60db51edba0db1d12cd8d 100644
|
| --- a/media/filters/stream_parser_factory.cc
|
| +++ b/media/filters/stream_parser_factory.cc
|
| @@ -69,6 +69,7 @@ struct SupportedTypeInfo {
|
| const CodecInfo** codecs;
|
| };
|
|
|
| +/*
|
| static const CodecInfo kVP8CodecInfo = { "vp8", CodecInfo::VIDEO, NULL,
|
| CodecInfo::HISTOGRAM_VP8 };
|
| static const CodecInfo kVP9CodecInfo = { "vp9", CodecInfo::VIDEO, NULL,
|
| @@ -96,7 +97,7 @@ static StreamParser* BuildWebMParser(
|
| const std::vector<std::string>& codecs,
|
| const LogCB& log_cb) {
|
| return new WebMStreamParser();
|
| -}
|
| +}*/
|
|
|
| #if defined(USE_PROPRIETARY_CODECS)
|
| // AAC Object Type IDs that Chrome supports.
|
| @@ -232,8 +233,8 @@ static StreamParser* BuildMP2TParser(
|
|
|
|
|
| static const SupportedTypeInfo kSupportedTypeInfo[] = {
|
| - { "video/webm", &BuildWebMParser, kVideoWebMCodecs },
|
| - { "audio/webm", &BuildWebMParser, kAudioWebMCodecs },
|
| +// { "video/webm", &BuildWebMParser, kVideoWebMCodecs },
|
| +// { "audio/webm", &BuildWebMParser, kAudioWebMCodecs },
|
| #if defined(USE_PROPRIETARY_CODECS)
|
| { "audio/aac", &BuildADTSParser, kAudioADTSCodecs },
|
| { "audio/mpeg", &BuildMP3Parser, kAudioMP3Codecs },
|
|
|