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

Unified Diff: media/base/video_frame.cc

Issue 187573006: Allow wrapping a media::VideoFrame with a new view_rect. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only allow sub rect of original view_rect. Created 6 years, 10 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 | « media/base/video_frame.h ('k') | media/base/video_frame_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/video_frame.cc
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc
index b3458a5954992b542094c217e46011d77576f7b5..30847fbb398dad6dabee9d9afba1ba3412f66915 100644
--- a/media/base/video_frame.cc
+++ b/media/base/video_frame.cc
@@ -180,9 +180,14 @@ scoped_refptr<VideoFrame> VideoFrame::WrapExternalYuvData(
// static
scoped_refptr<VideoFrame> VideoFrame::WrapVideoFrame(
const scoped_refptr<VideoFrame>& frame,
+ const gfx::Rect& visible_rect,
const base::Closure& no_longer_needed_cb) {
+ DCHECK(visible_rect.x() >= frame->visible_rect().x() &&
+ visible_rect.y() >= frame->visible_rect().y() &&
+ visible_rect.right() <= frame->visible_rect().right() &&
+ visible_rect.bottom() <= frame->visible_rect().bottom());
Ami GONE FROM CHROMIUM 2014/03/05 20:05:13 aka DCHECK(frame->visible_rect().Contains(visible_
perkj_chrome 2014/03/06 07:40:14 thanks.
scoped_refptr<VideoFrame> wrapped_frame(new VideoFrame(
- frame->format(), frame->coded_size(), frame->visible_rect(),
+ frame->format(), frame->coded_size(), visible_rect,
frame->natural_size(), frame->GetTimestamp(), frame->end_of_stream()));
for (size_t i = 0; i < NumPlanes(frame->format()); ++i) {
« no previous file with comments | « media/base/video_frame.h ('k') | media/base/video_frame_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698