Home | History | Annotate | Download | only in source

Lines Matching refs:row

16 #include "libyuv/row.h"
86 // Copy a row of Bayer.
357 return -1; // Size too large for row buffer
378 SIMD_ALIGNED(uint8 row[kMaxStride * 2]);
415 BayerRow0(src_bayer, src_stride_bayer, row, width);
417 row + kMaxStride, width);
418 ARGBToUVRow(row, kMaxStride, dst_u, dst_v, width);
419 ARGBToYRow(row, dst_y, width);
420 ARGBToYRow(row + kMaxStride, dst_y + dst_stride_y, width);
427 BayerRow0(src_bayer, src_stride_bayer, row, width);
428 ARGBToUVRow(row, 0, dst_u, dst_v, width);
429 ARGBToYRow(row, dst_y, width);
467 SIMD_ALIGNED(uint8 row[kMaxStride]);
485 I422ToARGBRow(src_y, src_u, src_v, row, width);
486 ARGBToBayerRow(row, dst_bayer, index_map[y & 1], width);