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

Unified Diff: webkit/media/skcanvas_video_renderer.cc

Issue 10824141: Remove VideoDecoder::natural_size() & added VideoFrame::natural_size(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor cleanup Created 8 years, 5 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: webkit/media/skcanvas_video_renderer.cc
diff --git a/webkit/media/skcanvas_video_renderer.cc b/webkit/media/skcanvas_video_renderer.cc
index 0dfa8e2673e4fdcb857527ac194ab5734230c2d2..2db0f269dce156424b0845ee390d9d9c0a2a64f9 100644
--- a/webkit/media/skcanvas_video_renderer.cc
+++ b/webkit/media/skcanvas_video_renderer.cc
@@ -109,19 +109,19 @@ static void FastPaint(
DCHECK_NE(0, dest_rect.width());
DCHECK_NE(0, dest_rect.height());
size_t frame_clip_width = local_dest_irect.width() *
- video_frame->width() / local_dest_irect_saved.width();
+ video_frame->size().width() / local_dest_irect_saved.width();
size_t frame_clip_height = local_dest_irect.height() *
- video_frame->height() / local_dest_irect_saved.height();
+ video_frame->size().height() / local_dest_irect_saved.height();
// Project the "left" and "top" of the final destination rect to local
// coordinates of the video frame, use these values to find the offsets
// in the video frame to start reading.
size_t frame_clip_left =
(local_dest_irect.fLeft - local_dest_irect_saved.fLeft) *
- video_frame->width() / local_dest_irect_saved.width();
+ video_frame->size().width() / local_dest_irect_saved.width();
size_t frame_clip_top =
(local_dest_irect.fTop - local_dest_irect_saved.fTop) *
- video_frame->height() / local_dest_irect_saved.height();
+ video_frame->size().height() / local_dest_irect_saved.height();
// Use the "left" and "top" of the destination rect to locate the offset
// in Y, U and V planes.
@@ -171,11 +171,11 @@ static void ConvertVideoFrameToBitmap(
// Check if |bitmap| needs to be (re)allocated.
if (bitmap->isNull() ||
- bitmap->width() != static_cast<int>(video_frame->width()) ||
- bitmap->height() != static_cast<int>(video_frame->height())) {
+ bitmap->width() != video_frame->size().width() ||
+ bitmap->height() != video_frame->size().height()) {
bitmap->setConfig(SkBitmap::kARGB_8888_Config,
- video_frame->width(),
- video_frame->height());
+ video_frame->size().width(),
+ video_frame->size().height());
bitmap->allocPixels();
bitmap->setIsVolatile(true);
}
@@ -188,8 +188,8 @@ static void ConvertVideoFrameToBitmap(
video_frame->data(media::VideoFrame::kUPlane),
video_frame->data(media::VideoFrame::kVPlane),
static_cast<uint8*>(bitmap->getPixels()),
- video_frame->width(),
- video_frame->height(),
+ video_frame->size().width(),
+ video_frame->size().height(),
video_frame->stride(media::VideoFrame::kYPlane),
video_frame->stride(media::VideoFrame::kUPlane),
bitmap->rowBytes(),

Powered by Google App Engine
This is Rietveld 408576698