entangledstate-isbn 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/README +1 -1
  2. data/Rakefile +0 -18
  3. data/VERSION +1 -0
  4. data/isbn.gemspec +290 -7
  5. data/lib/isbn.rb +6 -6
  6. data/src/gocr-0.48/.cvsignore +6 -0
  7. data/src/gocr-0.48/AUTHORS +7 -0
  8. data/src/gocr-0.48/BUGS +55 -0
  9. data/src/gocr-0.48/CREDITS +17 -0
  10. data/src/gocr-0.48/HISTORY +243 -0
  11. data/src/gocr-0.48/INSTALL +83 -0
  12. data/src/gocr-0.48/Makefile +193 -0
  13. data/src/gocr-0.48/Makefile.in +193 -0
  14. data/src/gocr-0.48/README +165 -0
  15. data/src/gocr-0.48/READMEde.txt +80 -0
  16. data/src/gocr-0.48/REMARK.txt +18 -0
  17. data/src/gocr-0.48/REVIEW +538 -0
  18. data/src/gocr-0.48/TODO +65 -0
  19. data/src/gocr-0.48/bin/.cvsignore +2 -0
  20. data/src/gocr-0.48/bin/create_db +38 -0
  21. data/src/gocr-0.48/bin/gocr.tcl +527 -0
  22. data/src/gocr-0.48/bin/gocr_chk.sh +44 -0
  23. data/src/gocr-0.48/configure +4689 -0
  24. data/src/gocr-0.48/configure.in +71 -0
  25. data/src/gocr-0.48/doc/.#Makefile.1.6 +39 -0
  26. data/src/gocr-0.48/doc/.cvsignore +2 -0
  27. data/src/gocr-0.48/doc/Makefile +39 -0
  28. data/src/gocr-0.48/doc/Makefile.in +39 -0
  29. data/src/gocr-0.48/doc/example.dtd +53 -0
  30. data/src/gocr-0.48/doc/example.xml +21 -0
  31. data/src/gocr-0.48/doc/examples.txt +67 -0
  32. data/src/gocr-0.48/doc/gocr.html +578 -0
  33. data/src/gocr-0.48/doc/unicode.txt +57 -0
  34. data/src/gocr-0.48/examples/.#Makefile.1.22 +166 -0
  35. data/src/gocr-0.48/examples/4x6.png +0 -0
  36. data/src/gocr-0.48/examples/4x6.txt +2 -0
  37. data/src/gocr-0.48/examples/5x7.png +0 -0
  38. data/src/gocr-0.48/examples/5x7.png.txt +2 -0
  39. data/src/gocr-0.48/examples/5x8.png +0 -0
  40. data/src/gocr-0.48/examples/5x8.png.txt +2 -0
  41. data/src/gocr-0.48/examples/Makefile +166 -0
  42. data/src/gocr-0.48/examples/color.fig +20 -0
  43. data/src/gocr-0.48/examples/ex.fig +16 -0
  44. data/src/gocr-0.48/examples/font.tex +22 -0
  45. data/src/gocr-0.48/examples/font1.tex +46 -0
  46. data/src/gocr-0.48/examples/font2.fig +27 -0
  47. data/src/gocr-0.48/examples/font_nw.tex +24 -0
  48. data/src/gocr-0.48/examples/handwrt1.jpg +0 -0
  49. data/src/gocr-0.48/examples/handwrt1.txt +10 -0
  50. data/src/gocr-0.48/examples/inverse.fig +20 -0
  51. data/src/gocr-0.48/examples/matrix.jpg +0 -0
  52. data/src/gocr-0.48/examples/ocr-a-subset.png +0 -0
  53. data/src/gocr-0.48/examples/ocr-a-subset.png.txt +4 -0
  54. data/src/gocr-0.48/examples/ocr-a.png +0 -0
  55. data/src/gocr-0.48/examples/ocr-a.txt +6 -0
  56. data/src/gocr-0.48/examples/ocr-b.png +0 -0
  57. data/src/gocr-0.48/examples/ocr-b.png.txt +4 -0
  58. data/src/gocr-0.48/examples/polish.tex +28 -0
  59. data/src/gocr-0.48/examples/rotate45.fig +14 -0
  60. data/src/gocr-0.48/examples/score +36 -0
  61. data/src/gocr-0.48/examples/text.tex +28 -0
  62. data/src/gocr-0.48/gocr.spec +143 -0
  63. data/src/gocr-0.48/gpl.html +537 -0
  64. data/src/gocr-0.48/include/.cvsignore +2 -0
  65. data/src/gocr-0.48/include/config.h +36 -0
  66. data/src/gocr-0.48/include/config.h.in +36 -0
  67. data/src/gocr-0.48/include/version.h +2 -0
  68. data/src/gocr-0.48/install-sh +3 -0
  69. data/src/gocr-0.48/make.bat +57 -0
  70. data/src/gocr-0.48/man/.cvsignore +2 -0
  71. data/src/gocr-0.48/man/Makefile +29 -0
  72. data/src/gocr-0.48/man/Makefile.in +29 -0
  73. data/src/gocr-0.48/man/man1/gocr.1 +166 -0
  74. data/src/gocr-0.48/src/.cvsignore +4 -0
  75. data/src/gocr-0.48/src/Makefile +132 -0
  76. data/src/gocr-0.48/src/Makefile.in +132 -0
  77. data/src/gocr-0.48/src/amiga.h +31 -0
  78. data/src/gocr-0.48/src/barcode.c +846 -0
  79. data/src/gocr-0.48/src/barcode.c.orig +593 -0
  80. data/src/gocr-0.48/src/barcode.h +11 -0
  81. data/src/gocr-0.48/src/box.c +372 -0
  82. data/src/gocr-0.48/src/database.c +462 -0
  83. data/src/gocr-0.48/src/detect.c +943 -0
  84. data/src/gocr-0.48/src/gocr.c +373 -0
  85. data/src/gocr-0.48/src/gocr.h +288 -0
  86. data/src/gocr-0.48/src/jconv.c +168 -0
  87. data/src/gocr-0.48/src/job.c +84 -0
  88. data/src/gocr-0.48/src/lines.c +350 -0
  89. data/src/gocr-0.48/src/list.c +334 -0
  90. data/src/gocr-0.48/src/list.h +90 -0
  91. data/src/gocr-0.48/src/ocr0.c +6756 -0
  92. data/src/gocr-0.48/src/ocr0.h +63 -0
  93. data/src/gocr-0.48/src/ocr0n.c +1475 -0
  94. data/src/gocr-0.48/src/ocr1.c +85 -0
  95. data/src/gocr-0.48/src/ocr1.h +3 -0
  96. data/src/gocr-0.48/src/otsu.c +289 -0
  97. data/src/gocr-0.48/src/otsu.h +23 -0
  98. data/src/gocr-0.48/src/output.c +289 -0
  99. data/src/gocr-0.48/src/output.h +37 -0
  100. data/src/gocr-0.48/src/pcx.c +153 -0
  101. data/src/gocr-0.48/src/pcx.h +9 -0
  102. data/src/gocr-0.48/src/pgm2asc.c +2893 -0
  103. data/src/gocr-0.48/src/pgm2asc.h +105 -0
  104. data/src/gocr-0.48/src/pixel.c +537 -0
  105. data/src/gocr-0.48/src/pnm.c +533 -0
  106. data/src/gocr-0.48/src/pnm.h +35 -0
  107. data/src/gocr-0.48/src/progress.c +87 -0
  108. data/src/gocr-0.48/src/progress.h +42 -0
  109. data/src/gocr-0.48/src/remove.c +703 -0
  110. data/src/gocr-0.48/src/tga.c +87 -0
  111. data/src/gocr-0.48/src/tga.h +6 -0
  112. data/src/gocr-0.48/src/unicode.c +1314 -0
  113. data/src/gocr-0.48/src/unicode.h +1257 -0
  114. data/src/jpeg-7/Makefile.am +133 -0
  115. data/src/jpeg-7/Makefile.in +1089 -0
  116. data/src/jpeg-7/README +322 -0
  117. data/src/jpeg-7/aclocal.m4 +8990 -0
  118. data/src/jpeg-7/ansi2knr.1 +36 -0
  119. data/src/jpeg-7/ansi2knr.c +739 -0
  120. data/src/jpeg-7/cderror.h +132 -0
  121. data/src/jpeg-7/cdjpeg.c +181 -0
  122. data/src/jpeg-7/cdjpeg.h +187 -0
  123. data/src/jpeg-7/change.log +270 -0
  124. data/src/jpeg-7/cjpeg.1 +325 -0
  125. data/src/jpeg-7/cjpeg.c +616 -0
  126. data/src/jpeg-7/ckconfig.c +402 -0
  127. data/src/jpeg-7/coderules.txt +118 -0
  128. data/src/jpeg-7/config.guess +1561 -0
  129. data/src/jpeg-7/config.sub +1686 -0
  130. data/src/jpeg-7/configure +17139 -0
  131. data/src/jpeg-7/configure.ac +317 -0
  132. data/src/jpeg-7/depcomp +630 -0
  133. data/src/jpeg-7/djpeg.1 +251 -0
  134. data/src/jpeg-7/djpeg.c +617 -0
  135. data/src/jpeg-7/example.c +433 -0
  136. data/src/jpeg-7/filelist.txt +215 -0
  137. data/src/jpeg-7/install-sh +520 -0
  138. data/src/jpeg-7/install.txt +1097 -0
  139. data/src/jpeg-7/jaricom.c +148 -0
  140. data/src/jpeg-7/jcapimin.c +282 -0
  141. data/src/jpeg-7/jcapistd.c +161 -0
  142. data/src/jpeg-7/jcarith.c +921 -0
  143. data/src/jpeg-7/jccoefct.c +453 -0
  144. data/src/jpeg-7/jccolor.c +459 -0
  145. data/src/jpeg-7/jcdctmgr.c +482 -0
  146. data/src/jpeg-7/jchuff.c +1612 -0
  147. data/src/jpeg-7/jcinit.c +65 -0
  148. data/src/jpeg-7/jcmainct.c +293 -0
  149. data/src/jpeg-7/jcmarker.c +667 -0
  150. data/src/jpeg-7/jcmaster.c +770 -0
  151. data/src/jpeg-7/jcomapi.c +106 -0
  152. data/src/jpeg-7/jconfig.bcc +48 -0
  153. data/src/jpeg-7/jconfig.cfg +45 -0
  154. data/src/jpeg-7/jconfig.dj +38 -0
  155. data/src/jpeg-7/jconfig.mac +43 -0
  156. data/src/jpeg-7/jconfig.manx +43 -0
  157. data/src/jpeg-7/jconfig.mc6 +52 -0
  158. data/src/jpeg-7/jconfig.sas +43 -0
  159. data/src/jpeg-7/jconfig.st +42 -0
  160. data/src/jpeg-7/jconfig.txt +155 -0
  161. data/src/jpeg-7/jconfig.vc +45 -0
  162. data/src/jpeg-7/jconfig.vms +37 -0
  163. data/src/jpeg-7/jconfig.wat +38 -0
  164. data/src/jpeg-7/jcparam.c +632 -0
  165. data/src/jpeg-7/jcprepct.c +358 -0
  166. data/src/jpeg-7/jcsample.c +545 -0
  167. data/src/jpeg-7/jctrans.c +381 -0
  168. data/src/jpeg-7/jdapimin.c +396 -0
  169. data/src/jpeg-7/jdapistd.c +275 -0
  170. data/src/jpeg-7/jdarith.c +762 -0
  171. data/src/jpeg-7/jdatadst.c +151 -0
  172. data/src/jpeg-7/jdatasrc.c +212 -0
  173. data/src/jpeg-7/jdcoefct.c +736 -0
  174. data/src/jpeg-7/jdcolor.c +396 -0
  175. data/src/jpeg-7/jdct.h +393 -0
  176. data/src/jpeg-7/jddctmgr.c +382 -0
  177. data/src/jpeg-7/jdhuff.c +1309 -0
  178. data/src/jpeg-7/jdinput.c +384 -0
  179. data/src/jpeg-7/jdmainct.c +512 -0
  180. data/src/jpeg-7/jdmarker.c +1360 -0
  181. data/src/jpeg-7/jdmaster.c +663 -0
  182. data/src/jpeg-7/jdmerge.c +400 -0
  183. data/src/jpeg-7/jdpostct.c +290 -0
  184. data/src/jpeg-7/jdsample.c +361 -0
  185. data/src/jpeg-7/jdtrans.c +136 -0
  186. data/src/jpeg-7/jerror.c +252 -0
  187. data/src/jpeg-7/jerror.h +304 -0
  188. data/src/jpeg-7/jfdctflt.c +174 -0
  189. data/src/jpeg-7/jfdctfst.c +230 -0
  190. data/src/jpeg-7/jfdctint.c +4348 -0
  191. data/src/jpeg-7/jidctflt.c +242 -0
  192. data/src/jpeg-7/jidctfst.c +368 -0
  193. data/src/jpeg-7/jidctint.c +5137 -0
  194. data/src/jpeg-7/jinclude.h +91 -0
  195. data/src/jpeg-7/jmemansi.c +167 -0
  196. data/src/jpeg-7/jmemdos.c +638 -0
  197. data/src/jpeg-7/jmemdosa.asm +379 -0
  198. data/src/jpeg-7/jmemmac.c +289 -0
  199. data/src/jpeg-7/jmemmgr.c +1118 -0
  200. data/src/jpeg-7/jmemname.c +276 -0
  201. data/src/jpeg-7/jmemnobs.c +109 -0
  202. data/src/jpeg-7/jmemsys.h +198 -0
  203. data/src/jpeg-7/jmorecfg.h +369 -0
  204. data/src/jpeg-7/jpegint.h +395 -0
  205. data/src/jpeg-7/jpeglib.h +1135 -0
  206. data/src/jpeg-7/jpegtran.1 +272 -0
  207. data/src/jpeg-7/jpegtran.c +546 -0
  208. data/src/jpeg-7/jquant1.c +856 -0
  209. data/src/jpeg-7/jquant2.c +1310 -0
  210. data/src/jpeg-7/jutils.c +179 -0
  211. data/src/jpeg-7/jversion.h +14 -0
  212. data/src/jpeg-7/libjpeg.map +4 -0
  213. data/src/jpeg-7/libjpeg.txt +3067 -0
  214. data/src/jpeg-7/ltmain.sh +8406 -0
  215. data/src/jpeg-7/makcjpeg.st +36 -0
  216. data/src/jpeg-7/makdjpeg.st +36 -0
  217. data/src/jpeg-7/makeadsw.vc6 +77 -0
  218. data/src/jpeg-7/makeasln.vc9 +33 -0
  219. data/src/jpeg-7/makecdep.vc6 +82 -0
  220. data/src/jpeg-7/makecdsp.vc6 +130 -0
  221. data/src/jpeg-7/makecmak.vc6 +159 -0
  222. data/src/jpeg-7/makecvcp.vc9 +186 -0
  223. data/src/jpeg-7/makeddep.vc6 +82 -0
  224. data/src/jpeg-7/makeddsp.vc6 +130 -0
  225. data/src/jpeg-7/makedmak.vc6 +159 -0
  226. data/src/jpeg-7/makedvcp.vc9 +186 -0
  227. data/src/jpeg-7/makefile.ansi +220 -0
  228. data/src/jpeg-7/makefile.bcc +291 -0
  229. data/src/jpeg-7/makefile.dj +226 -0
  230. data/src/jpeg-7/makefile.manx +220 -0
  231. data/src/jpeg-7/makefile.mc6 +255 -0
  232. data/src/jpeg-7/makefile.mms +224 -0
  233. data/src/jpeg-7/makefile.sas +258 -0
  234. data/src/jpeg-7/makefile.unix +234 -0
  235. data/src/jpeg-7/makefile.vc +217 -0
  236. data/src/jpeg-7/makefile.vms +142 -0
  237. data/src/jpeg-7/makefile.wat +239 -0
  238. data/src/jpeg-7/makejdep.vc6 +423 -0
  239. data/src/jpeg-7/makejdsp.vc6 +285 -0
  240. data/src/jpeg-7/makejdsw.vc6 +29 -0
  241. data/src/jpeg-7/makejmak.vc6 +425 -0
  242. data/src/jpeg-7/makejsln.vc9 +17 -0
  243. data/src/jpeg-7/makejvcp.vc9 +328 -0
  244. data/src/jpeg-7/makeproj.mac +213 -0
  245. data/src/jpeg-7/makerdep.vc6 +6 -0
  246. data/src/jpeg-7/makerdsp.vc6 +78 -0
  247. data/src/jpeg-7/makermak.vc6 +110 -0
  248. data/src/jpeg-7/makervcp.vc9 +133 -0
  249. data/src/jpeg-7/maketdep.vc6 +43 -0
  250. data/src/jpeg-7/maketdsp.vc6 +122 -0
  251. data/src/jpeg-7/maketmak.vc6 +131 -0
  252. data/src/jpeg-7/maketvcp.vc9 +178 -0
  253. data/src/jpeg-7/makewdep.vc6 +6 -0
  254. data/src/jpeg-7/makewdsp.vc6 +78 -0
  255. data/src/jpeg-7/makewmak.vc6 +110 -0
  256. data/src/jpeg-7/makewvcp.vc9 +133 -0
  257. data/src/jpeg-7/makljpeg.st +68 -0
  258. data/src/jpeg-7/maktjpeg.st +30 -0
  259. data/src/jpeg-7/makvms.opt +4 -0
  260. data/src/jpeg-7/missing +376 -0
  261. data/src/jpeg-7/rdbmp.c +439 -0
  262. data/src/jpeg-7/rdcolmap.c +253 -0
  263. data/src/jpeg-7/rdgif.c +38 -0
  264. data/src/jpeg-7/rdjpgcom.1 +63 -0
  265. data/src/jpeg-7/rdjpgcom.c +515 -0
  266. data/src/jpeg-7/rdppm.c +459 -0
  267. data/src/jpeg-7/rdrle.c +387 -0
  268. data/src/jpeg-7/rdswitch.c +365 -0
  269. data/src/jpeg-7/rdtarga.c +500 -0
  270. data/src/jpeg-7/structure.txt +945 -0
  271. data/src/jpeg-7/testimg.bmp +0 -0
  272. data/src/jpeg-7/testimg.jpg +0 -0
  273. data/src/jpeg-7/testimg.ppm +4 -0
  274. data/src/jpeg-7/testimgp.jpg +0 -0
  275. data/src/jpeg-7/testorig.jpg +0 -0
  276. data/src/jpeg-7/testprog.jpg +0 -0
  277. data/src/jpeg-7/transupp.c +1533 -0
  278. data/src/jpeg-7/transupp.h +205 -0
  279. data/src/jpeg-7/usage.txt +605 -0
  280. data/src/jpeg-7/wizard.txt +211 -0
  281. data/src/jpeg-7/wrbmp.c +442 -0
  282. data/src/jpeg-7/wrgif.c +399 -0
  283. data/src/jpeg-7/wrjpgcom.1 +103 -0
  284. data/src/jpeg-7/wrjpgcom.c +583 -0
  285. data/src/jpeg-7/wrppm.c +269 -0
  286. data/src/jpeg-7/wrrle.c +305 -0
  287. data/src/jpeg-7/wrtarga.c +253 -0
  288. metadata +287 -6
  289. data/LICENSE +0 -20
  290. data/VERSION.yml +0 -4
