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

Unified Diff: media/renderers/gpu_video_accelerator_factories.h

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
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/renderers/mock_gpu_video_accelerator_factories.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/renderers/gpu_video_accelerator_factories.h
diff --git a/media/renderers/gpu_video_accelerator_factories.h b/media/renderers/gpu_video_accelerator_factories.h
index 329f4b4e1a69882bf881a7e352cf4452623d04fc..c9ac36fbbcf6e28682d645be1e156269b8f93643 100644
--- a/media/renderers/gpu_video_accelerator_factories.h
+++ b/media/renderers/gpu_video_accelerator_factories.h
@@ -97,9 +97,10 @@ class MEDIA_EXPORT GpuVideoAcceleratorFactories {
// Returns the task runner the video accelerator runs on.
virtual scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner() = 0;
- // Returns the supported codec profiles of video decode accelerator.
- virtual VideoDecodeAccelerator::SupportedProfiles
- GetVideoDecodeAcceleratorSupportedProfiles() = 0;
+ // Return the capabilities of video decode accelerator, which includes the
+ // supported codec profiles.
+ virtual VideoDecodeAccelerator::Capabilities
+ GetVideoDecodeAcceleratorCapabilities() = 0;
// Returns the supported codec profiles of video encode accelerator.
virtual VideoEncodeAccelerator::SupportedProfiles
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/renderers/mock_gpu_video_accelerator_factories.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698