⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jddctmgr.c

📁 在ecos 下mingui 的移植开发
💻 C
字号:
#define JPEG_INTERNALS#include "jpeglib.h"#include "jdct.h"		/* Private declarations for DCT subsystem */typedef struct {  struct jpeg_inverse_dct pub;	/* public fields */  /* This array contains the IDCT method code that each multiplier table   * is currently set up for, or -1 if it's not yet set up.   * The actual multiplier tables are pointed to by dct_table in the   * per-component comp_info structures.   */  int cur_method[MAX_COMPONENTS];} my_idct_controller;typedef my_idct_controller * my_idct_ptr;/* Allocated multiplier tables: big enough for any supported variant */typedef union {  ISLOW_MULT_TYPE islow_array[DCTSIZE2];#ifdef DCT_IFAST_SUPPORTED  IFAST_MULT_TYPE ifast_array[DCTSIZE2];#endif#ifdef DCT_FLOAT_SUPPORTED  FLOAT_MULT_TYPE float_array[DCTSIZE2];#endif} multiplier_table;/* The current scaled-IDCT routines require ISLOW-style multiplier tables, * so be sure to compile that code if either ISLOW or SCALING is requested. */#ifdef DCT_ISLOW_SUPPORTED#define PROVIDE_ISLOW_TABLES#else#ifdef IDCT_SCALING_SUPPORTED#define PROVIDE_ISLOW_TABLES#endif#endif/* * Prepare for an output pass. * Here we select the proper IDCT routine for each component and build * a matching multiplier table. */METHODDEF(void)start_pass (j_decompress_ptr cinfo){  my_idct_ptr idct = (my_idct_ptr) cinfo->idct;  int ci, i;  jpeg_component_info *compptr;  int method = 0;  inverse_DCT_method_ptr method_ptr = NULL;  JQUANT_TBL * qtbl;  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;       ci++, compptr++) {    /* Select the proper IDCT routine for this component's scaling */    switch (compptr->DCT_scaled_size) {#ifdef IDCT_SCALING_SUPPORTED    case 1:        method_ptr = jpeg_idct_1x1;        method = JDCT_ISLOW;	/* jidctred uses islow-style table */        break;    case 2:        method_ptr = jpeg_idct_2x2;        method = JDCT_ISLOW;	/* jidctred uses islow-style table */        break;    case 4:        method_ptr = jpeg_idct_4x4;        method = JDCT_ISLOW;	/* jidctred uses islow-style table */        break;#endif    case DCTSIZE:	    method_ptr = jpeg_idct_ifast;	    method = JDCT_IFAST;    	break;    default:      ERREXIT1(cinfo, JERR_BAD_DCTSIZE, compptr->DCT_scaled_size);      break;    }    idct->pub.inverse_DCT[ci] = method_ptr;    /* Create multiplier table from quant table.     * However, we can skip this if the component is uninteresting     * or if we already built the table.  Also, if no quant table     * has yet been saved for the component, we leave the     * multiplier table all-zero; we'll be reading zeroes from the     * coefficient controller's buffer anyway.     */    if (! compptr->component_needed || idct->cur_method[ci] == method)      continue;    qtbl = compptr->quant_table;    if (qtbl == NULL)		/* happens if no data yet for component */      continue;    idct->cur_method[ci] = method;	/* For AA&N IDCT method, multipliers are equal to quantization	 * coefficients scaled by scalefactor[row]*scalefactor[col], where	 *   scalefactor[0] = 1	 *   scalefactor[k] = cos(k*PI/16) * sqrt(2)    for k=1..7	 * For integer operation, the multiplier table is to be scaled by	 * IFAST_SCALE_BITS.	 */    {	IFAST_MULT_TYPE * ifmtbl = (IFAST_MULT_TYPE *) compptr->dct_table;#define CONST_BITS 14	static const INT16 aanscales[DCTSIZE2] = {	  /* precomputed values scaled up by 14 bits */	  16384, 22725, 21407, 19266, 16384, 12873,  8867,  4520,	  22725, 31521, 29692, 26722, 22725, 17855, 12299,  6270,	  21407, 29692, 27969, 25172, 21407, 16819, 11585,  5906,	  19266, 26722, 25172, 22654, 19266, 15137, 10426,  5315,	  16384, 22725, 21407, 19266, 16384, 12873,  8867,  4520,	  12873, 17855, 16819, 15137, 12873, 10114,  6967,  3552,	   8867, 12299, 11585, 10426,  8867,  6967,  4799,  2446,	   4520,  6270,  5906,  5315,  4520,  3552,  2446,  1247	};	SHIFT_TEMPS        for (i = 0; i < DCTSIZE2; i++) {        ifmtbl[i] = (IFAST_MULT_TYPE)        DESCALE(MULTIPLY16V16((INT32) qtbl->quantval[i],		          (INT32) aanscales[i]),	        CONST_BITS-IFAST_SCALE_BITS);        }    }  }}/* * Initialize IDCT manager. */GLOBAL(void)jinit_inverse_dct (j_decompress_ptr cinfo){  my_idct_ptr idct;  int ci;  jpeg_component_info *compptr;  idct = (my_idct_ptr)    (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,				SIZEOF(my_idct_controller));  cinfo->idct = (struct jpeg_inverse_dct *) idct;  idct->pub.start_pass = start_pass;  for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;       ci++, compptr++) {    /* Allocate and pre-zero a multiplier table for each component */    compptr->dct_table =      (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,				  SIZEOF(multiplier_table));    MEMZERO(compptr->dct_table, SIZEOF(multiplier_table));    /* Mark multiplier table not yet set up for any method */    idct->cur_method[ci] = -1;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -