Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: media/filters/chunk_demuxer.cc

Issue 11468018: Add libvpx wrapper to media to support VP9 video decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add work around for lack of VP9 in ffmpeg. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/filters/chunk_demuxer.cc
diff --git a/media/filters/chunk_demuxer.cc b/media/filters/chunk_demuxer.cc
index c24528177205f062772182f12f58d951e3766237..c2d57c8fbc4752e0c0e822d0584dfa0b6fc51879 100644
--- a/media/filters/chunk_demuxer.cc
+++ b/media/filters/chunk_demuxer.cc
@@ -40,10 +40,12 @@ struct SupportedTypeInfo {
};
static const CodecInfo kVP8CodecInfo = { "vp8", DemuxerStream::VIDEO };
+static const CodecInfo kVP9CodecInfo = { "vp9", DemuxerStream::VIDEO };
static const CodecInfo kVorbisCodecInfo = { "vorbis", DemuxerStream::AUDIO };
static const CodecInfo* kVideoWebMCodecs[] = {
&kVP8CodecInfo,
+ &kVP9CodecInfo,
scherkus (not reviewing) 2012/12/18 01:01:56 if vp9 isn't expected to work with media source, t
Tom Finegan 2012/12/18 01:47:42 Forgot to remove this, done.
&kVorbisCodecInfo,
NULL
};

Powered by Google App Engine
This is Rietveld 408576698