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

Unified Diff: webkit/plugins/ppapi/content_decryptor_delegate.cc

Issue 11269017: Plumb through cropped output size for VideoFrame (Closed) Base URL: https://git.chromium.org/git/chromium/src@git-svn
Patch Set: Found the windows failure, and fixed it. Thanks akalin@ Created 8 years, 1 month 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 | « webkit/media/webvideoframe_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/content_decryptor_delegate.cc
diff --git a/webkit/plugins/ppapi/content_decryptor_delegate.cc b/webkit/plugins/ppapi/content_decryptor_delegate.cc
index 3c008656382528ee2b20ecc2db2134607f01ef8f..f0174c8ed3e424e5108b297346ba986c865b5178 100644
--- a/webkit/plugins/ppapi/content_decryptor_delegate.cc
+++ b/webkit/plugins/ppapi/content_decryptor_delegate.cc
@@ -784,7 +784,7 @@ void ContentDecryptorDelegate::DeliverFrame(
// managed by the PPB_Buffer_Dev, and avoid the extra copy.
scoped_refptr<media::VideoFrame> decoded_frame(
media::VideoFrame::CreateFrame(
- format, frame_size, frame_size,
+ format, frame_size, gfx::Rect(frame_size), frame_size,
base::TimeDelta::FromMicroseconds(
frame_info->tracking_info.timestamp)));
« no previous file with comments | « webkit/media/webvideoframe_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698