OLD | NEW |
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 #include "media/base/video_util.h" | 5 #include "media/base/video_util.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "media/base/video_frame.h" | 10 #include "media/base/video_frame.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } | 54 } |
55 | 55 |
56 void CopyUPlane(const uint8* source, int stride, int rows, VideoFrame* frame) { | 56 void CopyUPlane(const uint8* source, int stride, int rows, VideoFrame* frame) { |
57 CopyPlane(VideoFrame::kUPlane, source, stride, rows, frame); | 57 CopyPlane(VideoFrame::kUPlane, source, stride, rows, frame); |
58 } | 58 } |
59 | 59 |
60 void CopyVPlane(const uint8* source, int stride, int rows, VideoFrame* frame) { | 60 void CopyVPlane(const uint8* source, int stride, int rows, VideoFrame* frame) { |
61 CopyPlane(VideoFrame::kVPlane, source, stride, rows, frame); | 61 CopyPlane(VideoFrame::kVPlane, source, stride, rows, frame); |
62 } | 62 } |
63 | 63 |
| 64 void CopyAPlane(const uint8* source, int stride, int rows, VideoFrame* frame) { |
| 65 CopyPlane(VideoFrame::kAPlane, source, stride, rows, frame); |
| 66 } |
| 67 |
64 void FillYUV(VideoFrame* frame, uint8 y, uint8 u, uint8 v) { | 68 void FillYUV(VideoFrame* frame, uint8 y, uint8 u, uint8 v) { |
65 // Fill the Y plane. | 69 // Fill the Y plane. |
66 uint8* y_plane = frame->data(VideoFrame::kYPlane); | 70 uint8* y_plane = frame->data(VideoFrame::kYPlane); |
67 int y_rows = frame->rows(VideoFrame::kYPlane); | 71 int y_rows = frame->rows(VideoFrame::kYPlane); |
68 int y_row_bytes = frame->row_bytes(VideoFrame::kYPlane); | 72 int y_row_bytes = frame->row_bytes(VideoFrame::kYPlane); |
69 for (int i = 0; i < y_rows; ++i) { | 73 for (int i = 0; i < y_rows; ++i) { |
70 memset(y_plane, y, y_row_bytes); | 74 memset(y_plane, y, y_row_bytes); |
71 y_plane += frame->stride(VideoFrame::kYPlane); | 75 y_plane += frame->stride(VideoFrame::kYPlane); |
72 } | 76 } |
73 | 77 |
74 // Fill the U and V planes. | 78 // Fill the U and V planes. |
75 uint8* u_plane = frame->data(VideoFrame::kUPlane); | 79 uint8* u_plane = frame->data(VideoFrame::kUPlane); |
76 uint8* v_plane = frame->data(VideoFrame::kVPlane); | 80 uint8* v_plane = frame->data(VideoFrame::kVPlane); |
77 int uv_rows = frame->rows(VideoFrame::kUPlane); | 81 int uv_rows = frame->rows(VideoFrame::kUPlane); |
78 int u_row_bytes = frame->row_bytes(VideoFrame::kUPlane); | 82 int u_row_bytes = frame->row_bytes(VideoFrame::kUPlane); |
79 int v_row_bytes = frame->row_bytes(VideoFrame::kVPlane); | 83 int v_row_bytes = frame->row_bytes(VideoFrame::kVPlane); |
80 for (int i = 0; i < uv_rows; ++i) { | 84 for (int i = 0; i < uv_rows; ++i) { |
81 memset(u_plane, u, u_row_bytes); | 85 memset(u_plane, u, u_row_bytes); |
82 memset(v_plane, v, v_row_bytes); | 86 memset(v_plane, v, v_row_bytes); |
83 u_plane += frame->stride(VideoFrame::kUPlane); | 87 u_plane += frame->stride(VideoFrame::kUPlane); |
84 v_plane += frame->stride(VideoFrame::kVPlane); | 88 v_plane += frame->stride(VideoFrame::kVPlane); |
85 } | 89 } |
86 } | 90 } |
87 | 91 |
88 } // namespace media | 92 } // namespace media |
OLD | NEW |