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

Unified Diff: content/gpu/gpu_main.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: cl feedback. 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: content/gpu/gpu_main.cc
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
index 973b0a02e725649ad004d27bde5fdeb1f6424b19..f34d82e85e0664747ccfc259cc2ae8ae815957c5 100644
--- a/content/gpu/gpu_main.cc
+++ b/content/gpu/gpu_main.cc
@@ -364,8 +364,8 @@ int GpuMain(const MainFunctionParams& parameters) {
gpu_info.sandboxed = Sandbox::SandboxIsCurrentlyActive();
#endif
- gpu_info.video_decode_accelerator_supported_profiles =
- content::GpuVideoDecodeAccelerator::GetSupportedProfiles();
+ gpu_info.video_decode_accelerator_capabilities =
+ content::GpuVideoDecodeAccelerator::GetCapabilities();
gpu_info.video_encode_accelerator_supported_profiles =
content::GpuVideoEncodeAccelerator::GetSupportedProfiles();
gpu_info.jpeg_decode_accelerator_supported =

Powered by Google App Engine
This is Rietveld 408576698