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

Unified Diff: cc/resources/video_resource_updater.h

Issue 2242453002: Avoid planar YUV resources when one component EGL images are not supported (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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: cc/resources/video_resource_updater.h
diff --git a/cc/resources/video_resource_updater.h b/cc/resources/video_resource_updater.h
index a5c063dd7681dad8dc4b8839575a5a810351f1d4..88fe4151a7b2d306be2c791385423543a3a8daaf 100644
--- a/cc/resources/video_resource_updater.h
+++ b/cc/resources/video_resource_updater.h
@@ -136,13 +136,21 @@ class CC_EXPORT VideoResourceUpdater
// This needs to be a container where iterators can be erased without
// invalidating other iterators.
typedef std::list<PlaneResource> ResourceList;
+ ResourceList::iterator RecycleOrAllocateResource(
+ const gfx::Size& resource_size,
+ ResourceFormat resource_format,
+ const gfx::ColorSpace& color_space,
+ bool software_resource,
+ bool immutable_hint,
+ int unique_id,
+ int plane_index);
ResourceList::iterator AllocateResource(const gfx::Size& plane_size,
ResourceFormat format,
const gfx::ColorSpace& color_space,
bool has_mailbox,
bool immutable_hint);
void DeleteResource(ResourceList::iterator resource_it);
- void CopyPlaneTexture(media::VideoFrame* video_frame,
+ bool CopyPlaneTexture(media::VideoFrame* video_frame,
const gpu::MailboxHolder& mailbox_holder,
VideoFrameExternalResources* external_resources);
VideoFrameExternalResources CreateForHardwarePlanes(

Powered by Google App Engine
This is Rietveld 408576698