jpeglib.h 56 KB

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