File: ff2pam.c

package info (click to toggle)
farbfeld 4-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 196 kB
  • sloc: ansic: 622; sh: 65; makefile: 59
file content (55 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* See LICENSE file for copyright and license details. */
#include <arpa/inet.h>

#include <errno.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "util.h"

static void
usage(void)
{
	die("usage: %s", argv0);
}

int
main(int argc, char *argv[])
{
	size_t rowlen;
	uint32_t width, height, i;
	uint16_t *row;

	/* arguments */
	argv0 = argv[0], argc--, argv++;

	if (argc) {
		usage();
	}

	/* prepare */
	ff_read_header(&width, &height);
	row = ereallocarray(NULL, width, (sizeof("RGBA") - 1) * sizeof(uint16_t));
	rowlen = width * (sizeof("RGBA") - 1);

	/* write data */
	printf("P7\n"
	       "WIDTH %" PRIu32 "\n"
	       "HEIGHT %" PRIu32 "\n"
	       "DEPTH 4\n" /* number of channels */
	       "MAXVAL 65535\n"
	       "TUPLTYPE RGB_ALPHA\n"
	       "ENDHDR\n",
	       width, height);

	for (i = 0; i < height; i++) {
		efread(row, sizeof(uint16_t), rowlen, stdin);
		efwrite(row, sizeof(uint16_t), rowlen, stdout);
	}

	return fshut(stdout, "<stdout>");
}