Home | History | Annotate | Download | only in base

Lines Matching full:rows

34 void CopyPlane(size_t plane, const uint8* source, int stride, int rows,
43 int rows_to_copy = std::min(frame->rows(plane), rows);
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);
78 int y_rows = frame->rows(VideoFrame::kYPlane);
88 int uv_rows = frame->rows(VideoFrame::kUPlane);
104 const int rows = frame->rows(plane);
112 CHECK_LE(view_area.bottom(), rows);
135 for (; y < rows; y++) {
200 // Fast copy by rows.