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

Side by Side Diff: media/blink/skcanvas_video_renderer.h

Issue 1144323003: media: Refactor SkCanvasVideoRenderer to use SkImages and not SkBitmaps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/scoped_refptr<VideoFrame>&/VideoFrame*/ where possible. Created 5 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 unified diff | Download patch
« no previous file with comments | « media/base/run_all_unittests.cc ('k') | media/blink/skcanvas_video_renderer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_ 5 #ifndef MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_
6 #define MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_ 6 #define MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "base/timer/timer.h" 10 #include "base/timer/timer.h"
11 #include "media/base/media_export.h" 11 #include "media/base/media_export.h"
12 #include "media/base/video_frame.h"
12 #include "media/base/video_rotation.h" 13 #include "media/base/video_rotation.h"
13 #include "media/filters/context_3d.h" 14 #include "media/filters/context_3d.h"
14 #include "third_party/skia/include/core/SkBitmap.h" 15 #include "skia/ext/refptr.h"
15 #include "third_party/skia/include/core/SkImage.h" 16 #include "third_party/skia/include/core/SkImage.h"
16 #include "third_party/skia/include/core/SkXfermode.h" 17 #include "third_party/skia/include/core/SkXfermode.h"
17 #include "ui/gfx/geometry/rect.h" 18 #include "ui/gfx/geometry/rect.h"
18 19
19 class SkCanvas; 20 class SkCanvas;
21 class SkImage;
20 22
21 namespace media { 23 namespace media {
22
23 class VideoFrame;
24 class VideoImageGenerator; 24 class VideoImageGenerator;
25 25
26 // Handles rendering of VideoFrames to SkCanvases, doing any necessary YUV 26 // Handles rendering of VideoFrames to SkCanvases.
27 // conversion and caching of resulting RGB bitmaps.
28 class MEDIA_EXPORT SkCanvasVideoRenderer { 27 class MEDIA_EXPORT SkCanvasVideoRenderer {
29 public: 28 public:
30 SkCanvasVideoRenderer(); 29 SkCanvasVideoRenderer();
31 ~SkCanvasVideoRenderer(); 30 ~SkCanvasVideoRenderer();
32 31
33 // Paints |video_frame| on |canvas|, scaling and rotating the result to fit 32 // Paints |video_frame| on |canvas|, scaling and rotating the result to fit
34 // dimensions specified by |dest_rect|. 33 // dimensions specified by |dest_rect|.
35 // If the format of |video_frame| is PIXEL_FORMAT_NATIVE_TEXTURE, |context_3d| 34 // If the format of |video_frame| is PIXEL_FORMAT_NATIVE_TEXTURE, |context_3d|
36 // must be provided. 35 // must be provided.
37 // 36 //
38 // Black will be painted on |canvas| if |video_frame| is null. 37 // Black will be painted on |canvas| if |video_frame| is null.
39 void Paint(const scoped_refptr<VideoFrame>& video_frame, 38 void Paint(const scoped_refptr<VideoFrame>& video_frame,
40 SkCanvas* canvas, 39 SkCanvas* canvas,
41 const gfx::RectF& dest_rect, 40 const gfx::RectF& dest_rect,
42 uint8 alpha, 41 uint8 alpha,
43 SkXfermode::Mode mode, 42 SkXfermode::Mode mode,
44 VideoRotation video_rotation, 43 VideoRotation video_rotation,
45 const Context3D& context_3d); 44 const Context3D& context_3d);
46 45
47 // Copy |video_frame| on |canvas|. 46 // Copy |video_frame| on |canvas|.
48 // If the format of |video_frame| is PIXEL_FORMAT_NATIVE_TEXTURE, |context_3d| 47 // If the format of |video_frame| is PIXEL_FORMAT_NATIVE_TEXTURE, |context_3d|
49 // must be provided. 48 // must be provided.
50 void Copy(const scoped_refptr<VideoFrame>& video_frame, 49 void Copy(const scoped_refptr<VideoFrame>& video_frame,
51 SkCanvas* canvas, 50 SkCanvas* canvas,
52 const Context3D& context_3d); 51 const Context3D& context_3d);
53 52
54 // Convert the contents of |video_frame| to raw RGB pixels. |rgb_pixels| 53 // Convert the contents of |video_frame| to raw RGB pixels. |rgb_pixels|
55 // should point into a buffer large enough to hold as many 32 bit RGBA pixels 54 // should point into a buffer large enough to hold as many 32 bit RGBA pixels
56 // as are in the visible_rect() area of the frame. 55 // as are in the visible_rect() area of the frame.
57 static void ConvertVideoFrameToRGBPixels( 56 static void ConvertVideoFrameToRGBPixels(const media::VideoFrame* video_frame,
58 const scoped_refptr<media::VideoFrame>& video_frame, 57 void* rgb_pixels,
59 void* rgb_pixels, 58 size_t row_bytes);
60 size_t row_bytes);
61 59
62 // Copy the contents of texture of |video_frame| to texture |texture|. 60 // Copy the contents of texture of |video_frame| to texture |texture|.
63 // |level|, |internal_format|, |type| specify target texture |texture|. 61 // |level|, |internal_format|, |type| specify target texture |texture|.
64 // The format of |video_frame| must be VideoFrame::NATIVE_TEXTURE. 62 // The format of |video_frame| must be VideoFrame::NATIVE_TEXTURE.
65 static void CopyVideoFrameSingleTextureToGLTexture( 63 static void CopyVideoFrameSingleTextureToGLTexture(
66 gpu::gles2::GLES2Interface* gl, 64 gpu::gles2::GLES2Interface* gl,
67 VideoFrame* video_frame, 65 VideoFrame* video_frame,
68 unsigned int texture, 66 unsigned int texture,
69 unsigned int internal_format, 67 unsigned int internal_format,
70 unsigned int type, 68 unsigned int type,
71 bool premultiply_alpha, 69 bool premultiply_alpha,
72 bool flip_y); 70 bool flip_y);
73 71
74 private: 72 private:
75 void ResetLastFrame(); 73 void ResetCache();
76 void ResetAcceleratedLastFrame();
77 74
78 // An RGB bitmap and corresponding timestamp of the previously converted 75 // Last image used to draw to the canvas.
79 // video frame data by software color space conversion. 76 skia::RefPtr<SkImage> last_image_;
80 SkBitmap last_frame_; 77 // Timestamp of the videoframe used to generate |last_image_|.
81 base::TimeDelta last_frame_timestamp_; 78 base::TimeDelta last_timestamp_ = media::kNoTimestamp();
82 // If |last_frame_| is not used for a while, it's deleted to save memory. 79 // If |last_image_| is not used for a while, it's deleted to save memory.
83 base::DelayTimer<SkCanvasVideoRenderer> frame_deleting_timer_; 80 base::DelayTimer<SkCanvasVideoRenderer> last_image_deleting_timer_;
84
85 // This is a hardware accelerated copy of the frame generated by
86 // |accelerated_generator_|.
87 // It's used when |canvas| parameter in Paint() is Ganesh canvas.
88 // Note: all GrContext in SkCanvas instances are same.
89 scoped_ptr<SkImage> accelerated_last_image_;
90 SkBitmap accelerated_last_frame_;
91 VideoImageGenerator* accelerated_generator_;
92 base::TimeDelta accelerated_last_frame_timestamp_;
93 base::DelayTimer<SkCanvasVideoRenderer> accelerated_frame_deleting_timer_;
94 81
95 DISALLOW_COPY_AND_ASSIGN(SkCanvasVideoRenderer); 82 DISALLOW_COPY_AND_ASSIGN(SkCanvasVideoRenderer);
96 }; 83 };
97 84
98 } // namespace media 85 } // namespace media
99 86
100 #endif // MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_ 87 #endif // MEDIA_BLINK_SKCANVAS_VIDEO_RENDERER_H_
OLDNEW
« no previous file with comments | « media/base/run_all_unittests.cc ('k') | media/blink/skcanvas_video_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698