@@ -0,0 +1,459 @@
1
+ /*
2
+ * jccolor.c
3
+ *
4
+ * Copyright (C) 1991-1996, Thomas G. Lane.
5
+ * This file is part of the Independent JPEG Group's software.
6
+ * For conditions of distribution and use, see the accompanying README file.
7
+ *
8
+ * This file contains input colorspace conversion routines.
9
+ */
10
+
11
+ #define JPEG_INTERNALS
12
+ #include "jinclude.h"
13
+ #include "jpeglib.h"
14
+
15
+
16
+ /* Private subobject */
17
+
18
+ typedef struct {
19
+ struct jpeg_color_converter pub; /* public fields */
20
+
21
+ /* Private state for RGB->YCC conversion */
22
+ INT32 * rgb_ycc_tab; /* => table for RGB to YCbCr conversion */
23
+ } my_color_converter;
24
+
25
+ typedef my_color_converter * my_cconvert_ptr;
26
+
27
+
28
+ /**************** RGB -> YCbCr conversion: most common case **************/
29
+
30
+ /*
31
+ * YCbCr is defined per CCIR 601-1, except that Cb and Cr are
32
+ * normalized to the range 0..MAXJSAMPLE rather than -0.5 .. 0.5.
33
+ * The conversion equations to be implemented are therefore
34
+ * Y = 0.29900 * R + 0.58700 * G + 0.11400 * B
35
+ * Cb = -0.16874 * R - 0.33126 * G + 0.50000 * B + CENTERJSAMPLE
36
+ * Cr = 0.50000 * R - 0.41869 * G - 0.08131 * B + CENTERJSAMPLE
37
+ * (These numbers are derived from TIFF 6.0 section 21, dated 3-June-92.)
38
+ * Note: older versions of the IJG code used a zero offset of MAXJSAMPLE/2,
39
+ * rather than CENTERJSAMPLE, for Cb and Cr. This gave equal positive and
40
+ * negative swings for Cb/Cr, but meant that grayscale values (Cb=Cr=0)
41
+ * were not represented exactly. Now we sacrifice exact representation of
42
+ * maximum red and maximum blue in order to get exact grayscales.
43
+ *
44
+ * To avoid floating-point arithmetic, we represent the fractional constants
45
+ * as integers scaled up by 2^16 (about 4 digits precision); we have to divide
46
+ * the products by 2^16, with appropriate rounding, to get the correct answer.
47
+ *
48
+ * For even more speed, we avoid doing any multiplications in the inner loop
49
+ * by precalculating the constants times R,G,B for all possible values.
50
+ * For 8-bit JSAMPLEs this is very reasonable (only 256 entries per table);
51
+ * for 12-bit samples it is still acceptable. It's not very reasonable for
52
+ * 16-bit samples, but if you want lossless storage you shouldn't be changing
53
+ * colorspace anyway.
54
+ * The CENTERJSAMPLE offsets and the rounding fudge-factor of 0.5 are included
55
+ * in the tables to save adding them separately in the inner loop.
56
+ */
57
+
58
+ #define SCALEBITS 16 /* speediest right-shift on some machines */
59
+ #define CBCR_OFFSET ((INT32) CENTERJSAMPLE << SCALEBITS)
60
+ #define ONE_HALF ((INT32) 1 << (SCALEBITS-1))
61
+ #define FIX(x) ((INT32) ((x) * (1L<<SCALEBITS) + 0.5))
62
+
63
+ /* We allocate one big table and divide it up into eight parts, instead of
64
+ * doing eight alloc_small requests. This lets us use a single table base
65
+ * address, which can be held in a register in the inner loops on many
66
+ * machines (more than can hold all eight addresses, anyway).
67
+ */
68
+
69
+ #define R_Y_OFF 0 /* offset to R => Y section */
70
+ #define G_Y_OFF (1*(MAXJSAMPLE+1)) /* offset to G => Y section */
71
+ #define B_Y_OFF (2*(MAXJSAMPLE+1)) /* etc. */
72
+ #define R_CB_OFF (3*(MAXJSAMPLE+1))
73
+ #define G_CB_OFF (4*(MAXJSAMPLE+1))
74
+ #define B_CB_OFF (5*(MAXJSAMPLE+1))
75
+ #define R_CR_OFF B_CB_OFF /* B=>Cb, R=>Cr are the same */
76
+ #define G_CR_OFF (6*(MAXJSAMPLE+1))
77
+ #define B_CR_OFF (7*(MAXJSAMPLE+1))
78
+ #define TABLE_SIZE (8*(MAXJSAMPLE+1))
79
+
80
+
81
+ /*
82
+ * Initialize for RGB->YCC colorspace conversion.
83
+ */
84
+
85
+ METHODDEF(void)
86
+ rgb_ycc_start (j_compress_ptr cinfo)
87
+ {
88
+ my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
89
+ INT32 * rgb_ycc_tab;
90
+ INT32 i;
91
+
92
+ /* Allocate and fill in the conversion tables. */
93
+ cconvert->rgb_ycc_tab = rgb_ycc_tab = (INT32 *)
94
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
95
+ (TABLE_SIZE * SIZEOF(INT32)));
96
+
97
+ for (i = 0; i <= MAXJSAMPLE; i++) {
98
+ rgb_ycc_tab[i+R_Y_OFF] = FIX(0.29900) * i;
99
+ rgb_ycc_tab[i+G_Y_OFF] = FIX(0.58700) * i;
100
+ rgb_ycc_tab[i+B_Y_OFF] = FIX(0.11400) * i + ONE_HALF;
101
+ rgb_ycc_tab[i+R_CB_OFF] = (-FIX(0.16874)) * i;
102
+ rgb_ycc_tab[i+G_CB_OFF] = (-FIX(0.33126)) * i;
103
+ /* We use a rounding fudge-factor of 0.5-epsilon for Cb and Cr.
104
+ * This ensures that the maximum output will round to MAXJSAMPLE
105
+ * not MAXJSAMPLE+1, and thus that we don't have to range-limit.
106
+ */
107
+ rgb_ycc_tab[i+B_CB_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
108
+ /* B=>Cb and R=>Cr tables are the same
109
+ rgb_ycc_tab[i+R_CR_OFF] = FIX(0.50000) * i + CBCR_OFFSET + ONE_HALF-1;
110
+ */
111
+ rgb_ycc_tab[i+G_CR_OFF] = (-FIX(0.41869)) * i;
112
+ rgb_ycc_tab[i+B_CR_OFF] = (-FIX(0.08131)) * i;
113
+ }
114
+ }
115
+
116
+
117
+ /*
118
+ * Convert some rows of samples to the JPEG colorspace.
119
+ *
120
+ * Note that we change from the application's interleaved-pixel format
121
+ * to our internal noninterleaved, one-plane-per-component format.
122
+ * The input buffer is therefore three times as wide as the output buffer.
123
+ *
124
+ * A starting row offset is provided only for the output buffer. The caller
125
+ * can easily adjust the passed input_buf value to accommodate any row
126
+ * offset required on that side.
127
+ */
128
+
129
+ METHODDEF(void)
130
+ rgb_ycc_convert (j_compress_ptr cinfo,
131
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
132
+ JDIMENSION output_row, int num_rows)
133
+ {
134
+ my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
135
+ register int r, g, b;
136
+ register INT32 * ctab = cconvert->rgb_ycc_tab;
137
+ register JSAMPROW inptr;
138
+ register JSAMPROW outptr0, outptr1, outptr2;
139
+ register JDIMENSION col;
140
+ JDIMENSION num_cols = cinfo->image_width;
141
+
142
+ while (--num_rows >= 0) {
143
+ inptr = *input_buf++;
144
+ outptr0 = output_buf[0][output_row];
145
+ outptr1 = output_buf[1][output_row];
146
+ outptr2 = output_buf[2][output_row];
147
+ output_row++;
148
+ for (col = 0; col < num_cols; col++) {
149
+ r = GETJSAMPLE(inptr[RGB_RED]);
150
+ g = GETJSAMPLE(inptr[RGB_GREEN]);
151
+ b = GETJSAMPLE(inptr[RGB_BLUE]);
152
+ inptr += RGB_PIXELSIZE;
153
+ /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
154
+ * must be too; we do not need an explicit range-limiting operation.
155
+ * Hence the value being shifted is never negative, and we don't
156
+ * need the general RIGHT_SHIFT macro.
157
+ */
158
+ /* Y */
159
+ outptr0[col] = (JSAMPLE)
160
+ ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
161
+ >> SCALEBITS);
162
+ /* Cb */
163
+ outptr1[col] = (JSAMPLE)
164
+ ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
165
+ >> SCALEBITS);
166
+ /* Cr */
167
+ outptr2[col] = (JSAMPLE)
168
+ ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
169
+ >> SCALEBITS);
170
+ }
171
+ }
172
+ }
173
+
174
+
175
+ /**************** Cases other than RGB -> YCbCr **************/
176
+
177
+
178
+ /*
179
+ * Convert some rows of samples to the JPEG colorspace.
180
+ * This version handles RGB->grayscale conversion, which is the same
181
+ * as the RGB->Y portion of RGB->YCbCr.
182
+ * We assume rgb_ycc_start has been called (we only use the Y tables).
183
+ */
184
+
185
+ METHODDEF(void)
186
+ rgb_gray_convert (j_compress_ptr cinfo,
187
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
188
+ JDIMENSION output_row, int num_rows)
189
+ {
190
+ my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
191
+ register int r, g, b;
192
+ register INT32 * ctab = cconvert->rgb_ycc_tab;
193
+ register JSAMPROW inptr;
194
+ register JSAMPROW outptr;
195
+ register JDIMENSION col;
196
+ JDIMENSION num_cols = cinfo->image_width;
197
+
198
+ while (--num_rows >= 0) {
199
+ inptr = *input_buf++;
200
+ outptr = output_buf[0][output_row];
201
+ output_row++;
202
+ for (col = 0; col < num_cols; col++) {
203
+ r = GETJSAMPLE(inptr[RGB_RED]);
204
+ g = GETJSAMPLE(inptr[RGB_GREEN]);
205
+ b = GETJSAMPLE(inptr[RGB_BLUE]);
206
+ inptr += RGB_PIXELSIZE;
207
+ /* Y */
208
+ outptr[col] = (JSAMPLE)
209
+ ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
210
+ >> SCALEBITS);
211
+ }
212
+ }
213
+ }
214
+
215
+
216
+ /*
217
+ * Convert some rows of samples to the JPEG colorspace.
218
+ * This version handles Adobe-style CMYK->YCCK conversion,
219
+ * where we convert R=1-C, G=1-M, and B=1-Y to YCbCr using the same
220
+ * conversion as above, while passing K (black) unchanged.
221
+ * We assume rgb_ycc_start has been called.
222
+ */
223
+
224
+ METHODDEF(void)
225
+ cmyk_ycck_convert (j_compress_ptr cinfo,
226
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
227
+ JDIMENSION output_row, int num_rows)
228
+ {
229
+ my_cconvert_ptr cconvert = (my_cconvert_ptr) cinfo->cconvert;
230
+ register int r, g, b;
231
+ register INT32 * ctab = cconvert->rgb_ycc_tab;
232
+ register JSAMPROW inptr;
233
+ register JSAMPROW outptr0, outptr1, outptr2, outptr3;
234
+ register JDIMENSION col;
235
+ JDIMENSION num_cols = cinfo->image_width;
236
+
237
+ while (--num_rows >= 0) {
238
+ inptr = *input_buf++;
239
+ outptr0 = output_buf[0][output_row];
240
+ outptr1 = output_buf[1][output_row];
241
+ outptr2 = output_buf[2][output_row];
242
+ outptr3 = output_buf[3][output_row];
243
+ output_row++;
244
+ for (col = 0; col < num_cols; col++) {
245
+ r = MAXJSAMPLE - GETJSAMPLE(inptr[0]);
246
+ g = MAXJSAMPLE - GETJSAMPLE(inptr[1]);
247
+ b = MAXJSAMPLE - GETJSAMPLE(inptr[2]);
248
+ /* K passes through as-is */
249
+ outptr3[col] = inptr[3]; /* don't need GETJSAMPLE here */
250
+ inptr += 4;
251
+ /* If the inputs are 0..MAXJSAMPLE, the outputs of these equations
252
+ * must be too; we do not need an explicit range-limiting operation.
253
+ * Hence the value being shifted is never negative, and we don't
254
+ * need the general RIGHT_SHIFT macro.
255
+ */
256
+ /* Y */
257
+ outptr0[col] = (JSAMPLE)
258
+ ((ctab[r+R_Y_OFF] + ctab[g+G_Y_OFF] + ctab[b+B_Y_OFF])
259
+ >> SCALEBITS);
260
+ /* Cb */
261
+ outptr1[col] = (JSAMPLE)
262
+ ((ctab[r+R_CB_OFF] + ctab[g+G_CB_OFF] + ctab[b+B_CB_OFF])
263
+ >> SCALEBITS);
264
+ /* Cr */
265
+ outptr2[col] = (JSAMPLE)
266
+ ((ctab[r+R_CR_OFF] + ctab[g+G_CR_OFF] + ctab[b+B_CR_OFF])
267
+ >> SCALEBITS);
268
+ }
269
+ }
270
+ }
271
+
272
+
273
+ /*
274
+ * Convert some rows of samples to the JPEG colorspace.
275
+ * This version handles grayscale output with no conversion.
276
+ * The source can be either plain grayscale or YCbCr (since Y == gray).
277
+ */
278
+
279
+ METHODDEF(void)
280
+ grayscale_convert (j_compress_ptr cinfo,
281
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
282
+ JDIMENSION output_row, int num_rows)
283
+ {
284
+ register JSAMPROW inptr;
285
+ register JSAMPROW outptr;
286
+ register JDIMENSION col;
287
+ JDIMENSION num_cols = cinfo->image_width;
288
+ int instride = cinfo->input_components;
289
+
290
+ while (--num_rows >= 0) {
291
+ inptr = *input_buf++;
292
+ outptr = output_buf[0][output_row];
293
+ output_row++;
294
+ for (col = 0; col < num_cols; col++) {
295
+ outptr[col] = inptr[0]; /* don't need GETJSAMPLE() here */
296
+ inptr += instride;
297
+ }
298
+ }
299
+ }
300
+
301
+
302
+ /*
303
+ * Convert some rows of samples to the JPEG colorspace.
304
+ * This version handles multi-component colorspaces without conversion.
305
+ * We assume input_components == num_components.
306
+ */
307
+
308
+ METHODDEF(void)
309
+ null_convert (j_compress_ptr cinfo,
310
+ JSAMPARRAY input_buf, JSAMPIMAGE output_buf,
311
+ JDIMENSION output_row, int num_rows)
312
+ {
313
+ register JSAMPROW inptr;
314
+ register JSAMPROW outptr;
315
+ register JDIMENSION col;
316
+ register int ci;
317
+ int nc = cinfo->num_components;
318
+ JDIMENSION num_cols = cinfo->image_width;
319
+
320
+ while (--num_rows >= 0) {
321
+ /* It seems fastest to make a separate pass for each component. */
322
+ for (ci = 0; ci < nc; ci++) {
323
+ inptr = *input_buf;
324
+ outptr = output_buf[ci][output_row];
325
+ for (col = 0; col < num_cols; col++) {
326
+ outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
327
+ inptr += nc;
328
+ }
329
+ }
330
+ input_buf++;
331
+ output_row++;
332
+ }
333
+ }
334
+
335
+
336
+ /*
337
+ * Empty method for start_pass.
338
+ */
339
+
340
+ METHODDEF(void)
341
+ null_method (j_compress_ptr cinfo)
342
+ {
343
+ /* no work needed */
344
+ }
345
+
346
+
347
+ /*
348
+ * Module initialization routine for input colorspace conversion.
349
+ */
350
+
351
+ GLOBAL(void)
352
+ jinit_color_converter (j_compress_ptr cinfo)
353
+ {
354
+ my_cconvert_ptr cconvert;
355
+
356
+ cconvert = (my_cconvert_ptr)
357
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
358
+ SIZEOF(my_color_converter));
359
+ cinfo->cconvert = (struct jpeg_color_converter *) cconvert;
360
+ /* set start_pass to null method until we find out differently */
361
+ cconvert->pub.start_pass = null_method;
362
+
363
+ /* Make sure input_components agrees with in_color_space */
364
+ switch (cinfo->in_color_space) {
365
+ case JCS_GRAYSCALE:
366
+ if (cinfo->input_components != 1)
367
+ ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
368
+ break;
369
+
370
+ case JCS_RGB:
371
+ #if RGB_PIXELSIZE != 3
372
+ if (cinfo->input_components != RGB_PIXELSIZE)
373
+ ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
374
+ break;
375
+ #endif /* else share code with YCbCr */
376
+
377
+ case JCS_YCbCr:
378
+ if (cinfo->input_components != 3)
379
+ ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
380
+ break;
381
+
382
+ case JCS_CMYK:
383
+ case JCS_YCCK:
384
+ if (cinfo->input_components != 4)
385
+ ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
386
+ break;
387
+
388
+ default: /* JCS_UNKNOWN can be anything */
389
+ if (cinfo->input_components < 1)
390
+ ERREXIT(cinfo, JERR_BAD_IN_COLORSPACE);
391
+ break;
392
+ }
393
+
394
+ /* Check num_components, set conversion method based on requested space */
395
+ switch (cinfo->jpeg_color_space) {
396
+ case JCS_GRAYSCALE:
397
+ if (cinfo->num_components != 1)
398
+ ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
399
+ if (cinfo->in_color_space == JCS_GRAYSCALE)
400
+ cconvert->pub.color_convert = grayscale_convert;
401
+ else if (cinfo->in_color_space == JCS_RGB) {
402
+ cconvert->pub.start_pass = rgb_ycc_start;
403
+ cconvert->pub.color_convert = rgb_gray_convert;
404
+ } else if (cinfo->in_color_space == JCS_YCbCr)
405
+ cconvert->pub.color_convert = grayscale_convert;
406
+ else
407
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
408
+ break;
409
+
410
+ case JCS_RGB:
411
+ if (cinfo->num_components != 3)
412
+ ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
413
+ if (cinfo->in_color_space == JCS_RGB && RGB_PIXELSIZE == 3)
414
+ cconvert->pub.color_convert = null_convert;
415
+ else
416
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
417
+ break;
418
+
419
+ case JCS_YCbCr:
420
+ if (cinfo->num_components != 3)
421
+ ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
422
+ if (cinfo->in_color_space == JCS_RGB) {
423
+ cconvert->pub.start_pass = rgb_ycc_start;
424
+ cconvert->pub.color_convert = rgb_ycc_convert;
425
+ } else if (cinfo->in_color_space == JCS_YCbCr)
426
+ cconvert->pub.color_convert = null_convert;
427
+ else
428
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
429
+ break;
430
+
431
+ case JCS_CMYK:
432
+ if (cinfo->num_components != 4)
433
+ ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
434
+ if (cinfo->in_color_space == JCS_CMYK)
435
+ cconvert->pub.color_convert = null_convert;
436
+ else
437
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
438
+ break;
439
+
440
+ case JCS_YCCK:
441
+ if (cinfo->num_components != 4)
442
+ ERREXIT(cinfo, JERR_BAD_J_COLORSPACE);
443
+ if (cinfo->in_color_space == JCS_CMYK) {
444
+ cconvert->pub.start_pass = rgb_ycc_start;
445
+ cconvert->pub.color_convert = cmyk_ycck_convert;
446
+ } else if (cinfo->in_color_space == JCS_YCCK)
447
+ cconvert->pub.color_convert = null_convert;
448
+ else
449
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
450
+ break;
451
+
452
+ default: /* allow null conversion of JCS_UNKNOWN */
453
+ if (cinfo->jpeg_color_space != cinfo->in_color_space ||
454
+ cinfo->num_components != cinfo->input_components)
455
+ ERREXIT(cinfo, JERR_CONVERSION_NOTIMPL);
456
+ cconvert->pub.color_convert = null_convert;
457
+ break;
458
+ }
459
+ }