jpeglib.h 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356
  1. /*
  2. * jpeglib.h
  3. *
  4. * Copyright (C) 1991-1998, Thomas G. Lane.
  5. * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
  6. * Modified 2002-2009 by Guido Vollbeding.
  7. * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
  8. * This file is part of the Independent JPEG Group's software.
  9. * For conditions of distribution and use, see the accompanying README file.
  10. *
  11. * This file defines the application interface for the JPEG library.
  12. * Most applications using the library need only include this file,
  13. * and perhaps jerror.h if they want to know the exact error codes.
  14. */
  15. #ifndef JPEGLIB_H
  16. #define JPEGLIB_H
  17. /*
  18. * First we include the configuration files that record how this
  19. * installation of the JPEG library is set up. jconfig.h can be
  20. * generated automatically for many systems. jmorecfg.h contains
  21. * manual configuration options that most people need not worry about.
  22. */
  23. #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */
  24. #include "jconfig.h" /* widely used configuration options */
  25. #endif
  26. #include "jmorecfg.h" /* seldom changed options */
  27. #ifdef GPU_ACCELERATE
  28. using namespace std;
  29. #include <iostream>
  30. #include <fstream>
  31. #include <sstream>
  32. #include <vector>
  33. #include <cstdlib>
  34. #include <npp.h>
  35. #include <cuda.h>
  36. #include <jerror.h>
  37. #include <glib.h>
  38. #include "cuda_runtime.h"
  39. #include "nvjpeg.h"
  40. #include "nvbufsurface.h"
  41. inline bool CHECK_(cudaError_t e, int iLine, const char *szFile) {
  42. if (e != cudaSuccess) {
  43. std::cout << "CUDA runtime error " << e << " " << cudaGetErrorName(e) << " at line " << iLine << " in file " << szFile << std::endl;
  44. abort ();
  45. return false;
  46. }
  47. return true;
  48. }
  49. inline bool CHECK_(NppStatus status, int iLine, const char *szFile) {
  50. if (!(status == NPP_SUCCESS)) {
  51. std::cout << "NPP runtime error " << status << " at line " << iLine << " in file " << szFile << std::endl;
  52. abort ();
  53. return false;
  54. }
  55. return true;
  56. }
  57. #define ck(call) CHECK_((call), __LINE__, __FILE__)
  58. #define cudaCheckError() { \
  59. cudaError_t e=cudaGetLastError(); \
  60. if(e!=cudaSuccess) { \
  61. std::cout << "Cuda failure: '" << cudaGetErrorString(e) << "'\n"; \
  62. return 1; \
  63. } \
  64. }
  65. #define nvjpegCheckError(call) { \
  66. nvjpegStatus_t e = (call); \
  67. if(e != NVJPEG_STATUS_SUCCESS) { \
  68. std::cout << "nvjpeg failure: error #" << e << "\n"; \
  69. return 1; \
  70. } \
  71. }
  72. #endif
  73. #ifdef __cplusplus
  74. #ifndef DONT_USE_EXTERN_C
  75. extern "C" {
  76. #endif
  77. #endif
  78. /* Version ID for the JPEG library.
  79. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 80".
  80. */
  81. #define JPEG_LIB_VERSION 80 /* Version 8.0 */
  82. /* Various constants determining the sizes of things.
  83. * All of these are specified by the JPEG standard, so don't change them
  84. * if you want to be compatible.
  85. */
  86. #define DCTSIZE 8 /* The basic DCT block is 8x8 samples */
  87. #define DCTSIZE2 64 /* DCTSIZE squared; # of elements in a block */
  88. #define NUM_QUANT_TBLS 4 /* Quantization tables are numbered 0..3 */
  89. #define NUM_HUFF_TBLS 4 /* Huffman tables are numbered 0..3 */
  90. #define NUM_ARITH_TBLS 16 /* Arith-coding tables are numbered 0..15 */
  91. #define MAX_COMPS_IN_SCAN 4 /* JPEG limit on # of components in one scan */
  92. #define MAX_SAMP_FACTOR 4 /* JPEG limit on sampling factors */
  93. /* Unfortunately, some bozo at Adobe saw no reason to be bound by the standard;
  94. * the PostScript DCT filter can emit files with many more than 10 blocks/MCU.
  95. * If you happen to run across such a file, you can up D_MAX_BLOCKS_IN_MCU
  96. * to handle it. We even let you do this from the jconfig.h file. However,
  97. * we strongly discourage changing C_MAX_BLOCKS_IN_MCU; just because Adobe
  98. * sometimes emits noncompliant files doesn't mean you should too.
  99. */
  100. #define C_MAX_BLOCKS_IN_MCU 10 /* compressor's limit on blocks per MCU */
  101. #ifndef D_MAX_BLOCKS_IN_MCU
  102. #define D_MAX_BLOCKS_IN_MCU 10 /* decompressor's limit on blocks per MCU */
  103. #endif
  104. /* Data structures for images (arrays of samples and of DCT coefficients).
  105. * On 80x86 machines, the image arrays are too big for near pointers,
  106. * but the pointer arrays can fit in near memory.
  107. */
  108. typedef JSAMPLE FAR *JSAMPROW; /* ptr to one image row of pixel samples. */
  109. typedef JSAMPROW *JSAMPARRAY; /* ptr to some rows (a 2-D sample array) */
  110. typedef JSAMPARRAY *JSAMPIMAGE; /* a 3-D sample array: top index is color */
  111. typedef JCOEF JBLOCK[DCTSIZE2]; /* one block of coefficients */
  112. typedef JBLOCK FAR *JBLOCKROW; /* pointer to one row of coefficient blocks */
  113. typedef JBLOCKROW *JBLOCKARRAY; /* a 2-D array of coefficient blocks */
  114. typedef JBLOCKARRAY *JBLOCKIMAGE; /* a 3-D array of coefficient blocks */
  115. typedef JCOEF FAR *JCOEFPTR; /* useful in a couple of places */
  116. /* Types for JPEG compression parameters and working tables. */
  117. /* DCT coefficient quantization tables. */
  118. typedef struct {
  119. /* This array gives the coefficient quantizers in natural array order
  120. * (not the zigzag order in which they are stored in a JPEG DQT marker).
  121. * CAUTION: IJG versions prior to v6a kept this array in zigzag order.
  122. */
  123. UINT16 quantval[DCTSIZE2]; /* quantization step for each coefficient */
  124. /* This field is used only during compression. It's initialized FALSE when
  125. * the table is created, and set TRUE when it's been output to the file.
  126. * You could suppress output of a table by setting this to TRUE.
  127. * (See jpeg_suppress_tables for an example.)
  128. */
  129. boolean sent_table; /* TRUE when table has been output */
  130. } JQUANT_TBL;
  131. /* Huffman coding tables. */
  132. typedef struct {
  133. /* These two fields directly represent the contents of a JPEG DHT marker */
  134. UINT8 bits[17]; /* bits[k] = # of symbols with codes of */
  135. /* length k bits; bits[0] is unused */
  136. UINT8 huffval[256]; /* The symbols, in order of incr code length */
  137. /* This field is used only during compression. It's initialized FALSE when
  138. * the table is created, and set TRUE when it's been output to the file.
  139. * You could suppress output of a table by setting this to TRUE.
  140. * (See jpeg_suppress_tables for an example.)
  141. */
  142. boolean sent_table; /* TRUE when table has been output */
  143. } JHUFF_TBL;
  144. /* Basic info about one component (color channel). */
  145. typedef struct {
  146. /* These values are fixed over the whole image. */
  147. /* For compression, they must be supplied by parameter setup; */
  148. /* for decompression, they are read from the SOF marker. */
  149. int component_id; /* identifier for this component (0..255) */
  150. int component_index; /* its index in SOF or cinfo->comp_info[] */
  151. int h_samp_factor; /* horizontal sampling factor (1..4) */
  152. int v_samp_factor; /* vertical sampling factor (1..4) */
  153. int quant_tbl_no; /* quantization table selector (0..3) */
  154. /* These values may vary between scans. */
  155. /* For compression, they must be supplied by parameter setup; */
  156. /* for decompression, they are read from the SOS marker. */
  157. /* The decompressor output side may not use these variables. */
  158. int dc_tbl_no; /* DC entropy table selector (0..3) */
  159. int ac_tbl_no; /* AC entropy table selector (0..3) */
  160. /* Remaining fields should be treated as private by applications. */
  161. /* These values are computed during compression or decompression startup: */
  162. /* Component's size in DCT blocks.
  163. * Any dummy blocks added to complete an MCU are not counted; therefore
  164. * these values do not depend on whether a scan is interleaved or not.
  165. */
  166. JDIMENSION width_in_blocks;
  167. JDIMENSION height_in_blocks;
  168. /* Size of a DCT block in samples,
  169. * reflecting any scaling we choose to apply during the DCT step.
  170. * Values from 1 to 16 are supported.
  171. * Note that different components may receive different DCT scalings.
  172. */
  173. int DCT_h_scaled_size;
  174. int DCT_v_scaled_size;
  175. /* The downsampled dimensions are the component's actual, unpadded number
  176. * of samples at the main buffer (preprocessing/compression interface);
  177. * DCT scaling is included, so
  178. * downsampled_width = ceil(image_width * Hi/Hmax * DCT_h_scaled_size/DCTSIZE)
  179. * and similarly for height.
  180. */
  181. JDIMENSION downsampled_width; /* actual width in samples */
  182. JDIMENSION downsampled_height; /* actual height in samples */
  183. /* This flag is used only for decompression. In cases where some of the
  184. * components will be ignored (eg grayscale output from YCbCr image),
  185. * we can skip most computations for the unused components.
  186. */
  187. boolean component_needed; /* do we need the value of this component? */
  188. /* These values are computed before starting a scan of the component. */
  189. /* The decompressor output side may not use these variables. */
  190. int MCU_width; /* number of blocks per MCU, horizontally */
  191. int MCU_height; /* number of blocks per MCU, vertically */
  192. int MCU_blocks; /* MCU_width * MCU_height */
  193. int MCU_sample_width; /* MCU width in samples: MCU_width * DCT_h_scaled_size */
  194. int last_col_width; /* # of non-dummy blocks across in last MCU */
  195. int last_row_height; /* # of non-dummy blocks down in last MCU */
  196. /* Saved quantization table for component; NULL if none yet saved.
  197. * See jdinput.c comments about the need for this information.
  198. * This field is currently used only for decompression.
  199. */
  200. JQUANT_TBL * quant_table;
  201. /* Private per-component storage for DCT or IDCT subsystem. */
  202. void * dct_table;
  203. } jpeg_component_info;
  204. /* The script for encoding a multiple-scan file is an array of these: */
  205. typedef struct {
  206. int comps_in_scan; /* number of components encoded in this scan */
  207. int component_index[MAX_COMPS_IN_SCAN]; /* their SOF/comp_info[] indexes */
  208. int Ss, Se; /* progressive JPEG spectral selection parms */
  209. int Ah, Al; /* progressive JPEG successive approx. parms */
  210. } jpeg_scan_info;
  211. /* The decompressor can save APPn and COM markers in a list of these: */
  212. typedef struct jpeg_marker_struct FAR * jpeg_saved_marker_ptr;
  213. struct jpeg_marker_struct {
  214. jpeg_saved_marker_ptr next; /* next in list, or NULL */
  215. UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
  216. unsigned int original_length; /* # bytes of data in the file */
  217. unsigned int data_length; /* # bytes of data saved at data[] */
  218. JOCTET FAR * data; /* the data contained in the marker */
  219. /* the marker length word is not counted in data_length or original_length */
  220. };
  221. /* Known color spaces. */
  222. typedef enum {
  223. JCS_UNKNOWN, /* error/unspecified */
  224. JCS_GRAYSCALE, /* monochrome */
  225. JCS_RGB, /* red/green/blue */
  226. JCS_YCbCr, /* Y/Cb/Cr (also known as YUV) */
  227. JCS_CMYK, /* C/M/Y/K */
  228. JCS_YCCK, /* Y/Cb/Cr/K */
  229. #ifdef ANDROID_RGB
  230. JCS_RGBA_8888, /* red/green/blue/alpha */
  231. JCS_RGB_565 /* red/green/blue in 565 format */
  232. #else
  233. #ifdef TEGRA_ACCELERATE
  234. JCS_RGBA_8888, /* red/green/blue/alpha */
  235. JCS_RGB_565 /* red/green/blue in 565 format */
  236. #endif
  237. #endif
  238. } J_COLOR_SPACE;
  239. /* DCT/IDCT algorithm options. */
  240. typedef enum {
  241. JDCT_ISLOW, /* slow but accurate integer algorithm */
  242. JDCT_IFAST, /* faster, less accurate integer method */
  243. JDCT_FLOAT /* floating-point: accurate, fast on fast HW */
  244. } J_DCT_METHOD;
  245. #ifndef JDCT_DEFAULT /* may be overridden in jconfig.h */
  246. #define JDCT_DEFAULT JDCT_ISLOW
  247. #endif
  248. #ifndef JDCT_FASTEST /* may be overridden in jconfig.h */
  249. #define JDCT_FASTEST JDCT_IFAST
  250. #endif
  251. /* Dithering options for decompression. */
  252. typedef enum {
  253. JDITHER_NONE, /* no dithering */
  254. JDITHER_ORDERED, /* simple ordered dither */
  255. JDITHER_FS /* Floyd-Steinberg error diffusion dither */
  256. } J_DITHER_MODE;
  257. /* Tegra acceleration data structure */
  258. #ifdef TEGRA_ACCELERATE
  259. struct jpeg_tegra_mgr {
  260. unsigned char *buff[3];
  261. unsigned int pitch[3];
  262. unsigned int mcu_type; // 0: Y=2x2, U,V=1x1
  263. // 1: Y=2x1, U,V=1x1
  264. // 2: Y=1x2, U,V=1x1
  265. // 3: Y=1x1, U,V=1x1
  266. // 4: Y=1x1, U,V not present
  267. };
  268. typedef struct jpeg_tegra_mgr j_tegra_mgr;
  269. typedef struct jpeg_tegra_mgr * j_tegra_mgr_ptr;
  270. #endif
  271. /* Common fields between JPEG compression and decompression master structs. */
  272. #ifdef TEGRA_ACCELERATE
  273. #define jpeg_common_fields \
  274. struct jpeg_error_mgr * err; /* Error handler module */\
  275. struct jpeg_memory_mgr * mem; /* Memory manager module */\
  276. struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\
  277. struct jpeg_tegra_mgr * jpegTegraMgr; /* Tegra related manager */\
  278. void * client_data; /* Available for use by application */\
  279. boolean is_decompressor; /* So common code can tell which is which */\
  280. boolean tegra_acceleration; /* Enable Tegra based hardware acceleration*/\
  281. boolean is_deepstream; /* Check if pipeline running in deepstream or legacy*/\
  282. boolean buffer_in_use; /* Buffer provided to the caller is still in use*/\
  283. unsigned int initWidth; /* Initial width for hardware acceleration */ \
  284. void *nvbufsurfptr; /* */\
  285. unsigned int initHeight; /* Initial height for hardware acceleration */ \
  286. unsigned int initBitstreamBuffer; /* Initial bitstream buffer size */ \
  287. unsigned int inputBuffSize; /* Maximum input buffer size */ \
  288. unsigned int outputBuffSize; /* Maximum output buffer size */ \
  289. boolean rgb565; /* Force output color to red/green/blue in 565 format */ \
  290. boolean IsVendorbuf; /* check if input buffer is vendor specific buffer */ \
  291. unsigned char *pVendor_buf; /* pointer to vendor specific buffer */ \
  292. unsigned int Vendorbuf_Size; /* size of vendor buffer */ \
  293. int global_state; /* For checking call sequence validity */ \
  294. int fd; \
  295. boolean bMeasure_ImageProcessTime; /* Measure image process time */
  296. #elif GPU_ACCELERATE
  297. #define jpeg_common_fields \
  298. struct jpeg_error_mgr * err; /* Error handler module */\
  299. struct jpeg_memory_mgr * mem; /* Memory manager module */\
  300. struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\
  301. void * client_data; /* Available for use by application */\
  302. boolean is_decompressor; /* So common code can tell which is which */\
  303. int global_state; /* For checking call sequence validity */\
  304. unsigned int inputBuffSize; /* Maximum input buffer size */ \
  305. unsigned char *start_of_data; \
  306. boolean IsVendorbuf; /* check if input buffer is vendor specific buffer */ \
  307. unsigned char *pVendor_buf; /* pointer to vendor specific buffer */ \
  308. unsigned int Vendorbuf_Size; /* size of vendor buffer */ \
  309. void *surf_ptr; \
  310. int batch_size; \
  311. int gpu_id; \
  312. unsigned char *alpha; \
  313. nvjpegJpegState_t nvjpeg_state; \
  314. nvjpegHandle_t nvjpeg_handle; \
  315. cudaStream_t stream; \
  316. nvjpegOutputFormat_t fmt; \
  317. bool write_decoded; \
  318. std::string output_dir; \
  319. bool pipelined; \
  320. bool batched; \
  321. vector<size_t> file_len; \
  322. vector<int> widths; \
  323. vector<int> heights; \
  324. vector<nvjpegImage_t> iout; \
  325. vector<nvjpegImage_t> isz; \
  326. GQueue *buf_q;\
  327. cudaStream_t cuda_stream; \
  328. unsigned int nvjpegdec_init;
  329. #else
  330. #define jpeg_common_fields \
  331. struct jpeg_error_mgr * err; /* Error handler module */\
  332. struct jpeg_memory_mgr * mem; /* Memory manager module */\
  333. struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\
  334. void * client_data; /* Available for use by application */\
  335. boolean is_decompressor; /* So common code can tell which is which */\
  336. int global_state /* For checking call sequence validity */
  337. #endif
  338. /* Routines that are to be used by both halves of the library are declared
  339. * to receive a pointer to this structure. There are no actual instances of
  340. * jpeg_common_struct, only of jpeg_compress_struct and jpeg_decompress_struct.
  341. */
  342. struct jpeg_common_struct {
  343. jpeg_common_fields; /* Fields common to both master struct types */
  344. /* Additional fields follow in an actual jpeg_compress_struct or
  345. * jpeg_decompress_struct. All three structs must agree on these
  346. * initial fields! (This would be a lot cleaner in C++.)
  347. */
  348. };
  349. typedef struct jpeg_common_struct * j_common_ptr;
  350. typedef struct jpeg_compress_struct * j_compress_ptr;
  351. typedef struct jpeg_decompress_struct * j_decompress_ptr;
  352. #ifdef TEGRA_ACCELERATE
  353. typedef struct {
  354. unsigned int left, top; /* ROI coordinates */
  355. unsigned int width, height; /* ROI coordinates */
  356. }jpeg_rect_struct;
  357. #endif
  358. /* Master record for a compression instance */
  359. struct jpeg_compress_struct {
  360. jpeg_common_fields; /* Fields shared with jpeg_decompress_struct */
  361. /* Destination for compressed data */
  362. struct jpeg_destination_mgr * dest;
  363. /* Description of source image --- these fields must be filled in by
  364. * outer application before starting compression. in_color_space must
  365. * be correct before you can even call jpeg_set_defaults().
  366. */
  367. JDIMENSION image_width; /* input image width */
  368. JDIMENSION image_height; /* input image height */
  369. int input_components; /* # of color components in input image */
  370. J_COLOR_SPACE in_color_space; /* colorspace of input image */
  371. double input_gamma; /* image gamma of input image */
  372. /* Compression parameters --- these fields must be set before calling
  373. * jpeg_start_compress(). We recommend calling jpeg_set_defaults() to
  374. * initialize everything to reasonable defaults, then changing anything
  375. * the application specifically wants to change. That way you won't get
  376. * burnt when new parameters are added. Also note that there are several
  377. * helper routines to simplify changing parameters.
  378. */
  379. unsigned int scale_num, scale_denom; /* fraction by which to scale image */
  380. JDIMENSION jpeg_width; /* scaled JPEG image width */
  381. JDIMENSION jpeg_height; /* scaled JPEG image height */
  382. /* Dimensions of actual JPEG image that will be written to file,
  383. * derived from input dimensions by scaling factors above.
  384. * These fields are computed by jpeg_start_compress().
  385. * You can also use jpeg_calc_jpeg_dimensions() to determine these values
  386. * in advance of calling jpeg_start_compress().
  387. */
  388. int data_precision; /* bits of precision in image data */
  389. int num_components; /* # of color components in JPEG image */
  390. J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  391. jpeg_component_info * comp_info;
  392. /* comp_info[i] describes component that appears i'th in SOF */
  393. JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  394. int q_scale_factor[NUM_QUANT_TBLS];
  395. /* ptrs to coefficient quantization tables, or NULL if not defined,
  396. * and corresponding scale factors (percentage, initialized 100).
  397. */
  398. JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  399. JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  400. /* ptrs to Huffman coding tables, or NULL if not defined */
  401. UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  402. UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  403. UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  404. int num_scans; /* # of entries in scan_info array */
  405. const jpeg_scan_info * scan_info; /* script for multi-scan file, or NULL */
  406. /* The default value of scan_info is NULL, which causes a single-scan
  407. * sequential JPEG file to be emitted. To create a multi-scan file,
  408. * set num_scans and scan_info to point to an array of scan definitions.
  409. */
  410. boolean raw_data_in; /* TRUE=caller supplies downsampled data */
  411. boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  412. boolean optimize_coding; /* TRUE=optimize entropy encoding parms */
  413. boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  414. boolean do_fancy_downsampling; /* TRUE=apply fancy downsampling */
  415. int smoothing_factor; /* 1..100, or 0 for no input smoothing */
  416. J_DCT_METHOD dct_method; /* DCT algorithm selector */
  417. /* The restart interval can be specified in absolute MCUs by setting
  418. * restart_interval, or in MCU rows by setting restart_in_rows
  419. * (in which case the correct restart_interval will be figured
  420. * for each scan).
  421. */
  422. unsigned int restart_interval; /* MCUs per restart, or 0 for no restart */
  423. int restart_in_rows; /* if > 0, MCU rows per restart interval */
  424. /* Parameters controlling emission of special markers. */
  425. boolean write_JFIF_header; /* should a JFIF marker be written? */
  426. UINT8 JFIF_major_version; /* What to write for the JFIF version number */
  427. UINT8 JFIF_minor_version;
  428. /* These three values are not used by the JPEG code, merely copied */
  429. /* into the JFIF APP0 marker. density_unit can be 0 for unknown, */
  430. /* 1 for dots/inch, or 2 for dots/cm. Note that the pixel aspect */
  431. /* ratio is defined by X_density/Y_density even when density_unit=0. */
  432. UINT8 density_unit; /* JFIF code for pixel size units */
  433. UINT16 X_density; /* Horizontal pixel density */
  434. UINT16 Y_density; /* Vertical pixel density */
  435. boolean write_Adobe_marker; /* should an Adobe marker be written? */
  436. /* State variable: index of next scanline to be written to
  437. * jpeg_write_scanlines(). Application may use this to control its
  438. * processing loop, e.g., "while (next_scanline < image_height)".
  439. */
  440. JDIMENSION next_scanline; /* 0 .. image_height-1 */
  441. /* Remaining fields are known throughout compressor, but generally
  442. * should not be touched by a surrounding application.
  443. */
  444. /*
  445. * These fields are computed during compression startup
  446. */
  447. boolean progressive_mode; /* TRUE if scan script uses progressive mode */
  448. int max_h_samp_factor; /* largest h_samp_factor */
  449. int max_v_samp_factor; /* largest v_samp_factor */
  450. int min_DCT_h_scaled_size; /* smallest DCT_h_scaled_size of any component */
  451. int min_DCT_v_scaled_size; /* smallest DCT_v_scaled_size of any component */
  452. JDIMENSION total_iMCU_rows; /* # of iMCU rows to be input to coef ctlr */
  453. /* The coefficient controller receives data in units of MCU rows as defined
  454. * for fully interleaved scans (whether the JPEG file is interleaved or not).
  455. * There are v_samp_factor * DCTSIZE sample rows of each component in an
  456. * "iMCU" (interleaved MCU) row.
  457. */
  458. /*
  459. * These fields are valid during any one scan.
  460. * They describe the components and MCUs actually appearing in the scan.
  461. */
  462. int comps_in_scan; /* # of JPEG components in this scan */
  463. jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  464. /* *cur_comp_info[i] describes component that appears i'th in SOS */
  465. JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  466. JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  467. int blocks_in_MCU; /* # of DCT blocks per MCU */
  468. int MCU_membership[C_MAX_BLOCKS_IN_MCU];
  469. /* MCU_membership[i] is index in cur_comp_info of component owning */
  470. /* i'th block in an MCU */
  471. int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  472. int block_size; /* the basic DCT block size: 1..16 */
  473. const int * natural_order; /* natural-order position array */
  474. int lim_Se; /* min( Se, DCTSIZE2-1 ) */
  475. boolean frame_to_encode; /* make sure that hw encoding takes place only once */
  476. unsigned int buf_size_to_encode; /* full frame buffer size to be encoded */
  477. unsigned char *pOutputSurface; /* moving pointer inside output surface.
  478. * Need to increment after every row component
  479. * RGB to RGBA conversion to keep track of current
  480. * location to be updated inside output surface.
  481. */
  482. boolean init_encMgr; /* check if encoder manager is already initialised */
  483. /*
  484. * Links to compression subobjects (methods and private variables of modules)
  485. */
  486. struct jpeg_comp_master * master;
  487. struct jpeg_c_main_controller * main;
  488. struct jpeg_c_prep_controller * prep;
  489. struct jpeg_c_coef_controller * coef;
  490. struct jpeg_marker_writer * marker;
  491. struct jpeg_color_converter * cconvert;
  492. struct jpeg_downsampler * downsample;
  493. struct jpeg_forward_dct * fdct;
  494. struct jpeg_entropy_encoder * entropy;
  495. jpeg_scan_info * script_space; /* workspace for jpeg_simple_progression */
  496. int script_space_size;
  497. #ifdef TEGRA_ACCELERATE
  498. boolean skip_SOI;
  499. boolean exif_data;
  500. boolean header_len;
  501. boolean crop_region;
  502. jpeg_rect_struct crop_rect;
  503. boolean image_scale;
  504. JDIMENSION scaled_image_width; /* scaled image width */
  505. JDIMENSION scaled_image_height; /* scaled image height */
  506. #endif
  507. };
  508. /* Master record for a decompression instance */
  509. struct jpeg_decompress_struct {
  510. jpeg_common_fields; /* Fields shared with jpeg_compress_struct */
  511. /* Source of compressed data */
  512. struct jpeg_source_mgr * src;
  513. /* Basic description of image --- filled in by jpeg_read_header(). */
  514. /* Application may inspect these values to decide how to process image. */
  515. JDIMENSION image_width; /* nominal image width (from SOF marker) */
  516. JDIMENSION image_height; /* nominal image height */
  517. int num_components; /* # of color components in JPEG image */
  518. J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  519. /* Decompression processing parameters --- these fields must be set before
  520. * calling jpeg_start_decompress(). Note that jpeg_read_header() initializes
  521. * them to default values.
  522. */
  523. J_COLOR_SPACE out_color_space; /* colorspace for output */
  524. unsigned int scale_num, scale_denom; /* fraction by which to scale image */
  525. double output_gamma; /* image gamma wanted in output */
  526. boolean buffered_image; /* TRUE=multiple output passes */
  527. boolean raw_data_out; /* TRUE=downsampled data wanted */
  528. J_DCT_METHOD dct_method; /* IDCT algorithm selector */
  529. boolean do_fancy_upsampling; /* TRUE=apply fancy upsampling */
  530. boolean do_block_smoothing; /* TRUE=apply interblock smoothing */
  531. boolean quantize_colors; /* TRUE=colormapped output wanted */
  532. /* the following are ignored if not quantize_colors: */
  533. J_DITHER_MODE dither_mode; /* type of color dithering to use */
  534. boolean two_pass_quantize; /* TRUE=use two-pass color quantization */
  535. int desired_number_of_colors; /* max # colors to use in created colormap */
  536. /* these are significant only in buffered-image mode: */
  537. boolean enable_1pass_quant; /* enable future use of 1-pass quantizer */
  538. boolean enable_external_quant;/* enable future use of external colormap */
  539. boolean enable_2pass_quant; /* enable future use of 2-pass quantizer */
  540. /* Description of actual output image that will be returned to application.
  541. * These fields are computed by jpeg_start_decompress().
  542. * You can also use jpeg_calc_output_dimensions() to determine these values
  543. * in advance of calling jpeg_start_decompress().
  544. */
  545. JDIMENSION output_width; /* scaled image width */
  546. JDIMENSION output_height; /* scaled image height */
  547. int out_color_components; /* # of color components in out_color_space */
  548. int output_components; /* # of color components returned */
  549. /* output_components is 1 (a colormap index) when quantizing colors;
  550. * otherwise it equals out_color_components.
  551. */
  552. int rec_outbuf_height; /* min recommended height of scanline buffer */
  553. /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
  554. * high, space and time will be wasted due to unnecessary data copying.
  555. * Usually rec_outbuf_height will be 1 or 2, at most 4.
  556. */
  557. /* When quantizing colors, the output colormap is described by these fields.
  558. * The application can supply a colormap by setting colormap non-NULL before
  559. * calling jpeg_start_decompress; otherwise a colormap is created during
  560. * jpeg_start_decompress or jpeg_start_output.
  561. * The map has out_color_components rows and actual_number_of_colors columns.
  562. */
  563. int actual_number_of_colors; /* number of entries in use */
  564. JSAMPARRAY colormap; /* The color map as a 2-D pixel array */
  565. /* State variables: these variables indicate the progress of decompression.
  566. * The application may examine these but must not modify them.
  567. */
  568. /* Row index of next scanline to be read from jpeg_read_scanlines().
  569. * Application may use this to control its processing loop, e.g.,
  570. * "while (output_scanline < output_height)".
  571. */
  572. JDIMENSION output_scanline; /* 0 .. output_height-1 */
  573. /* Current input scan number and number of iMCU rows completed in scan.
  574. * These indicate the progress of the decompressor input side.
  575. */
  576. int input_scan_number; /* Number of SOS markers seen so far */
  577. JDIMENSION input_iMCU_row; /* Number of iMCU rows completed */
  578. /* The "output scan number" is the notional scan being displayed by the
  579. * output side. The decompressor will not allow output scan/row number
  580. * to get ahead of input scan/row, but it can fall arbitrarily far behind.
  581. */
  582. int output_scan_number; /* Nominal scan number being displayed */
  583. JDIMENSION output_iMCU_row; /* Number of iMCU rows read */
  584. /* Current progression status. coef_bits[c][i] indicates the precision
  585. * with which component c's DCT coefficient i (in zigzag order) is known.
  586. * It is -1 when no data has yet been received, otherwise it is the point
  587. * transform (shift) value for the most recent scan of the coefficient
  588. * (thus, 0 at completion of the progression).
  589. * This pointer is NULL when reading a non-progressive file.
  590. */
  591. int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
  592. /* Internal JPEG parameters --- the application usually need not look at
  593. * these fields. Note that the decompressor output side may not use
  594. * any parameters that can change between scans.
  595. */
  596. /* Quantization and Huffman tables are carried forward across input
  597. * datastreams when processing abbreviated JPEG datastreams.
  598. */
  599. JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  600. /* ptrs to coefficient quantization tables, or NULL if not defined */
  601. JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  602. JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  603. /* ptrs to Huffman coding tables, or NULL if not defined */
  604. /* These parameters are never carried across datastreams, since they
  605. * are given in SOF/SOS markers or defined to be reset by SOI.
  606. */
  607. int data_precision; /* bits of precision in image data */
  608. jpeg_component_info * comp_info;
  609. /* comp_info[i] describes component that appears i'th in SOF */
  610. boolean is_baseline; /* TRUE if Baseline SOF0 encountered */
  611. boolean progressive_mode; /* TRUE if SOFn specifies progressive mode */
  612. boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  613. UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  614. UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  615. UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  616. unsigned int restart_interval; /* MCUs per restart interval, or 0 for no restart */
  617. /* These fields record data obtained from optional markers recognized by
  618. * the JPEG library.
  619. */
  620. boolean saw_JFIF_marker; /* TRUE iff a JFIF APP0 marker was found */
  621. /* Data copied from JFIF marker; only valid if saw_JFIF_marker is TRUE: */
  622. UINT8 JFIF_major_version; /* JFIF version number */
  623. UINT8 JFIF_minor_version;
  624. UINT8 density_unit; /* JFIF code for pixel size units */
  625. UINT16 X_density; /* Horizontal pixel density */
  626. UINT16 Y_density; /* Vertical pixel density */
  627. boolean saw_Adobe_marker; /* TRUE iff an Adobe APP14 marker was found */
  628. UINT8 Adobe_transform; /* Color transform code from Adobe marker */
  629. boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  630. /* Aside from the specific data retained from APPn markers known to the
  631. * library, the uninterpreted contents of any or all APPn and COM markers
  632. * can be saved in a list for examination by the application.
  633. */
  634. jpeg_saved_marker_ptr marker_list; /* Head of list of saved markers */
  635. /* Remaining fields are known throughout decompressor, but generally
  636. * should not be touched by a surrounding application.
  637. */
  638. /*
  639. * These fields are computed during decompression startup
  640. */
  641. int max_h_samp_factor; /* largest h_samp_factor */
  642. int max_v_samp_factor; /* largest v_samp_factor */
  643. int min_DCT_h_scaled_size; /* smallest DCT_h_scaled_size of any component */
  644. int min_DCT_v_scaled_size; /* smallest DCT_v_scaled_size of any component */
  645. JDIMENSION total_iMCU_rows; /* # of iMCU rows in image */
  646. /* The coefficient controller's input and output progress is measured in
  647. * units of "iMCU" (interleaved MCU) rows. These are the same as MCU rows
  648. * in fully interleaved JPEG scans, but are used whether the scan is
  649. * interleaved or not. We define an iMCU row as v_samp_factor DCT block
  650. * rows of each component. Therefore, the IDCT output contains
  651. * v_samp_factor*DCT_v_scaled_size sample rows of a component per iMCU row.
  652. */
  653. JSAMPLE * sample_range_limit; /* table for fast range-limiting */
  654. /*
  655. * These fields are valid during any one scan.
  656. * They describe the components and MCUs actually appearing in the scan.
  657. * Note that the decompressor output side must not use these fields.
  658. */
  659. int comps_in_scan; /* # of JPEG components in this scan */
  660. jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  661. /* *cur_comp_info[i] describes component that appears i'th in SOS */
  662. JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  663. JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  664. int blocks_in_MCU; /* # of DCT blocks per MCU */
  665. int MCU_membership[D_MAX_BLOCKS_IN_MCU];
  666. /* MCU_membership[i] is index in cur_comp_info of component owning */
  667. /* i'th block in an MCU */
  668. int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  669. /* These fields are derived from Se of first SOS marker.
  670. */
  671. int block_size; /* the basic DCT block size: 1..16 */
  672. const int * natural_order; /* natural-order position array for entropy decode */
  673. int lim_Se; /* min( Se, DCTSIZE2-1 ) for entropy decode */
  674. /* This field is shared between entropy decoder and marker parser.
  675. * It is either zero or the code of a JPEG marker that has been
  676. * read from the data source, but has not yet been processed.
  677. */
  678. int unread_marker;
  679. boolean b_frametodecode; /* make sure that hw decoding takes place only once though
  680. * jpeg_read_raw_data is called on MCU row basis.
  681. */
  682. boolean b_surface_alloc_done; /* make sure that surfaces are created only when
  683. * jpegTegraDecoderMgrCreate() is called.
  684. */
  685. void * tegra_surf; /*Surface handle of the output buffers*/
  686. unsigned char * input_frame_buf; /* Buffer to hold encoded input frame */
  687. unsigned int pixel_row_cnt; /* number of Y pixel rows to be copied in one MCU row */
  688. unsigned int u_pixel_row_cnt; /* number of U pixel rows to be copied in one MCU row */
  689. unsigned int v_pixel_row_cnt; /* number of V pixel rows to be copied in one MCU row */
  690. #ifdef TEGRA_ACCELERATE
  691. int hw_error_status;
  692. #endif
  693. /*
  694. * Links to decompression subobjects (methods, private variables of modules)
  695. */
  696. struct jpeg_decomp_master * master;
  697. struct jpeg_d_main_controller * main;
  698. struct jpeg_d_coef_controller * coef;
  699. struct jpeg_d_post_controller * post;
  700. struct jpeg_input_controller * inputctl;
  701. struct jpeg_marker_reader * marker;
  702. struct jpeg_entropy_decoder * entropy;
  703. struct jpeg_inverse_dct * idct;
  704. struct jpeg_upsampler * upsample;
  705. struct jpeg_color_deconverter * cconvert;
  706. struct jpeg_color_quantizer * cquantize;
  707. };
  708. /* "Object" declarations for JPEG modules that may be supplied or called
  709. * directly by the surrounding application.
  710. * As with all objects in the JPEG library, these structs only define the
  711. * publicly visible methods and state variables of a module. Additional
  712. * private fields may exist after the public ones.
  713. */
  714. /* Error handler object */
  715. struct jpeg_error_mgr {
  716. /* Error exit handler: does not return to caller */
  717. JMETHOD(void, error_exit, (j_common_ptr cinfo));
  718. /* Conditionally emit a trace or warning message */
  719. JMETHOD(void, emit_message, (j_common_ptr cinfo, int msg_level));
  720. /* Routine that actually outputs a trace or error message */
  721. JMETHOD(void, output_message, (j_common_ptr cinfo));
  722. /* Format a message string for the most recent JPEG error or message */
  723. JMETHOD(void, format_message, (j_common_ptr cinfo, char * buffer));
  724. #define JMSG_LENGTH_MAX 200 /* recommended size of format_message buffer */
  725. /* Reset error state variables at start of a new image */
  726. JMETHOD(void, reset_error_mgr, (j_common_ptr cinfo));
  727. /* The message ID code and any parameters are saved here.
  728. * A message can have one string parameter or up to 8 int parameters.
  729. */
  730. int msg_code;
  731. #define JMSG_STR_PARM_MAX 80
  732. union {
  733. int i[8];
  734. char s[JMSG_STR_PARM_MAX];
  735. } msg_parm;
  736. /* Standard state variables for error facility */
  737. int trace_level; /* max msg_level that will be displayed */
  738. /* For recoverable corrupt-data errors, we emit a warning message,
  739. * but keep going unless emit_message chooses to abort. emit_message
  740. * should count warnings in num_warnings. The surrounding application
  741. * can check for bad data by seeing if num_warnings is nonzero at the
  742. * end of processing.
  743. */
  744. long num_warnings; /* number of corrupt-data warnings */
  745. /* These fields point to the table(s) of error message strings.
  746. * An application can change the table pointer to switch to a different
  747. * message list (typically, to change the language in which errors are
  748. * reported). Some applications may wish to add additional error codes
  749. * that will be handled by the JPEG library error mechanism; the second
  750. * table pointer is used for this purpose.
  751. *
  752. * First table includes all errors generated by JPEG library itself.
  753. * Error code 0 is reserved for a "no such error string" message.
  754. */
  755. const char * const * jpeg_message_table; /* Library errors */
  756. int last_jpeg_message; /* Table contains strings 0..last_jpeg_message */
  757. /* Second table can be added by application (see cjpeg/djpeg for example).
  758. * It contains strings numbered first_addon_message..last_addon_message.
  759. */
  760. const char * const * addon_message_table; /* Non-library errors */
  761. int first_addon_message; /* code for first string in addon table */
  762. int last_addon_message; /* code for last string in addon table */
  763. };
  764. /* Progress monitor object */
  765. struct jpeg_progress_mgr {
  766. JMETHOD(void, progress_monitor, (j_common_ptr cinfo));
  767. long pass_counter; /* work units completed in this pass */
  768. long pass_limit; /* total number of work units in this pass */
  769. int completed_passes; /* passes completed so far */
  770. int total_passes; /* total number of passes expected */
  771. };
  772. /* Data destination object for compression */
  773. struct jpeg_destination_mgr {
  774. JOCTET * next_output_byte; /* => next byte to write in buffer */
  775. size_t free_in_buffer; /* # of byte spaces remaining in buffer */
  776. JMETHOD(void, init_destination, (j_compress_ptr cinfo));
  777. JMETHOD(boolean, empty_output_buffer, (j_compress_ptr cinfo));
  778. JMETHOD(void, term_destination, (j_compress_ptr cinfo));
  779. };
  780. /* Data source object for decompression */
  781. struct jpeg_source_mgr {
  782. const JOCTET * next_input_byte; /* => next byte to read from buffer */
  783. size_t bytes_in_buffer; /* # of bytes remaining in buffer */
  784. JMETHOD(void, init_source, (j_decompress_ptr cinfo));
  785. JMETHOD(boolean, fill_input_buffer, (j_decompress_ptr cinfo));
  786. JMETHOD(void, skip_input_data, (j_decompress_ptr cinfo, long num_bytes));
  787. JMETHOD(boolean, resync_to_restart, (j_decompress_ptr cinfo, int desired));
  788. JMETHOD(void, term_source, (j_decompress_ptr cinfo));
  789. };
  790. /* Memory manager object.
  791. * Allocates "small" objects (a few K total), "large" objects (tens of K),
  792. * and "really big" objects (virtual arrays with backing store if needed).
  793. * The memory manager does not allow individual objects to be freed; rather,
  794. * each created object is assigned to a pool, and whole pools can be freed
  795. * at once. This is faster and more convenient than remembering exactly what
  796. * to free, especially where malloc()/free() are not too speedy.
  797. * NB: alloc routines never return NULL. They exit to error_exit if not
  798. * successful.
  799. */
  800. #define JPOOL_PERMANENT 0 /* lasts until master record is destroyed */
  801. #define JPOOL_IMAGE 1 /* lasts until done with image/datastream */
  802. #define JPOOL_NUMPOOLS 2
  803. typedef struct jvirt_sarray_control * jvirt_sarray_ptr;
  804. typedef struct jvirt_barray_control * jvirt_barray_ptr;
  805. struct jpeg_memory_mgr {
  806. /* Method pointers */
  807. JMETHOD(void *, alloc_small, (j_common_ptr cinfo, int pool_id,
  808. size_t sizeofobject));
  809. JMETHOD(void FAR *, alloc_large, (j_common_ptr cinfo, int pool_id,
  810. size_t sizeofobject));
  811. JMETHOD(JSAMPARRAY, alloc_sarray, (j_common_ptr cinfo, int pool_id,
  812. JDIMENSION samplesperrow,
  813. JDIMENSION numrows));
  814. JMETHOD(JBLOCKARRAY, alloc_barray, (j_common_ptr cinfo, int pool_id,
  815. JDIMENSION blocksperrow,
  816. JDIMENSION numrows));
  817. JMETHOD(jvirt_sarray_ptr, request_virt_sarray, (j_common_ptr cinfo,
  818. int pool_id,
  819. boolean pre_zero,
  820. JDIMENSION samplesperrow,
  821. JDIMENSION numrows,
  822. JDIMENSION maxaccess));
  823. JMETHOD(jvirt_barray_ptr, request_virt_barray, (j_common_ptr cinfo,
  824. int pool_id,
  825. boolean pre_zero,
  826. JDIMENSION blocksperrow,
  827. JDIMENSION numrows,
  828. JDIMENSION maxaccess));
  829. JMETHOD(void, realize_virt_arrays, (j_common_ptr cinfo));
  830. JMETHOD(JSAMPARRAY, access_virt_sarray, (j_common_ptr cinfo,
  831. jvirt_sarray_ptr ptr,
  832. JDIMENSION start_row,
  833. JDIMENSION num_rows,
  834. boolean writable));
  835. JMETHOD(JBLOCKARRAY, access_virt_barray, (j_common_ptr cinfo,
  836. jvirt_barray_ptr ptr,
  837. JDIMENSION start_row,
  838. JDIMENSION num_rows,
  839. boolean writable));
  840. JMETHOD(void, free_pool, (j_common_ptr cinfo, int pool_id));
  841. JMETHOD(void, self_destruct, (j_common_ptr cinfo));
  842. /* Limit on memory allocation for this JPEG object. (Note that this is
  843. * merely advisory, not a guaranteed maximum; it only affects the space
  844. * used for virtual-array buffers.) May be changed by outer application
  845. * after creating the JPEG object.
  846. */
  847. long max_memory_to_use;
  848. /* Maximum allocation request accepted by alloc_large. */
  849. long max_alloc_chunk;
  850. };
  851. /* Routine signature for application-supplied marker processing methods.
  852. * Need not pass marker code since it is stored in cinfo->unread_marker.
  853. */
  854. typedef JMETHOD(boolean, jpeg_marker_parser_method, (j_decompress_ptr cinfo));
  855. /* Declarations for routines called by application.
  856. * The JPP macro hides prototype parameters from compilers that can't cope.
  857. * Note JPP requires double parentheses.
  858. */
  859. #ifdef HAVE_PROTOTYPES
  860. #define JPP(arglist) arglist
  861. #else
  862. #define JPP(arglist) ()
  863. #endif
  864. /* Short forms of external names for systems with brain-damaged linkers.
  865. * We shorten external names to be unique in the first six letters, which
  866. * is good enough for all known systems.
  867. * (If your compiler itself needs names to be unique in less than 15
  868. * characters, you are out of luck. Get a better compiler.)
  869. */
  870. #ifdef NEED_SHORT_EXTERNAL_NAMES
  871. #define jpeg_std_error jStdError
  872. #define jpeg_CreateCompress jCreaCompress
  873. #define jpeg_CreateDecompress jCreaDecompress
  874. #define jpeg_destroy_compress jDestCompress
  875. #define jpeg_destroy_decompress jDestDecompress
  876. #define jpeg_destroy_surface jDestSurf
  877. #define jpeg_stdio_dest jStdDest
  878. #define jpeg_stdio_src jStdSrc
  879. #define jpeg_mem_dest jMemDest
  880. #define jpeg_mem_src jMemSrc
  881. #define jpeg_set_defaults jSetDefaults
  882. #define jpeg_set_colorspace jSetColorspace
  883. #define jpeg_default_colorspace jDefColorspace
  884. #define jpeg_set_quality jSetQuality
  885. #define jpeg_set_linear_quality jSetLQuality
  886. #define jpeg_default_qtables jDefQTables
  887. #define jpeg_add_quant_table jAddQuantTable
  888. #define jpeg_quality_scaling jQualityScaling
  889. #define jpeg_simple_progression jSimProgress
  890. #define jpeg_suppress_tables jSuppressTables
  891. #define jpeg_alloc_quant_table jAlcQTable
  892. #define jpeg_alloc_huff_table jAlcHTable
  893. #define jpeg_start_compress jStrtCompress
  894. #define jpeg_write_scanlines jWrtScanlines
  895. #define jpeg_finish_compress jFinCompress
  896. #define jpeg_calc_jpeg_dimensions jCjpegDimensions
  897. #define jpeg_write_raw_data jWrtRawData
  898. #define jpeg_write_marker jWrtMarker
  899. #define jpeg_write_m_header jWrtMHeader
  900. #define jpeg_write_m_byte jWrtMByte
  901. #define jpeg_write_tables jWrtTables
  902. #define jpeg_read_header jReadHeader
  903. #define jpeg_start_decompress jStrtDecompress
  904. #define jpeg_read_scanlines jReadScanlines
  905. #define jpeg_finish_decompress jFinDecompress
  906. #define jpeg_read_raw_data jReadRawData
  907. #define jpeg_has_multiple_scans jHasMultScn
  908. #define jpeg_start_output jStrtOutput
  909. #define jpeg_finish_output jFinOutput
  910. #define jpeg_input_complete jInComplete
  911. #define jpeg_new_colormap jNewCMap
  912. #define jpeg_consume_input jConsumeInput
  913. #define jpeg_core_output_dimensions jCoreDimensions
  914. #define jpeg_calc_output_dimensions jCalcDimensions
  915. #define jpeg_save_markers jSaveMarkers
  916. #define jpeg_set_marker_processor jSetMarker
  917. #define jpeg_read_coefficients jReadCoefs
  918. #define jpeg_write_coefficients jWrtCoefs
  919. #define jpeg_copy_critical_parameters jCopyCrit
  920. #define jpeg_abort_compress jAbrtCompress
  921. #define jpeg_abort_decompress jAbrtDecompress
  922. #define jpeg_abort jAbort
  923. #define jpeg_destroy jDestroy
  924. #define jpeg_resync_to_restart jResyncRestart
  925. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  926. /* Default error-management setup */
  927. EXTERN(struct jpeg_error_mgr *) jpeg_std_error
  928. JPP((struct jpeg_error_mgr * err));
  929. /* Initialization of JPEG compression objects.
  930. * jpeg_create_compress() and jpeg_create_decompress() are the exported
  931. * names that applications should call. These expand to calls on
  932. * jpeg_CreateCompress and jpeg_CreateDecompress with additional information
  933. * passed for version mismatch checking.
  934. * NB: you must set up the error-manager BEFORE calling jpeg_create_xxx.
  935. */
  936. #define jpeg_create_compress(cinfo) \
  937. jpeg_CreateCompress((cinfo), JPEG_LIB_VERSION, \
  938. (size_t) sizeof(struct jpeg_compress_struct))
  939. #define jpeg_create_decompress(cinfo) \
  940. jpeg_CreateDecompress((cinfo), JPEG_LIB_VERSION, \
  941. (size_t) sizeof(struct jpeg_decompress_struct))
  942. EXTERN(void) jpeg_CreateCompress JPP((j_compress_ptr cinfo,
  943. int version, size_t structsize));
  944. EXTERN(void) jpeg_CreateDecompress JPP((j_decompress_ptr cinfo,
  945. int version, size_t structsize));
  946. /* Destruction of JPEG compression objects */
  947. EXTERN(void) jpeg_destroy_compress JPP((j_compress_ptr cinfo));
  948. EXTERN(void) jpeg_destroy_decompress JPP((j_decompress_ptr cinfo));
  949. /* Destruction of JPEG output surface */
  950. EXTERN(void) jpeg_destroy_surface JPP((void* surf));
  951. /* Standard data source and destination managers: stdio streams. */
  952. /* Caller is responsible for opening the file before and closing after. */
  953. EXTERN(void) jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile));
  954. EXTERN(void) jpeg_stdio_src JPP((j_decompress_ptr cinfo, FILE * infile));
  955. /* Data source and destination managers: memory buffers. */
  956. EXTERN(void) jpeg_mem_dest JPP((j_compress_ptr cinfo,
  957. unsigned char ** outbuffer,
  958. unsigned long * outsize));
  959. EXTERN(void) jpeg_mem_src JPP((j_decompress_ptr cinfo,
  960. unsigned char * inbuffer,
  961. unsigned long insize));
  962. /* Default parameter setup for compression */
  963. EXTERN(void) jpeg_set_defaults JPP((j_compress_ptr cinfo));
  964. /* Compression parameter setup aids */
  965. EXTERN(void) jpeg_set_colorspace JPP((j_compress_ptr cinfo,
  966. J_COLOR_SPACE colorspace));
  967. EXTERN(void) jpeg_default_colorspace JPP((j_compress_ptr cinfo));
  968. EXTERN(void) jpeg_set_quality JPP((j_compress_ptr cinfo, int quality,
  969. boolean force_baseline));
  970. EXTERN(void) jpeg_set_linear_quality JPP((j_compress_ptr cinfo,
  971. int scale_factor,
  972. boolean force_baseline));
  973. EXTERN(void) jpeg_default_qtables JPP((j_compress_ptr cinfo,
  974. boolean force_baseline));
  975. EXTERN(void) jpeg_add_quant_table JPP((j_compress_ptr cinfo, int which_tbl,
  976. const unsigned int *basic_table,
  977. int scale_factor,
  978. boolean force_baseline));
  979. EXTERN(int) jpeg_quality_scaling JPP((int quality));
  980. EXTERN(void) jpeg_simple_progression JPP((j_compress_ptr cinfo));
  981. EXTERN(void) jpeg_suppress_tables JPP((j_compress_ptr cinfo,
  982. boolean suppress));
  983. EXTERN(JQUANT_TBL *) jpeg_alloc_quant_table JPP((j_common_ptr cinfo));
  984. EXTERN(JHUFF_TBL *) jpeg_alloc_huff_table JPP((j_common_ptr cinfo));
  985. /* Main entry points for compression */
  986. EXTERN(void) jpeg_start_compress JPP((j_compress_ptr cinfo,
  987. boolean write_all_tables));
  988. EXTERN(JDIMENSION) jpeg_write_scanlines JPP((j_compress_ptr cinfo,
  989. JSAMPARRAY scanlines,
  990. JDIMENSION num_lines));
  991. EXTERN(void) jpeg_finish_compress JPP((j_compress_ptr cinfo));
  992. /* Precalculate JPEG dimensions for current compression parameters. */
  993. EXTERN(void) jpeg_calc_jpeg_dimensions JPP((j_compress_ptr cinfo));
  994. /* Replaces jpeg_write_scanlines when writing raw downsampled data. */
  995. EXTERN(JDIMENSION) jpeg_write_raw_data JPP((j_compress_ptr cinfo,
  996. JSAMPIMAGE data,
  997. JDIMENSION num_lines));
  998. /* Write a special marker. See libjpeg.txt concerning safe usage. */
  999. EXTERN(void) jpeg_write_marker
  1000. JPP((j_compress_ptr cinfo, int marker,
  1001. const JOCTET * dataptr, unsigned int datalen));
  1002. /* Same, but piecemeal. */
  1003. EXTERN(void) jpeg_write_m_header
  1004. JPP((j_compress_ptr cinfo, int marker, unsigned int datalen));
  1005. EXTERN(void) jpeg_write_m_byte
  1006. JPP((j_compress_ptr cinfo, int val));
  1007. /* Alternate compression function: just write an abbreviated table file */
  1008. EXTERN(void) jpeg_write_tables JPP((j_compress_ptr cinfo));
  1009. /* Decompression startup: read start of JPEG datastream to see what's there */
  1010. EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo,
  1011. boolean require_image));
  1012. /* Return value is one of: */
  1013. #define JPEG_SUSPENDED 0 /* Suspended due to lack of input data */
  1014. #define JPEG_HEADER_OK 1 /* Found valid image datastream */
  1015. #define JPEG_HEADER_TABLES_ONLY 2 /* Found valid table-specs-only datastream */
  1016. /* If you pass require_image = TRUE (normal case), you need not check for
  1017. * a TABLES_ONLY return code; an abbreviated file will cause an error exit.
  1018. * JPEG_SUSPENDED is only possible if you use a data source module that can
  1019. * give a suspension return (the stdio source module doesn't).
  1020. */
  1021. /* Main entry points for decompression */
  1022. EXTERN(boolean) jpeg_start_decompress JPP((j_decompress_ptr cinfo));
  1023. EXTERN(JDIMENSION) jpeg_read_scanlines JPP((j_decompress_ptr cinfo,
  1024. JSAMPARRAY scanlines,
  1025. JDIMENSION max_lines));
  1026. EXTERN(boolean) jpeg_finish_decompress JPP((j_decompress_ptr cinfo));
  1027. /* Replaces jpeg_read_scanlines when reading raw downsampled data. */
  1028. EXTERN(JDIMENSION) jpeg_read_raw_data JPP((j_decompress_ptr cinfo,
  1029. JSAMPIMAGE data,
  1030. JDIMENSION max_lines));
  1031. /* Additional entry points for buffered-image mode. */
  1032. EXTERN(boolean) jpeg_has_multiple_scans JPP((j_decompress_ptr cinfo));
  1033. EXTERN(boolean) jpeg_start_output JPP((j_decompress_ptr cinfo,
  1034. int scan_number));
  1035. EXTERN(boolean) jpeg_finish_output JPP((j_decompress_ptr cinfo));
  1036. EXTERN(boolean) jpeg_input_complete JPP((j_decompress_ptr cinfo));
  1037. EXTERN(void) jpeg_new_colormap JPP((j_decompress_ptr cinfo));
  1038. EXTERN(int) jpeg_consume_input JPP((j_decompress_ptr cinfo));
  1039. /* Return value is one of: */
  1040. /* #define JPEG_SUSPENDED 0 Suspended due to lack of input data */
  1041. #define JPEG_REACHED_SOS 1 /* Reached start of new scan */
  1042. #define JPEG_REACHED_EOI 2 /* Reached end of image */
  1043. #define JPEG_ROW_COMPLETED 3 /* Completed one iMCU row */
  1044. #define JPEG_SCAN_COMPLETED 4 /* Completed last iMCU row of a scan */
  1045. /* Precalculate output dimensions for current decompression parameters. */
  1046. EXTERN(void) jpeg_core_output_dimensions JPP((j_decompress_ptr cinfo));
  1047. EXTERN(void) jpeg_calc_output_dimensions JPP((j_decompress_ptr cinfo));
  1048. /* Control saving of COM and APPn markers into marker_list. */
  1049. EXTERN(void) jpeg_save_markers
  1050. JPP((j_decompress_ptr cinfo, int marker_code,
  1051. unsigned int length_limit));
  1052. /* Install a special processing method for COM or APPn markers. */
  1053. EXTERN(void) jpeg_set_marker_processor
  1054. JPP((j_decompress_ptr cinfo, int marker_code,
  1055. jpeg_marker_parser_method routine));
  1056. /* Read or write raw DCT coefficients --- useful for lossless transcoding. */
  1057. EXTERN(jvirt_barray_ptr *) jpeg_read_coefficients JPP((j_decompress_ptr cinfo));
  1058. EXTERN(void) jpeg_write_coefficients JPP((j_compress_ptr cinfo,
  1059. jvirt_barray_ptr * coef_arrays));
  1060. EXTERN(void) jpeg_copy_critical_parameters JPP((j_decompress_ptr srcinfo,
  1061. j_compress_ptr dstinfo));
  1062. /* If you choose to abort compression or decompression before completing
  1063. * jpeg_finish_(de)compress, then you need to clean up to release memory,
  1064. * temporary files, etc. You can just call jpeg_destroy_(de)compress
  1065. * if you're done with the JPEG object, but if you want to clean it up and
  1066. * reuse it, call this:
  1067. */
  1068. EXTERN(void) jpeg_abort_compress JPP((j_compress_ptr cinfo));
  1069. EXTERN(void) jpeg_abort_decompress JPP((j_decompress_ptr cinfo));
  1070. /* Generic versions of jpeg_abort and jpeg_destroy that work on either
  1071. * flavor of JPEG object. These may be more convenient in some places.
  1072. */
  1073. EXTERN(void) jpeg_abort JPP((j_common_ptr cinfo));
  1074. EXTERN(void) jpeg_destroy JPP((j_common_ptr cinfo));
  1075. /* Default restart-marker-resync procedure for use by data source modules */
  1076. EXTERN(boolean) jpeg_resync_to_restart JPP((j_decompress_ptr cinfo,
  1077. int desired));
  1078. #ifdef TEGRA_ACCELERATE
  1079. EXTERN(void) jpeg_set_hardware_acceleration_parameters_enc JPP((j_compress_ptr cinfo,
  1080. boolean hw_acceleration,
  1081. unsigned int defaultBuffSize,
  1082. unsigned int defaultWidth,
  1083. unsigned int defaultHeight
  1084. ));
  1085. EXTERN(void) jpeg_set_hardware_acceleration_parameters_dec JPP((j_decompress_ptr cinfo,
  1086. boolean hw_acceleration,
  1087. unsigned int defaultBuffSize,
  1088. unsigned int defaultWidth,
  1089. unsigned int defaultHeight,
  1090. unsigned int defaultBitstreamBuffSize,
  1091. boolean rgb565
  1092. ));
  1093. #endif
  1094. /* These marker codes are exported since applications and data source modules
  1095. * are likely to want to use them.
  1096. */
  1097. #define JPEG_RST0 0xD0 /* RST0 marker code */
  1098. #define JPEG_EOI 0xD9 /* EOI marker code */
  1099. #define JPEG_APP0 0xE0 /* APP0 marker code */
  1100. #define JPEG_COM 0xFE /* COM marker code */
  1101. /* If we have a brain-damaged compiler that emits warnings (or worse, errors)
  1102. * for structure definitions that are never filled in, keep it quiet by
  1103. * supplying dummy definitions for the various substructures.
  1104. */
  1105. #ifdef INCOMPLETE_TYPES_BROKEN
  1106. #ifndef JPEG_INTERNALS /* will be defined in jpegint.h */
  1107. struct jvirt_sarray_control { long dummy; };
  1108. struct jvirt_barray_control { long dummy; };
  1109. struct jpeg_comp_master { long dummy; };
  1110. struct jpeg_c_main_controller { long dummy; };
  1111. struct jpeg_c_prep_controller { long dummy; };
  1112. struct jpeg_c_coef_controller { long dummy; };
  1113. struct jpeg_marker_writer { long dummy; };
  1114. struct jpeg_color_converter { long dummy; };
  1115. struct jpeg_downsampler { long dummy; };
  1116. struct jpeg_forward_dct { long dummy; };
  1117. struct jpeg_entropy_encoder { long dummy; };
  1118. struct jpeg_decomp_master { long dummy; };
  1119. struct jpeg_d_main_controller { long dummy; };
  1120. struct jpeg_d_coef_controller { long dummy; };
  1121. struct jpeg_d_post_controller { long dummy; };
  1122. struct jpeg_input_controller { long dummy; };
  1123. struct jpeg_marker_reader { long dummy; };
  1124. struct jpeg_entropy_decoder { long dummy; };
  1125. struct jpeg_inverse_dct { long dummy; };
  1126. struct jpeg_upsampler { long dummy; };
  1127. struct jpeg_color_deconverter { long dummy; };
  1128. struct jpeg_color_quantizer { long dummy; };
  1129. #endif /* JPEG_INTERNALS */
  1130. #endif /* INCOMPLETE_TYPES_BROKEN */
  1131. /*
  1132. * The JPEG library modules define JPEG_INTERNALS before including this file.
  1133. * The internal structure declarations are read only when that is true.
  1134. * Applications using the library should not include jpegint.h, but may wish
  1135. * to include jerror.h.
  1136. */
  1137. #ifdef JPEG_INTERNALS
  1138. #include "jpegint.h" /* fetch private declarations */
  1139. #include "jerror.h" /* fetch error codes too */
  1140. #endif
  1141. #ifdef __cplusplus
  1142. #ifndef DONT_USE_EXTERN_C
  1143. }
  1144. #endif
  1145. #endif
  1146. #endif /* JPEGLIB_H */