Searched refs:ofd (Results 1 – 1 of 1) sorted by relevance
/development/tools/yuv420sp2rgb/ |
D | yuv420sp2rgb.c | 200 int ifd, ofd, rc; in convert() local 235 ofd = open(outfile, O_RDWR | O_CREAT, 0664); in convert() 236 FAILIF(ofd < 0, "open(%s) failed: %s (%d)\n", in convert() 245 FAILIF(ftruncate(ofd, outsize) < 0, in convert() 250 out = mmap(0, outsize, PROT_WRITE, MAP_SHARED, ofd, 0); in convert() 255 FAILIF(write(ofd, header, header_size) != header_size, in convert()
|