summaryrefslogtreecommitdiffstats
path: root/all_pairs/source/cjpeg_wrbmp/jconfig.h
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2019-10-07 19:13:39 -0400
commit386b7d3366f1359a265da207a9cafa3edf553b64 (patch)
treec76120c2c138faed822e4ae386be6ef22a738a78 /all_pairs/source/cjpeg_wrbmp/jconfig.h
parent54a3f7091a2146b29c73a6fdc4b62a5c4ad7a3d8 (diff)
Reorganize and commit all the modified TACLeBench code and run scripts
Diffstat (limited to 'all_pairs/source/cjpeg_wrbmp/jconfig.h')
-rw-r--r--all_pairs/source/cjpeg_wrbmp/jconfig.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/all_pairs/source/cjpeg_wrbmp/jconfig.h b/all_pairs/source/cjpeg_wrbmp/jconfig.h
new file mode 100644
index 0000000..9c73988
--- /dev/null
+++ b/all_pairs/source/cjpeg_wrbmp/jconfig.h
@@ -0,0 +1,65 @@
1/*
2
3 This program is part of the TACLeBench benchmark suite.
4 Version V 1.x
5
6 Name: cderror.h
7
8 Author: Thomas G. Lane.
9
10 This file is part of the Independent JPEG Group's software.
11 For conditions of distribution and use, see the accompanying README file.
12
13 Source: Independent JPEG Group's software
14
15 Changes: no major functional changes
16
17 License: See the accompanying README files
18*/
19
20#ifndef JCONFIG_H
21#define JCONFIG_H
22
23#define CJPEG_WRBMP_HAVE_PROTOTYPES
24#define CJPEG_WRBMP_HAVE_UNSIGNED_CHAR
25#define CJPEG_WRBMP_HAVE_UNSIGNED_SHORT
26#undef void
27#undef const
28#undef CHAR_IS_UNSIGNED
29#define CJPEG_WRBMP_HAVE_STDDEF_H
30#define CJPEG_WRBMP_HAVE_STDLIB_H
31#undef NEED_BSD_STRINGS
32#undef NEED_SYS_TYPES_H
33#undef CJPEG_JPEG6B_WRBMP_NEED_FAR_POINTERS
34#undef NEED_SHORT_EXTERNAL_NAMES
35/* Define this if you get warnings about undefined structures. */
36#undef INCOMPLETE_TYPES_BROKEN
37
38#ifdef CJPEG_JPEG6B_WRBMP_JPEG_INTERNALS
39
40#undef RIGHT_SHIFT_IS_UNSIGNED
41#define INLINE __inline__
42/* These are for configuring the JPEG memory manager. */
43#undef DEFAULT_MAX_MEM
44#undef NO_MKTEMP
45
46#endif /* JPEG_INTERNALS */
47
48#ifdef CJPEG_WRBMP_JPEG_CJPEG_DJPEG
49
50#define CJPEG_WRBMP_BMP_SUPPORTED /* BMP image file format */
51#define CJPEG_WRBMP_GIF_SUPPORTED /* GIF image file format */
52#define CJPEG_WRBMP_PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
53#undef RLE_SUPPORTED /* Utah RLE image file format */
54#define CJPEG_WRBMP_TARGA_SUPPORTED /* Targa image file format */
55
56#undef TWO_FILE_COMMANDLINE
57#undef NEED_SIGNAL_CATCHER
58#undef DONT_USE_B_MODE
59
60/* Define this if you want percent-done progress reports from cjpeg/djpeg. */
61#undef PROGRESS_REPORT
62
63#endif /* JPEG_CJPEG_DJPEG */
64
65#endif