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

Unified Diff: content/common/gpu/media/vaapi_video_encode_accelerator.h

Issue 568413002: Add VEA supported profiles to GPUInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo and update gpu_info_unittest Created 6 years, 3 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
Index: content/common/gpu/media/vaapi_video_encode_accelerator.h
diff --git a/content/common/gpu/media/vaapi_video_encode_accelerator.h b/content/common/gpu/media/vaapi_video_encode_accelerator.h
index 8a7811a3ec7808fcf3c352550b717591280823f6..ed5b5cd2647999a0e81d36e1fb12b9fdab4bb70e 100644
--- a/content/common/gpu/media/vaapi_video_encode_accelerator.h
+++ b/content/common/gpu/media/vaapi_video_encode_accelerator.h
@@ -29,6 +29,8 @@ class CONTENT_EXPORT VaapiVideoEncodeAccelerator
virtual ~VaapiVideoEncodeAccelerator();
// media::VideoEncodeAccelerator implementation.
+ virtual std::vector<media::VideoEncodeAccelerator::SupportedProfile>
+ GetSupportedProfiles() OVERRIDE;
virtual bool Initialize(media::VideoFrame::Format format,
const gfx::Size& input_visible_size,
media::VideoCodecProfile output_profile,
@@ -42,9 +44,6 @@ class CONTENT_EXPORT VaapiVideoEncodeAccelerator
uint32 framerate) OVERRIDE;
virtual void Destroy() OVERRIDE;
- static std::vector<media::VideoEncodeAccelerator::SupportedProfile>
- GetSupportedProfiles();
-
private:
// Reference picture list.
typedef std::list<scoped_refptr<VASurface> > RefPicList;

Powered by Google App Engine
This is Rietveld 408576698