Lines Matching full:img
454 prefix = strdup("img");
539 vpx_image_t *img;
563 if ((img = vpx_codec_get_frame(&decoder, &iter)))
568 if (img)
578 prefix, img->d_w, img->d_h, frame_in, sfx);
584 buf = img->planes[VPX_PLANE_Y];
586 for (y = 0; y < img->d_h; y++)
588 out_put(out, buf, img->d_w, do_md5);
589 buf += img->stride[VPX_PLANE_Y];
592 buf = img->planes[flipuv?VPX_PLANE_V:VPX_PLANE_U];
594 for (y = 0; y < (1 + img->d_h) / 2; y++)
596 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
597 buf += img->stride[VPX_PLANE_U];
600 buf = img->planes[flipuv?VPX_PLANE_U:VPX_PLANE_V];
602 for (y = 0; y < (1 + img->d_h) / 2; y++)
604 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
605 buf += img->stride[VPX_PLANE_V];