Chromium Code Reviews| Index: media/filters/stream_parser_factory.cc |
| diff --git a/media/filters/stream_parser_factory.cc b/media/filters/stream_parser_factory.cc |
| index 0cd8b9a0b435ba1fecc4ddb07cc2d8ee848ea2cc..4f664a27abce1be32054b8c2728bd5246a2521ee 100644 |
| --- a/media/filters/stream_parser_factory.cc |
| +++ b/media/filters/stream_parser_factory.cc |
| @@ -42,10 +42,12 @@ struct SupportedTypeInfo { |
| }; |
| static const CodecInfo kVP8CodecInfo = { "vp8", CodecInfo::VIDEO, NULL }; |
| +static const CodecInfo kVP9CodecInfo = { "vp9", CodecInfo::VIDEO, NULL }; |
| static const CodecInfo kVorbisCodecInfo = { "vorbis", CodecInfo::AUDIO, NULL }; |
| static const CodecInfo* kVideoWebMCodecs[] = { |
| &kVP8CodecInfo, |
| + &kVP9CodecInfo, |
|
acolwell GONE FROM CHROMIUM
2013/04/04 22:49:28
Is VP9 decoding on by default now? If not then thi
Tom Finegan
2013/04/05 03:35:06
Added a hackish fix for this, PTAL.
|
| &kVorbisCodecInfo, |
| NULL |
| }; |