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,453 @@
1
+ /*
2
+ * jccoefct.c
3
+ *
4
+ * Copyright (C) 1994-1997, 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 the coefficient buffer controller for compression.
9
+ * This controller is the top level of the JPEG compressor proper.
10
+ * The coefficient buffer lies between forward-DCT and entropy encoding steps.
11
+ */
12
+
13
+ #define JPEG_INTERNALS
14
+ #include "jinclude.h"
15
+ #include "jpeglib.h"
16
+
17
+
18
+ /* We use a full-image coefficient buffer when doing Huffman optimization,
19
+ * and also for writing multiple-scan JPEG files. In all cases, the DCT
20
+ * step is run during the first pass, and subsequent passes need only read
21
+ * the buffered coefficients.
22
+ */
23
+ #ifdef ENTROPY_OPT_SUPPORTED
24
+ #define FULL_COEF_BUFFER_SUPPORTED
25
+ #else
26
+ #ifdef C_MULTISCAN_FILES_SUPPORTED
27
+ #define FULL_COEF_BUFFER_SUPPORTED
28
+ #endif
29
+ #endif
30
+
31
+
32
+ /* Private buffer controller object */
33
+
34
+ typedef struct {
35
+ struct jpeg_c_coef_controller pub; /* public fields */
36
+
37
+ JDIMENSION iMCU_row_num; /* iMCU row # within image */
38
+ JDIMENSION mcu_ctr; /* counts MCUs processed in current row */
39
+ int MCU_vert_offset; /* counts MCU rows within iMCU row */
40
+ int MCU_rows_per_iMCU_row; /* number of such rows needed */
41
+
42
+ /* For single-pass compression, it's sufficient to buffer just one MCU
43
+ * (although this may prove a bit slow in practice). We allocate a
44
+ * workspace of C_MAX_BLOCKS_IN_MCU coefficient blocks, and reuse it for each
45
+ * MCU constructed and sent. (On 80x86, the workspace is FAR even though
46
+ * it's not really very big; this is to keep the module interfaces unchanged
47
+ * when a large coefficient buffer is necessary.)
48
+ * In multi-pass modes, this array points to the current MCU's blocks
49
+ * within the virtual arrays.
50
+ */
51
+ JBLOCKROW MCU_buffer[C_MAX_BLOCKS_IN_MCU];
52
+
53
+ /* In multi-pass modes, we need a virtual block array for each component. */
54
+ jvirt_barray_ptr whole_image[MAX_COMPONENTS];
55
+ } my_coef_controller;
56
+
57
+ typedef my_coef_controller * my_coef_ptr;
58
+
59
+
60
+ /* Forward declarations */
61
+ METHODDEF(boolean) compress_data
62
+ JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
63
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
64
+ METHODDEF(boolean) compress_first_pass
65
+ JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
66
+ METHODDEF(boolean) compress_output
67
+ JPP((j_compress_ptr cinfo, JSAMPIMAGE input_buf));
68
+ #endif
69
+
70
+
71
+ LOCAL(void)
72
+ start_iMCU_row (j_compress_ptr cinfo)
73
+ /* Reset within-iMCU-row counters for a new row */
74
+ {
75
+ my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
76
+
77
+ /* In an interleaved scan, an MCU row is the same as an iMCU row.
78
+ * In a noninterleaved scan, an iMCU row has v_samp_factor MCU rows.
79
+ * But at the bottom of the image, process only what's left.
80
+ */
81
+ if (cinfo->comps_in_scan > 1) {
82
+ coef->MCU_rows_per_iMCU_row = 1;
83
+ } else {
84
+ if (coef->iMCU_row_num < (cinfo->total_iMCU_rows-1))
85
+ coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->v_samp_factor;
86
+ else
87
+ coef->MCU_rows_per_iMCU_row = cinfo->cur_comp_info[0]->last_row_height;
88
+ }
89
+
90
+ coef->mcu_ctr = 0;
91
+ coef->MCU_vert_offset = 0;
92
+ }
93
+
94
+
95
+ /*
96
+ * Initialize for a processing pass.
97
+ */
98
+
99
+ METHODDEF(void)
100
+ start_pass_coef (j_compress_ptr cinfo, J_BUF_MODE pass_mode)
101
+ {
102
+ my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
103
+
104
+ coef->iMCU_row_num = 0;
105
+ start_iMCU_row(cinfo);
106
+
107
+ switch (pass_mode) {
108
+ case JBUF_PASS_THRU:
109
+ if (coef->whole_image[0] != NULL)
110
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
111
+ coef->pub.compress_data = compress_data;
112
+ break;
113
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
114
+ case JBUF_SAVE_AND_PASS:
115
+ if (coef->whole_image[0] == NULL)
116
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
117
+ coef->pub.compress_data = compress_first_pass;
118
+ break;
119
+ case JBUF_CRANK_DEST:
120
+ if (coef->whole_image[0] == NULL)
121
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
122
+ coef->pub.compress_data = compress_output;
123
+ break;
124
+ #endif
125
+ default:
126
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
127
+ break;
128
+ }
129
+ }
130
+
131
+
132
+ /*
133
+ * Process some data in the single-pass case.
134
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
135
+ * per call, ie, v_samp_factor block rows for each component in the image.
136
+ * Returns TRUE if the iMCU row is completed, FALSE if suspended.
137
+ *
138
+ * NB: input_buf contains a plane for each component in image,
139
+ * which we index according to the component's SOF position.
140
+ */
141
+
142
+ METHODDEF(boolean)
143
+ compress_data (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
144
+ {
145
+ my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
146
+ JDIMENSION MCU_col_num; /* index of current MCU within row */
147
+ JDIMENSION last_MCU_col = cinfo->MCUs_per_row - 1;
148
+ JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
149
+ int blkn, bi, ci, yindex, yoffset, blockcnt;
150
+ JDIMENSION ypos, xpos;
151
+ jpeg_component_info *compptr;
152
+ forward_DCT_ptr forward_DCT;
153
+
154
+ /* Loop to write as much as one whole iMCU row */
155
+ for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
156
+ yoffset++) {
157
+ for (MCU_col_num = coef->mcu_ctr; MCU_col_num <= last_MCU_col;
158
+ MCU_col_num++) {
159
+ /* Determine where data comes from in input_buf and do the DCT thing.
160
+ * Each call on forward_DCT processes a horizontal row of DCT blocks
161
+ * as wide as an MCU; we rely on having allocated the MCU_buffer[] blocks
162
+ * sequentially. Dummy blocks at the right or bottom edge are filled in
163
+ * specially. The data in them does not matter for image reconstruction,
164
+ * so we fill them with values that will encode to the smallest amount of
165
+ * data, viz: all zeroes in the AC entries, DC entries equal to previous
166
+ * block's DC value. (Thanks to Thomas Kinsman for this idea.)
167
+ */
168
+ blkn = 0;
169
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
170
+ compptr = cinfo->cur_comp_info[ci];
171
+ forward_DCT = cinfo->fdct->forward_DCT[compptr->component_index];
172
+ blockcnt = (MCU_col_num < last_MCU_col) ? compptr->MCU_width
173
+ : compptr->last_col_width;
174
+ xpos = MCU_col_num * compptr->MCU_sample_width;
175
+ ypos = yoffset * compptr->DCT_v_scaled_size;
176
+ /* ypos == (yoffset+yindex) * DCTSIZE */
177
+ for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
178
+ if (coef->iMCU_row_num < last_iMCU_row ||
179
+ yoffset+yindex < compptr->last_row_height) {
180
+ (*forward_DCT) (cinfo, compptr,
181
+ input_buf[compptr->component_index],
182
+ coef->MCU_buffer[blkn],
183
+ ypos, xpos, (JDIMENSION) blockcnt);
184
+ if (blockcnt < compptr->MCU_width) {
185
+ /* Create some dummy blocks at the right edge of the image. */
186
+ jzero_far((void FAR *) coef->MCU_buffer[blkn + blockcnt],
187
+ (compptr->MCU_width - blockcnt) * SIZEOF(JBLOCK));
188
+ for (bi = blockcnt; bi < compptr->MCU_width; bi++) {
189
+ coef->MCU_buffer[blkn+bi][0][0] = coef->MCU_buffer[blkn+bi-1][0][0];
190
+ }
191
+ }
192
+ } else {
193
+ /* Create a row of dummy blocks at the bottom of the image. */
194
+ jzero_far((void FAR *) coef->MCU_buffer[blkn],
195
+ compptr->MCU_width * SIZEOF(JBLOCK));
196
+ for (bi = 0; bi < compptr->MCU_width; bi++) {
197
+ coef->MCU_buffer[blkn+bi][0][0] = coef->MCU_buffer[blkn-1][0][0];
198
+ }
199
+ }
200
+ blkn += compptr->MCU_width;
201
+ ypos += compptr->DCT_v_scaled_size;
202
+ }
203
+ }
204
+ /* Try to write the MCU. In event of a suspension failure, we will
205
+ * re-DCT the MCU on restart (a bit inefficient, could be fixed...)
206
+ */
207
+ if (! (*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
208
+ /* Suspension forced; update state counters and exit */
209
+ coef->MCU_vert_offset = yoffset;
210
+ coef->mcu_ctr = MCU_col_num;
211
+ return FALSE;
212
+ }
213
+ }
214
+ /* Completed an MCU row, but perhaps not an iMCU row */
215
+ coef->mcu_ctr = 0;
216
+ }
217
+ /* Completed the iMCU row, advance counters for next one */
218
+ coef->iMCU_row_num++;
219
+ start_iMCU_row(cinfo);
220
+ return TRUE;
221
+ }
222
+
223
+
224
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
225
+
226
+ /*
227
+ * Process some data in the first pass of a multi-pass case.
228
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
229
+ * per call, ie, v_samp_factor block rows for each component in the image.
230
+ * This amount of data is read from the source buffer, DCT'd and quantized,
231
+ * and saved into the virtual arrays. We also generate suitable dummy blocks
232
+ * as needed at the right and lower edges. (The dummy blocks are constructed
233
+ * in the virtual arrays, which have been padded appropriately.) This makes
234
+ * it possible for subsequent passes not to worry about real vs. dummy blocks.
235
+ *
236
+ * We must also emit the data to the entropy encoder. This is conveniently
237
+ * done by calling compress_output() after we've loaded the current strip
238
+ * of the virtual arrays.
239
+ *
240
+ * NB: input_buf contains a plane for each component in image. All
241
+ * components are DCT'd and loaded into the virtual arrays in this pass.
242
+ * However, it may be that only a subset of the components are emitted to
243
+ * the entropy encoder during this first pass; be careful about looking
244
+ * at the scan-dependent variables (MCU dimensions, etc).
245
+ */
246
+
247
+ METHODDEF(boolean)
248
+ compress_first_pass (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
249
+ {
250
+ my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
251
+ JDIMENSION last_iMCU_row = cinfo->total_iMCU_rows - 1;
252
+ JDIMENSION blocks_across, MCUs_across, MCUindex;
253
+ int bi, ci, h_samp_factor, block_row, block_rows, ndummy;
254
+ JCOEF lastDC;
255
+ jpeg_component_info *compptr;
256
+ JBLOCKARRAY buffer;
257
+ JBLOCKROW thisblockrow, lastblockrow;
258
+ forward_DCT_ptr forward_DCT;
259
+
260
+ for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
261
+ ci++, compptr++) {
262
+ /* Align the virtual buffer for this component. */
263
+ buffer = (*cinfo->mem->access_virt_barray)
264
+ ((j_common_ptr) cinfo, coef->whole_image[ci],
265
+ coef->iMCU_row_num * compptr->v_samp_factor,
266
+ (JDIMENSION) compptr->v_samp_factor, TRUE);
267
+ /* Count non-dummy DCT block rows in this iMCU row. */
268
+ if (coef->iMCU_row_num < last_iMCU_row)
269
+ block_rows = compptr->v_samp_factor;
270
+ else {
271
+ /* NB: can't use last_row_height here, since may not be set! */
272
+ block_rows = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
273
+ if (block_rows == 0) block_rows = compptr->v_samp_factor;
274
+ }
275
+ blocks_across = compptr->width_in_blocks;
276
+ h_samp_factor = compptr->h_samp_factor;
277
+ /* Count number of dummy blocks to be added at the right margin. */
278
+ ndummy = (int) (blocks_across % h_samp_factor);
279
+ if (ndummy > 0)
280
+ ndummy = h_samp_factor - ndummy;
281
+ forward_DCT = cinfo->fdct->forward_DCT[ci];
282
+ /* Perform DCT for all non-dummy blocks in this iMCU row. Each call
283
+ * on forward_DCT processes a complete horizontal row of DCT blocks.
284
+ */
285
+ for (block_row = 0; block_row < block_rows; block_row++) {
286
+ thisblockrow = buffer[block_row];
287
+ (*forward_DCT) (cinfo, compptr, input_buf[ci], thisblockrow,
288
+ (JDIMENSION) (block_row * compptr->DCT_v_scaled_size),
289
+ (JDIMENSION) 0, blocks_across);
290
+ if (ndummy > 0) {
291
+ /* Create dummy blocks at the right edge of the image. */
292
+ thisblockrow += blocks_across; /* => first dummy block */
293
+ jzero_far((void FAR *) thisblockrow, ndummy * SIZEOF(JBLOCK));
294
+ lastDC = thisblockrow[-1][0];
295
+ for (bi = 0; bi < ndummy; bi++) {
296
+ thisblockrow[bi][0] = lastDC;
297
+ }
298
+ }
299
+ }
300
+ /* If at end of image, create dummy block rows as needed.
301
+ * The tricky part here is that within each MCU, we want the DC values
302
+ * of the dummy blocks to match the last real block's DC value.
303
+ * This squeezes a few more bytes out of the resulting file...
304
+ */
305
+ if (coef->iMCU_row_num == last_iMCU_row) {
306
+ blocks_across += ndummy; /* include lower right corner */
307
+ MCUs_across = blocks_across / h_samp_factor;
308
+ for (block_row = block_rows; block_row < compptr->v_samp_factor;
309
+ block_row++) {
310
+ thisblockrow = buffer[block_row];
311
+ lastblockrow = buffer[block_row-1];
312
+ jzero_far((void FAR *) thisblockrow,
313
+ (size_t) (blocks_across * SIZEOF(JBLOCK)));
314
+ for (MCUindex = 0; MCUindex < MCUs_across; MCUindex++) {
315
+ lastDC = lastblockrow[h_samp_factor-1][0];
316
+ for (bi = 0; bi < h_samp_factor; bi++) {
317
+ thisblockrow[bi][0] = lastDC;
318
+ }
319
+ thisblockrow += h_samp_factor; /* advance to next MCU in row */
320
+ lastblockrow += h_samp_factor;
321
+ }
322
+ }
323
+ }
324
+ }
325
+ /* NB: compress_output will increment iMCU_row_num if successful.
326
+ * A suspension return will result in redoing all the work above next time.
327
+ */
328
+
329
+ /* Emit data to the entropy encoder, sharing code with subsequent passes */
330
+ return compress_output(cinfo, input_buf);
331
+ }
332
+
333
+
334
+ /*
335
+ * Process some data in subsequent passes of a multi-pass case.
336
+ * We process the equivalent of one fully interleaved MCU row ("iMCU" row)
337
+ * per call, ie, v_samp_factor block rows for each component in the scan.
338
+ * The data is obtained from the virtual arrays and fed to the entropy coder.
339
+ * Returns TRUE if the iMCU row is completed, FALSE if suspended.
340
+ *
341
+ * NB: input_buf is ignored; it is likely to be a NULL pointer.
342
+ */
343
+
344
+ METHODDEF(boolean)
345
+ compress_output (j_compress_ptr cinfo, JSAMPIMAGE input_buf)
346
+ {
347
+ my_coef_ptr coef = (my_coef_ptr) cinfo->coef;
348
+ JDIMENSION MCU_col_num; /* index of current MCU within row */
349
+ int blkn, ci, xindex, yindex, yoffset;
350
+ JDIMENSION start_col;
351
+ JBLOCKARRAY buffer[MAX_COMPS_IN_SCAN];
352
+ JBLOCKROW buffer_ptr;
353
+ jpeg_component_info *compptr;
354
+
355
+ /* Align the virtual buffers for the components used in this scan.
356
+ * NB: during first pass, this is safe only because the buffers will
357
+ * already be aligned properly, so jmemmgr.c won't need to do any I/O.
358
+ */
359
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
360
+ compptr = cinfo->cur_comp_info[ci];
361
+ buffer[ci] = (*cinfo->mem->access_virt_barray)
362
+ ((j_common_ptr) cinfo, coef->whole_image[compptr->component_index],
363
+ coef->iMCU_row_num * compptr->v_samp_factor,
364
+ (JDIMENSION) compptr->v_samp_factor, FALSE);
365
+ }
366
+
367
+ /* Loop to process one whole iMCU row */
368
+ for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row;
369
+ yoffset++) {
370
+ for (MCU_col_num = coef->mcu_ctr; MCU_col_num < cinfo->MCUs_per_row;
371
+ MCU_col_num++) {
372
+ /* Construct list of pointers to DCT blocks belonging to this MCU */
373
+ blkn = 0; /* index of current DCT block within MCU */
374
+ for (ci = 0; ci < cinfo->comps_in_scan; ci++) {
375
+ compptr = cinfo->cur_comp_info[ci];
376
+ start_col = MCU_col_num * compptr->MCU_width;
377
+ for (yindex = 0; yindex < compptr->MCU_height; yindex++) {
378
+ buffer_ptr = buffer[ci][yindex+yoffset] + start_col;
379
+ for (xindex = 0; xindex < compptr->MCU_width; xindex++) {
380
+ coef->MCU_buffer[blkn++] = buffer_ptr++;
381
+ }
382
+ }
383
+ }
384
+ /* Try to write the MCU. */
385
+ if (! (*cinfo->entropy->encode_mcu) (cinfo, coef->MCU_buffer)) {
386
+ /* Suspension forced; update state counters and exit */
387
+ coef->MCU_vert_offset = yoffset;
388
+ coef->mcu_ctr = MCU_col_num;
389
+ return FALSE;
390
+ }
391
+ }
392
+ /* Completed an MCU row, but perhaps not an iMCU row */
393
+ coef->mcu_ctr = 0;
394
+ }
395
+ /* Completed the iMCU row, advance counters for next one */
396
+ coef->iMCU_row_num++;
397
+ start_iMCU_row(cinfo);
398
+ return TRUE;
399
+ }
400
+
401
+ #endif /* FULL_COEF_BUFFER_SUPPORTED */
402
+
403
+
404
+ /*
405
+ * Initialize coefficient buffer controller.
406
+ */
407
+
408
+ GLOBAL(void)
409
+ jinit_c_coef_controller (j_compress_ptr cinfo, boolean need_full_buffer)
410
+ {
411
+ my_coef_ptr coef;
412
+
413
+ coef = (my_coef_ptr)
414
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
415
+ SIZEOF(my_coef_controller));
416
+ cinfo->coef = (struct jpeg_c_coef_controller *) coef;
417
+ coef->pub.start_pass = start_pass_coef;
418
+
419
+ /* Create the coefficient buffer. */
420
+ if (need_full_buffer) {
421
+ #ifdef FULL_COEF_BUFFER_SUPPORTED
422
+ /* Allocate a full-image virtual array for each component, */
423
+ /* padded to a multiple of samp_factor DCT blocks in each direction. */
424
+ int ci;
425
+ jpeg_component_info *compptr;
426
+
427
+ for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
428
+ ci++, compptr++) {
429
+ coef->whole_image[ci] = (*cinfo->mem->request_virt_barray)
430
+ ((j_common_ptr) cinfo, JPOOL_IMAGE, FALSE,
431
+ (JDIMENSION) jround_up((long) compptr->width_in_blocks,
432
+ (long) compptr->h_samp_factor),
433
+ (JDIMENSION) jround_up((long) compptr->height_in_blocks,
434
+ (long) compptr->v_samp_factor),
435
+ (JDIMENSION) compptr->v_samp_factor);
436
+ }
437
+ #else
438
+ ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
439
+ #endif
440
+ } else {
441
+ /* We only need a single-MCU buffer. */
442
+ JBLOCKROW buffer;
443
+ int i;
444
+
445
+ buffer = (JBLOCKROW)
446
+ (*cinfo->mem->alloc_large) ((j_common_ptr) cinfo, JPOOL_IMAGE,
447
+ C_MAX_BLOCKS_IN_MCU * SIZEOF(JBLOCK));
448
+ for (i = 0; i < C_MAX_BLOCKS_IN_MCU; i++) {
449
+ coef->MCU_buffer[i] = buffer + i;
450
+ }
451
+ coef->whole_image[0] = NULL; /* flag for no virtual arrays */
452
+ }
453
+ }