Lines Matching defs:yuv
65 YUV,
245 // (http://www.fourcc.org/yuv.php#IMC4). This is a very convenient format for
247 // format=YUV: just save the Y/U/V/A planes sequentially without header.
252 const WebPYUVABuffer* const yuv = &buffer->u.YUVA;
255 const int pad = (format == YUV) ? 0 : 1;
259 const int a_height = yuv->a ? height : 0;
265 ok &= (fwrite(yuv->y + y * yuv->y_stride, width, 1, fout) == 1);
272 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
273 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1);
277 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
280 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1);
284 ok &= (fwrite(yuv->a + y * yuv->a_stride, width, 1, fout) == 1);
323 } else if (format == PGM || format == YUV) {
348 " -pgm ......... save the raw YUV samples as a grayscale PGM\n"
350 " -yuv ......... save the raw YUV samples in flat layout.\n"
411 } else if (!strcmp(argv[c], "-yuv")) {
412 format = YUV;
485 case YUV: