summaryrefslogtreecommitdiffstats
path: root/rules/libjpeg.in
blob: 3304c6ac896fd81d29684d4acb9640da662981f7 (plain)
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
## SECTION=multimedia_libs

menuconfig LIBJPEG
	tristate
	select HOST_CMAKE
	select CROSS_NASM
	prompt "libjpeg-turbo                 "
	help
	  libjpeg-turbo is a library for handling the JPEG (JFIF) image format
	  that uses SIMD instructions (MMX, SSE2, AVX2, NEON, AltiVec) to
	  accelerate baseline JPEG compression and decompression.

if LIBJPEG

config LIBJPEG_BIN
	bool
	prompt "Install libjpeg binaries cjpeg and djpeg"
	help
	  cjpeg and djpeg are simple bineries to convert some basic image
	  formats to jpeg (cjpeg) or convert them back from jpeg (djpeg)

config LIBJPEG_TURBO
	bool
	prompt "Build and install libturbojpeg"
	help
	  In addition to the traditional libjpeg API, also provide the less
	  powerful but more straightforward TurboJPEG API.

endif