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
3 // found in the LICENSE file.
5 #include "media/base/video_util.h"
9 #include "base/logging.h"
10 #include "media/base/video_frame.h"
11 #include "media/base/yuv_convert.h"
15 gfx::Size
GetNaturalSize(const gfx::Size
& visible_size
,
16 int aspect_ratio_numerator
,
17 int aspect_ratio_denominator
) {
18 if (aspect_ratio_denominator
== 0 ||
19 aspect_ratio_numerator
< 0 ||
20 aspect_ratio_denominator
< 0)
23 double aspect_ratio
= aspect_ratio_numerator
/
24 static_cast<double>(aspect_ratio_denominator
);
26 int width
= floor(visible_size
.width() * aspect_ratio
+ 0.5);
27 int height
= visible_size
.height();
29 // An even width makes things easier for YV12 and appears to be the behavior
30 // expected by WebKit layout tests.
31 return gfx::Size(width
& ~1, height
);
34 void CopyPlane(size_t plane
, const uint8
* source
, int stride
, int rows
,
36 uint8
* dest
= frame
->data(plane
);
37 int dest_stride
= frame
->stride(plane
);
39 // Clamp in case source frame has smaller stride.
40 int bytes_to_copy_per_row
= std::min(frame
->row_bytes(plane
), stride
);
42 // Clamp in case source frame has smaller height.
43 int rows_to_copy
= std::min(frame
->rows(plane
), rows
);
46 for (int row
= 0; row
< rows_to_copy
; ++row
) {
47 memcpy(dest
, source
, bytes_to_copy_per_row
);
53 void CopyYPlane(const uint8
* source
, int stride
, int rows
, VideoFrame
* frame
) {
54 CopyPlane(VideoFrame::kYPlane
, source
, stride
, rows
, frame
);
57 void CopyUPlane(const uint8
* source
, int stride
, int rows
, VideoFrame
* frame
) {
58 CopyPlane(VideoFrame::kUPlane
, source
, stride
, rows
, frame
);
61 void CopyVPlane(const uint8
* source
, int stride
, int rows
, VideoFrame
* frame
) {
62 CopyPlane(VideoFrame::kVPlane
, source
, stride
, rows
, frame
);
65 void CopyAPlane(const uint8
* source
, int stride
, int rows
, VideoFrame
* frame
) {
66 CopyPlane(VideoFrame::kAPlane
, source
, stride
, rows
, frame
);
69 void MakeOpaqueAPlane(int stride
, int rows
, VideoFrame
* frame
) {
70 int rows_to_clear
= std::min(frame
->rows(VideoFrame::kAPlane
), rows
);
71 memset(frame
->data(VideoFrame::kAPlane
), 255,
72 frame
->stride(VideoFrame::kAPlane
) * rows_to_clear
);
75 void FillYUV(VideoFrame
* frame
, uint8 y
, uint8 u
, uint8 v
) {
77 uint8
* y_plane
= frame
->data(VideoFrame::kYPlane
);
78 int y_rows
= frame
->rows(VideoFrame::kYPlane
);
79 int y_row_bytes
= frame
->row_bytes(VideoFrame::kYPlane
);
80 for (int i
= 0; i
< y_rows
; ++i
) {
81 memset(y_plane
, y
, y_row_bytes
);
82 y_plane
+= frame
->stride(VideoFrame::kYPlane
);
85 // Fill the U and V planes.
86 uint8
* u_plane
= frame
->data(VideoFrame::kUPlane
);
87 uint8
* v_plane
= frame
->data(VideoFrame::kVPlane
);
88 int uv_rows
= frame
->rows(VideoFrame::kUPlane
);
89 int u_row_bytes
= frame
->row_bytes(VideoFrame::kUPlane
);
90 int v_row_bytes
= frame
->row_bytes(VideoFrame::kVPlane
);
91 for (int i
= 0; i
< uv_rows
; ++i
) {
92 memset(u_plane
, u
, u_row_bytes
);
93 memset(v_plane
, v
, v_row_bytes
);
94 u_plane
+= frame
->stride(VideoFrame::kUPlane
);
95 v_plane
+= frame
->stride(VideoFrame::kVPlane
);
99 void FillYUVA(VideoFrame
* frame
, uint8 y
, uint8 u
, uint8 v
, uint8 a
) {
100 // Fill Y, U and V planes.
101 FillYUV(frame
, y
, u
, v
);
104 uint8
* a_plane
= frame
->data(VideoFrame::kAPlane
);
105 int a_rows
= frame
->rows(VideoFrame::kAPlane
);
106 int a_row_bytes
= frame
->row_bytes(VideoFrame::kAPlane
);
107 for (int i
= 0; i
< a_rows
; ++i
) {
108 memset(a_plane
, a
, a_row_bytes
);
109 a_plane
+= frame
->stride(VideoFrame::kAPlane
);
113 static void LetterboxPlane(VideoFrame
* frame
,
115 const gfx::Rect
& view_area
,
117 uint8
* ptr
= frame
->data(plane
);
118 const int rows
= frame
->rows(plane
);
119 const int row_bytes
= frame
->row_bytes(plane
);
120 const int stride
= frame
->stride(plane
);
122 CHECK_GE(stride
, row_bytes
);
123 CHECK_GE(view_area
.x(), 0);
124 CHECK_GE(view_area
.y(), 0);
125 CHECK_LE(view_area
.right(), row_bytes
);
126 CHECK_LE(view_area
.bottom(), rows
);
129 for (; y
< view_area
.y(); y
++) {
130 memset(ptr
, fill_byte
, row_bytes
);
133 if (view_area
.width() < row_bytes
) {
134 for (; y
< view_area
.bottom(); y
++) {
135 if (view_area
.x() > 0) {
136 memset(ptr
, fill_byte
, view_area
.x());
138 if (view_area
.right() < row_bytes
) {
139 memset(ptr
+ view_area
.right(),
141 row_bytes
- view_area
.right());
146 y
+= view_area
.height();
147 ptr
+= stride
* view_area
.height();
149 for (; y
< rows
; y
++) {
150 memset(ptr
, fill_byte
, row_bytes
);
155 void LetterboxYUV(VideoFrame
* frame
, const gfx::Rect
& view_area
) {
156 DCHECK(!(view_area
.x() & 1));
157 DCHECK(!(view_area
.y() & 1));
158 DCHECK(!(view_area
.width() & 1));
159 DCHECK(!(view_area
.height() & 1));
160 DCHECK(frame
->format() == VideoFrame::YV12
||
161 frame
->format() == VideoFrame::YV12J
||
162 frame
->format() == VideoFrame::I420
);
163 LetterboxPlane(frame
, VideoFrame::kYPlane
, view_area
, 0x00);
164 gfx::Rect
half_view_area(view_area
.x() / 2,
166 view_area
.width() / 2,
167 view_area
.height() / 2);
168 LetterboxPlane(frame
, VideoFrame::kUPlane
, half_view_area
, 0x80);
169 LetterboxPlane(frame
, VideoFrame::kVPlane
, half_view_area
, 0x80);
172 void RotatePlaneByPixels(
177 int rotation
, // Clockwise.
180 DCHECK((width
> 0) && (height
> 0) &&
181 ((width
& 1) == 0) && ((height
& 1) == 0) &&
182 (rotation
>= 0) && (rotation
< 360) && (rotation
% 90 == 0));
184 // Consolidate cases. Only 0 and 90 are left.
185 if (rotation
== 180 || rotation
== 270) {
187 flip_vert
= !flip_vert
;
188 flip_horiz
= !flip_horiz
;
191 int num_rows
= height
;
192 int num_cols
= width
;
193 int src_stride
= width
;
194 // During pixel copying, the corresponding incremental of dest pointer
195 // when src pointer moves to next row.
196 int dest_row_step
= width
;
197 // During pixel copying, the corresponding incremental of dest pointer
198 // when src pointer moves to next column.
199 int dest_col_step
= 1;
203 // Use pixel copying.
207 dest_row_step
= -width
;
208 dest
+= height
* width
- 1;
214 // Fast copy by rows.
215 dest
+= width
* (height
- 1);
216 for (int row
= 0; row
< height
; ++row
) {
217 memcpy(dest
, src
, width
);
222 memcpy(dest
, src
, width
* height
);
226 } else if (rotation
== 90) {
228 if (width
> height
) {
229 offset
= (width
- height
) / 2;
231 num_rows
= num_cols
= height
;
233 offset
= (height
- width
) / 2;
234 src
+= width
* offset
;
235 num_rows
= num_cols
= width
;
238 dest_col_step
= (flip_vert
? -width
: width
);
239 dest_row_step
= (flip_horiz
? 1 : -1);
242 dest
+= (width
> height
? width
* (height
- 1) + offset
:
243 width
* (height
- offset
- 1));
245 dest
+= (width
> height
? offset
: width
* offset
);
249 dest
+= (width
> height
? width
* height
- offset
- 1 :
250 width
* (height
- offset
) - 1);
252 dest
+= (width
> height
? width
- offset
- 1 :
253 width
* (offset
+ 1) - 1);
261 for (int row
= 0; row
< num_rows
; ++row
) {
262 const uint8
* src_ptr
= src
;
263 uint8
* dest_ptr
= dest
;
264 for (int col
= 0; col
< num_cols
; ++col
) {
265 *dest_ptr
= *src_ptr
++;
266 dest_ptr
+= dest_col_step
;
269 dest
+= dest_row_step
;
273 gfx::Rect
ComputeLetterboxRegion(const gfx::Rect
& bounds
,
274 const gfx::Size
& content
) {
275 // If |content| has an undefined aspect ratio, let's not try to divide by
277 if (content
.IsEmpty())
280 int64 x
= static_cast<int64
>(content
.width()) * bounds
.height();
281 int64 y
= static_cast<int64
>(content
.height()) * bounds
.width();
283 gfx::Size
letterbox(bounds
.width(), bounds
.height());
285 letterbox
.set_height(static_cast<int>(y
/ content
.width()));
287 letterbox
.set_width(static_cast<int>(x
/ content
.height()));
288 gfx::Rect result
= bounds
;
289 result
.ClampToCenteredSize(letterbox
);
293 void CopyRGBToVideoFrame(const uint8
* source
,
295 const gfx::Rect
& region_in_frame
,
297 const int kY
= VideoFrame::kYPlane
;
298 const int kU
= VideoFrame::kUPlane
;
299 const int kV
= VideoFrame::kVPlane
;
300 CHECK_EQ(frame
->stride(kU
), frame
->stride(kV
));
301 const int uv_stride
= frame
->stride(kU
);
303 if (region_in_frame
!= gfx::Rect(frame
->coded_size())) {
304 LetterboxYUV(frame
, region_in_frame
);
307 const int y_offset
= region_in_frame
.x()
308 + (region_in_frame
.y() * frame
->stride(kY
));
309 const int uv_offset
= region_in_frame
.x() / 2
310 + (region_in_frame
.y() / 2 * uv_stride
);
312 ConvertRGB32ToYUV(source
,
313 frame
->data(kY
) + y_offset
,
314 frame
->data(kU
) + uv_offset
,
315 frame
->data(kV
) + uv_offset
,
316 region_in_frame
.width(),
317 region_in_frame
.height(),