aboutsummaryrefslogtreecommitdiffstats
path: root/src/blind-transpose.c
blob: 750de0202bf5f0d735575445dca503957987cea3 (plain) (blame)
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
56
57
/* See LICENSE file for copyright and license details. */
#include "stream.h"
#include "util.h"

USAGE("")

static size_t srcw, srch, srcwps, srchps, ps;

#define PROCESS(TYPE)\
	do {\
		size_t x, i, n = ps / sizeof(TYPE);\
		char *src, *img;\
		for (x = 0; x < srchps; x += ps) {\
			img = row + x;\
			src = col + x * srcw;\
			for (i = 0; i < n; i++)\
				((TYPE *)img)[i] = ((TYPE *)src)[i];\
		}\
	} while (0)

static void process_long(char *row, char *col) {PROCESS(long);}
static void process_char(char *row, char *col) {PROCESS(char);}

int
main(int argc, char *argv[])
{
	struct stream stream;
	char *buf, *image;
	size_t y;
	void (*process)(char *row, char *col);

	UNOFLAGS(argc);

	eopen_stream(&stream, NULL);
	echeck_dimensions(&stream, WIDTH | HEIGHT, NULL);
	srch = stream.height, srchps = stream.col_size;
	srcw = stream.width,  srcwps = stream.row_size;
	stream.height = srcw;
	stream.width  = srch;
	fprint_stream_head(stdout, &stream);
	efflush(stdout, "<stdout>");

	buf   = emalloc(stream.frame_size);
	image = emalloc(srchps);

	process = ps % sizeof(long) ? process_char : process_long;
	while (eread_frame(&stream, buf)) {
		for (y = 0; y < srcwps; y += ps) {
			process(image, buf + y);
			ewriteall(STDOUT_FILENO, image, srchps, "<stdout>");
		}
	}

	free(buf);
	free(image);
	return 0;
}