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

Unified Diff: media/filters/ffmpeg_video_decoder.cc

Issue 3189013: Add VP8 codec enum to video decoder. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 months 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
« no previous file with comments | « no previous file | media/filters/video_decode_engine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_video_decoder.cc
diff --git a/media/filters/ffmpeg_video_decoder.cc b/media/filters/ffmpeg_video_decoder.cc
index 7d73cc812e2358929e21c40b1a36decc8fdaef97..15453ffb2253722c3286853f72ef4e053dfdb097 100644
--- a/media/filters/ffmpeg_video_decoder.cc
+++ b/media/filters/ffmpeg_video_decoder.cc
@@ -89,6 +89,8 @@ void FFmpegVideoDecoder::Initialize(DemuxerStream* demuxer_stream,
config.codec_ = kCodecMPEG2; break;
case CODEC_ID_MPEG4:
config.codec_ = kCodecMPEG4; break;
+ case CODEC_ID_VP8:
+ config.codec_ = kCodecVP8; break;
default:
NOTREACHED();
}
« no previous file with comments | « no previous file | media/filters/video_decode_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698