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

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

Issue 1345943009: Reland: Add accelerated VP9 decode infrastructure and an implementation for VA-API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/gpu/media/vaapi_video_decode_accelerator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/vaapi_video_decode_accelerator.h
diff --git a/content/common/gpu/media/vaapi_video_decode_accelerator.h b/content/common/gpu/media/vaapi_video_decode_accelerator.h
index 268439b96bc4dad249401bf99f5570dda48862bc..fe929381218190bbe95247e46018877db36604eb 100644
--- a/content/common/gpu/media/vaapi_video_decode_accelerator.h
+++ b/content/common/gpu/media/vaapi_video_decode_accelerator.h
@@ -73,6 +73,7 @@ class CONTENT_EXPORT VaapiVideoDecodeAccelerator
private:
class VaapiH264Accelerator;
class VaapiVP8Accelerator;
+ class VaapiVP9Accelerator;
// Notify the client that an error has occurred and decoding cannot continue.
void NotifyError(Error error);
@@ -275,6 +276,7 @@ class CONTENT_EXPORT VaapiVideoDecodeAccelerator
// Accelerators come after vaapi_wrapper_ to ensure they are destroyed first.
scoped_ptr<VaapiH264Accelerator> h264_accelerator_;
scoped_ptr<VaapiVP8Accelerator> vp8_accelerator_;
+ scoped_ptr<VaapiVP9Accelerator> vp9_accelerator_;
// After *_accelerator_ to ensure correct destruction order.
scoped_ptr<AcceleratedVideoDecoder> decoder_;
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/gpu/media/vaapi_video_decode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698