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

Unified Diff: media/webm/webm_tracks_parser.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: Uncomment VP9 stuff in ffmpeg_common. 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/webm/webm_tracks_parser.cc
diff --git a/media/webm/webm_tracks_parser.cc b/media/webm/webm_tracks_parser.cc
index 3fb7a0f81bf3c2a3ed33caac2f1420d0398aedab..423c842b1c8b5e4ba53ec9f28d18c796734eb5ff 100644
--- a/media/webm/webm_tracks_parser.cc
+++ b/media/webm/webm_tracks_parser.cc
@@ -139,7 +139,7 @@ bool WebMTracksParser::OnBinary(int id, const uint8* data, int size) {
bool WebMTracksParser::OnString(int id, const std::string& str) {
if (id == kWebMIdCodecID && str != "A_VORBIS" && str != "A_OPUS" &&
- str != "V_VP8") {
+ str != "V_VP8" && str != "V_VP9") {
MEDIA_LOG(log_cb_) << "Unexpected CodecID " << str;
return false;
}

Powered by Google App Engine
This is Rietveld 408576698