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

Unified Diff: media/video/video_decode_accelerator.cc

Issue 1490333005: Don't require VDAs to return all PictureBuffers at once. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved flags into VDA::Capabilities. Created 5 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/video/video_decode_accelerator.cc
diff --git a/media/video/video_decode_accelerator.cc b/media/video/video_decode_accelerator.cc
index 7449a2aec7f56c087b59183c1d8f70494a077a65..97ce1740783536120221be9c19b2962b724a4180 100644
--- a/media/video/video_decode_accelerator.cc
+++ b/media/video/video_decode_accelerator.cc
@@ -30,12 +30,13 @@ GLenum VideoDecodeAccelerator::GetSurfaceInternalFormat() const {
}
VideoDecodeAccelerator::SupportedProfile::SupportedProfile()
- : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN) {
-}
+ : profile(media::VIDEO_CODEC_PROFILE_UNKNOWN) {}
VideoDecodeAccelerator::SupportedProfile::~SupportedProfile() {
}
+VideoDecodeAccelerator::Capabilities::Capabilities() : flags(kNoFlags) {}
+
} // namespace media
namespace std {

Powered by Google App Engine
This is Rietveld 408576698