diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-08-25 19:04:50 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2009-08-25 19:04:50 +0000 |
commit | b97ed8144bd9ced534f05cbc8f856005a1986727 (patch) | |
tree | ef807e4117d69f06290064983e230014930b8b9e /sys/dev/microcode/udl/build.c | |
parent | aea01db2a4f23f8c79715dd262eb9f58c5873976 (diff) |
16bit Huffman table for pixel difference compression on udl(4) devices.
Diffstat (limited to 'sys/dev/microcode/udl/build.c')
-rw-r--r-- | sys/dev/microcode/udl/build.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys/dev/microcode/udl/build.c b/sys/dev/microcode/udl/build.c new file mode 100644 index 00000000000..4d7c076e42b --- /dev/null +++ b/sys/dev/microcode/udl/build.c @@ -0,0 +1,46 @@ +/* $OpenBSD: build.c,v 1.1 2009/08/25 19:04:49 mglocker Exp $ */ + +/* + * Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> + +#include <err.h> +#include <fcntl.h> +#include <unistd.h> + +#include "udl_huffman.h" + +#define FILENAME "udl_huffman" + +int +main(void) +{ + int fd, i; + + fd = open(FILENAME, O_WRONLY | O_CREAT | O_TRUNC, 0644); + if (fd == -1) + err(1, "%s", FILENAME); + + for (i = 0; i < UDL_HUFFMAN_RECORDS; i++) { + udl_huffman[i].value = htobe32(udl_huffman[i].value); + write(fd, &udl_huffman[i], 5); + } + + close(fd); + + return (0); +} |