亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jdpostct.c

?? MPEG4解碼程序源代碼(能夠對各種MPEG4文件進行解碼)
?? C
字號:
////////////////////////////////////////////////////////////////////////
//
//	Note : this file is included as part of the Smaller Animals Software
//	JpegFile package. Though this file has not been modified from it's 
//	original IJG 6a form, it is not the responsibility on the Independent
//	JPEG Group to answer questions regarding this code.
//	
//	Any questions you have about this code should be addressed to :
//
//	CHRISDL@PAGESZ.NET	- the distributor of this package.
//
//	Remember, by including this code in the JpegFile package, Smaller 
//	Animals Software assumes all responsibilities for answering questions
//	about it. If we (SA Software) can't answer your questions ourselves, we 
//	will direct you to people who can.
//
//	Thanks, CDL.
//
////////////////////////////////////////////////////////////////////////

/*
 * jdpostct.c
 *
 * Copyright (C) 1994-1996, Thomas G. Lane.
 * This file is part of the Independent JPEG Group's software.
 * For conditions of distribution and use, see the accompanying README file.
 *
 * This file contains the decompression postprocessing controller.
 * This controller manages the upsampling, color conversion, and color
 * quantization/reduction steps; specifically, it controls the buffering
 * between upsample/color conversion and color quantization/reduction.
 *
 * If no color quantization/reduction is required, then this module has no
 * work to do, and it just hands off to the upsample/color conversion code.
 * An integrated upsample/convert/quantize process would replace this module
 * entirely.
 */

#define JPEG_INTERNALS
#include "jinclude.h"
#include "jpeglib.h"


/* Private buffer controller object */

typedef struct {
  struct jpeg_d_post_controller pub; /* public fields */

  /* Color quantization source buffer: this holds output data from
   * the upsample/color conversion step to be passed to the quantizer.
   * For two-pass color quantization, we need a full-image buffer;
   * for one-pass operation, a strip buffer is sufficient.
   */
  jvirt_sarray_ptr whole_image;	/* virtual array, or NULL if one-pass */
  JSAMPARRAY buffer;		/* strip buffer, or current strip of virtual */
  JDIMENSION strip_height;	/* buffer size in rows */
  /* for two-pass mode only: */
  JDIMENSION starting_row;	/* row # of first row in current strip */
  JDIMENSION next_row;		/* index of next row to fill/empty in strip */
} my_post_controller;

typedef my_post_controller * my_post_ptr;


/* Forward declarations */
METHODDEF(void) post_process_1pass
	JPP((j_decompress_ptr cinfo,
	     JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
	     JDIMENSION in_row_groups_avail,
	     JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
	     JDIMENSION out_rows_avail));
#ifdef QUANT_2PASS_SUPPORTED
METHODDEF(void) post_process_prepass
	JPP((j_decompress_ptr cinfo,
	     JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
	     JDIMENSION in_row_groups_avail,
	     JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
	     JDIMENSION out_rows_avail));
METHODDEF(void) post_process_2pass
	JPP((j_decompress_ptr cinfo,
	     JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
	     JDIMENSION in_row_groups_avail,
	     JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
	     JDIMENSION out_rows_avail));
#endif


/*
 * Initialize for a processing pass.
 */

METHODDEF(void)
start_pass_dpost (j_decompress_ptr cinfo, J_BUF_MODE pass_mode)
{
  my_post_ptr post = (my_post_ptr) cinfo->post;

  switch (pass_mode) {
  case JBUF_PASS_THRU:
    if (cinfo->quantize_colors) {
      /* Single-pass processing with color quantization. */
      post->pub.post_process_data = post_process_1pass;
      /* We could be doing buffered-image output before starting a 2-pass
       * color quantization; in that case, jinit_d_post_controller did not
       * allocate a strip buffer.  Use the virtual-array buffer as workspace.
       */
      if (post->buffer == NULL) {
	post->buffer = (*cinfo->mem->access_virt_sarray)
	  ((j_common_ptr) cinfo, post->whole_image,
	   (JDIMENSION) 0, post->strip_height, TRUE);
      }
    } else {
      /* For single-pass processing without color quantization,
       * I have no work to do; just call the upsampler directly.
       */
      post->pub.post_process_data = cinfo->upsample->upsample;
    }
    break;
#ifdef QUANT_2PASS_SUPPORTED
  case JBUF_SAVE_AND_PASS:
    /* First pass of 2-pass quantization */
    if (post->whole_image == NULL)
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
    post->pub.post_process_data = post_process_prepass;
    break;
  case JBUF_CRANK_DEST:
    /* Second pass of 2-pass quantization */
    if (post->whole_image == NULL)
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
    post->pub.post_process_data = post_process_2pass;
    break;
#endif /* QUANT_2PASS_SUPPORTED */
  default:
    ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
    break;
  }
  post->starting_row = post->next_row = 0;
}


/*
 * Process some data in the one-pass (strip buffer) case.
 * This is used for color precision reduction as well as one-pass quantization.
 */

METHODDEF(void)
post_process_1pass (j_decompress_ptr cinfo,
		    JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
		    JDIMENSION in_row_groups_avail,
		    JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
		    JDIMENSION out_rows_avail)
{
  my_post_ptr post = (my_post_ptr) cinfo->post;
  JDIMENSION num_rows, max_rows;

  /* Fill the buffer, but not more than what we can dump out in one go. */
  /* Note we rely on the upsampler to detect bottom of image. */
  max_rows = out_rows_avail - *out_row_ctr;
  if (max_rows > post->strip_height)
    max_rows = post->strip_height;
  num_rows = 0;
  (*cinfo->upsample->upsample) (cinfo,
		input_buf, in_row_group_ctr, in_row_groups_avail,
		post->buffer, &num_rows, max_rows);
  /* Quantize and emit data. */
  (*cinfo->cquantize->color_quantize) (cinfo,
		post->buffer, output_buf + *out_row_ctr, (int) num_rows);
  *out_row_ctr += num_rows;
}


#ifdef QUANT_2PASS_SUPPORTED

/*
 * Process some data in the first pass of 2-pass quantization.
 */

METHODDEF(void)
post_process_prepass (j_decompress_ptr cinfo,
		      JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
		      JDIMENSION in_row_groups_avail,
		      JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
		      JDIMENSION out_rows_avail)
{
  my_post_ptr post = (my_post_ptr) cinfo->post;
  JDIMENSION old_next_row, num_rows;

  /* Reposition virtual buffer if at start of strip. */
  if (post->next_row == 0) {
    post->buffer = (*cinfo->mem->access_virt_sarray)
	((j_common_ptr) cinfo, post->whole_image,
	 post->starting_row, post->strip_height, TRUE);
  }

  /* Upsample some data (up to a strip height's worth). */
  old_next_row = post->next_row;
  (*cinfo->upsample->upsample) (cinfo,
		input_buf, in_row_group_ctr, in_row_groups_avail,
		post->buffer, &post->next_row, post->strip_height);

  /* Allow quantizer to scan new data.  No data is emitted, */
  /* but we advance out_row_ctr so outer loop can tell when we're done. */
  if (post->next_row > old_next_row) {
    num_rows = post->next_row - old_next_row;
    (*cinfo->cquantize->color_quantize) (cinfo, post->buffer + old_next_row,
					 (JSAMPARRAY) NULL, (int) num_rows);
    *out_row_ctr += num_rows;
  }

  /* Advance if we filled the strip. */
  if (post->next_row >= post->strip_height) {
    post->starting_row += post->strip_height;
    post->next_row = 0;
  }
}


/*
 * Process some data in the second pass of 2-pass quantization.
 */

METHODDEF(void)
post_process_2pass (j_decompress_ptr cinfo,
		    JSAMPIMAGE input_buf, JDIMENSION *in_row_group_ctr,
		    JDIMENSION in_row_groups_avail,
		    JSAMPARRAY output_buf, JDIMENSION *out_row_ctr,
		    JDIMENSION out_rows_avail)
{
  my_post_ptr post = (my_post_ptr) cinfo->post;
  JDIMENSION num_rows, max_rows;

  /* Reposition virtual buffer if at start of strip. */
  if (post->next_row == 0) {
    post->buffer = (*cinfo->mem->access_virt_sarray)
	((j_common_ptr) cinfo, post->whole_image,
	 post->starting_row, post->strip_height, FALSE);
  }

  /* Determine number of rows to emit. */
  num_rows = post->strip_height - post->next_row; /* available in strip */
  max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
  if (num_rows > max_rows)
    num_rows = max_rows;
  /* We have to check bottom of image here, can't depend on upsampler. */
  max_rows = cinfo->output_height - post->starting_row;
  if (num_rows > max_rows)
    num_rows = max_rows;

  /* Quantize and emit data. */
  (*cinfo->cquantize->color_quantize) (cinfo,
		post->buffer + post->next_row, output_buf + *out_row_ctr,
		(int) num_rows);
  *out_row_ctr += num_rows;

  /* Advance if we filled the strip. */
  post->next_row += num_rows;
  if (post->next_row >= post->strip_height) {
    post->starting_row += post->strip_height;
    post->next_row = 0;
  }
}

#endif /* QUANT_2PASS_SUPPORTED */


/*
 * Initialize postprocessing controller.
 */

GLOBAL(void)
jinit_d_post_controller (j_decompress_ptr cinfo, boolean need_full_buffer)
{
  my_post_ptr post;

  post = (my_post_ptr)
    (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
				SIZEOF(my_post_controller));
  cinfo->post = (struct jpeg_d_post_controller *) post;
  post->pub.start_pass = start_pass_dpost;
  post->whole_image = NULL;	/* flag for no virtual arrays */
  post->buffer = NULL;		/* flag for no strip buffer */

  /* Create the quantization buffer, if needed */
  if (cinfo->quantize_colors) {
    /* The buffer strip height is max_v_samp_factor, which is typically
     * an efficient number of rows for upsampling to return.
     * (In the presence of output rescaling, we might want to be smarter?)
     */
    post->strip_height = (JDIMENSION) cinfo->max_v_samp_factor;
    if (need_full_buffer) {
      /* Two-pass color quantization: need full-image storage. */
      /* We round up the number of rows to a multiple of the strip height. */
#ifdef QUANT_2PASS_SUPPORTED
      post->whole_image = (*cinfo->mem->request_virt_sarray)
	((j_common_ptr) cinfo, JPOOL_IMAGE, FALSE,
	 cinfo->output_width * cinfo->out_color_components,
	 (JDIMENSION) jround_up((long) cinfo->output_height,
				(long) post->strip_height),
	 post->strip_height);
#else
      ERREXIT(cinfo, JERR_BAD_BUFFER_MODE);
#endif /* QUANT_2PASS_SUPPORTED */
    } else {
      /* One-pass color quantization: just make a strip buffer. */
      post->buffer = (*cinfo->mem->alloc_sarray)
	((j_common_ptr) cinfo, JPOOL_IMAGE,
	 cinfo->output_width * cinfo->out_color_components,
	 post->strip_height);
    }
  }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av在线免费不卡| 国产三级欧美三级| 欧美韩国日本综合| 婷婷综合久久一区二区三区| 丁香天五香天堂综合| 欧美日韩大陆在线| 日本一区二区视频在线观看| 日本不卡不码高清免费观看| 色婷婷国产精品| 国产精品久久综合| 激情文学综合丁香| 欧美一级高清片在线观看| 亚洲一区二区三区四区的| 99国产一区二区三精品乱码| 久久精品水蜜桃av综合天堂| 久久成人羞羞网站| 欧美一区二区三区的| 亚洲午夜免费电影| 色婷婷综合久久久中文一区二区| 日本一区二区三区dvd视频在线| 久久99精品久久久久婷婷| 欧美三级电影在线观看| 亚洲一区在线看| 欧美性三三影院| 亚洲国产人成综合网站| 欧洲色大大久久| 亚洲美女偷拍久久| 99精品桃花视频在线观看| 国产精品午夜免费| 国产a精品视频| 中文字幕精品一区二区精品绿巨人| 久久99精品久久久久久国产越南| 制服丝袜成人动漫| 三级久久三级久久| 91麻豆精品国产自产在线| 午夜精品123| 日韩欧美国产成人一区二区| 另类的小说在线视频另类成人小视频在线 | 午夜视频一区二区| 欧美剧在线免费观看网站 | 国产成人综合亚洲91猫咪| 久久男人中文字幕资源站| 国产一区二区91| 国产精品理伦片| 欧美午夜免费电影| 蜜桃精品视频在线| 国产精品网站在线观看| 91麻豆免费在线观看| 亚洲成人中文在线| 亚洲精品在线观| 99国产精品国产精品毛片| 亚洲福利视频导航| 久久新电视剧免费观看| 91网站黄www| 首页国产欧美日韩丝袜| 精品久久久久久久久久久院品网 | 丰满白嫩尤物一区二区| 亚洲精品国产第一综合99久久 | 男男gaygay亚洲| 国产亚洲精品中文字幕| 91丨九色丨尤物| 青青国产91久久久久久| 国产精品私人自拍| 欧美剧情片在线观看| 粉嫩嫩av羞羞动漫久久久| 亚洲一二三四在线观看| 精品国产1区二区| 91污片在线观看| 精品一区二区三区香蕉蜜桃 | 紧缚奴在线一区二区三区| 中文字幕av一区 二区| 欧美日韩免费一区二区三区 | 最好看的中文字幕久久| 337p亚洲精品色噜噜狠狠| www.一区二区| 久久99国产精品久久99果冻传媒| 国产精品初高中害羞小美女文| 91精品国产91久久久久久最新毛片 | 精品亚洲porn| 欧美精品v国产精品v日韩精品 | 欧洲一区二区三区在线| 91在线视频免费观看| 久久久激情视频| 国产成人在线网站| 欧美国产日韩一二三区| av动漫一区二区| 亚洲最色的网站| 欧美精品第1页| 国产一区二区三区高清播放| 欧美激情一区二区三区四区| 91丨九色丨尤物| 午夜精品免费在线| 精品国产91九色蝌蚪| 成人动漫一区二区| 亚洲一二三四区| 26uuu国产一区二区三区| 成人av午夜电影| 天天爽夜夜爽夜夜爽精品视频| 欧美一区二区在线视频| 国产精品91一区二区| 亚洲综合无码一区二区| 日韩精品专区在线影院观看| 成人精品在线视频观看| 天堂成人免费av电影一区| 久久久久久久久久电影| 一本大道久久精品懂色aⅴ| 青青青伊人色综合久久| 国产精品免费av| 91精品国产91热久久久做人人| 高清日韩电视剧大全免费| 一区二区三区精密机械公司| 精品久久久久久久久久久久久久久 | 欧美va天堂va视频va在线| 成人国产精品免费网站| 五月婷婷久久丁香| 中文字幕 久热精品 视频在线 | 欧美成人伊人久久综合网| 91亚洲大成网污www| 久久精品国产成人一区二区三区| 亚洲欧美日韩精品久久久久| 精品国产自在久精品国产| 91国偷自产一区二区开放时间| 激情文学综合插| 婷婷综合在线观看| 一二三区精品福利视频| 日本一二三不卡| 欧美mv日韩mv| 777亚洲妇女| 欧美亚一区二区| 91小视频在线免费看| 国产成人精品免费| 韩国精品久久久| 日韩高清不卡一区二区| 亚洲高清免费视频| 一区二区三区在线影院| 国产嫩草影院久久久久| 久久久久久黄色| 久久色中文字幕| 欧美成人一区二区| 日韩精品中文字幕一区二区三区 | ...av二区三区久久精品| 久久嫩草精品久久久精品一| 欧美一区二区三区视频免费 | 日韩一区二区三区在线| 在线免费观看不卡av| 色悠久久久久综合欧美99| av电影在线观看一区| 成人动漫中文字幕| 99久免费精品视频在线观看| 国产成人高清在线| 丰满白嫩尤物一区二区| 成人午夜又粗又硬又大| 国产91高潮流白浆在线麻豆| 成人精品视频一区二区三区尤物| 国产成人精品一区二| 成人国产精品免费| 99精品国产一区二区三区不卡| 成人午夜视频免费看| 91香蕉视频污在线| 欧美日韩一卡二卡| 欧美一区二区三区婷婷月色| 日韩女优毛片在线| 久久婷婷国产综合国色天香| 久久精品一区二区| 亚洲色欲色欲www在线观看| 一区二区三区蜜桃网| 午夜伦理一区二区| 久久97超碰色| 波多野结衣精品在线| 欧美日韩日日摸| 国产亚洲一本大道中文在线| 日韩伦理av电影| 日本视频免费一区| 国产高清在线观看免费不卡| 色8久久精品久久久久久蜜 | 国产性色一区二区| 亚洲天堂成人在线观看| 日韩va亚洲va欧美va久久| 国产电影一区在线| 日本道色综合久久| 精品国产成人系列| 亚洲精品乱码久久久久久黑人 | 欧美日本在线观看| 国产欧美一区二区在线观看| 亚洲精品国产精品乱码不99| 久久99这里只有精品| 9l国产精品久久久久麻豆| 欧美精品在线一区二区| 国产精品久久综合| 久久精品久久99精品久久| 99国产精品久久久久久久久久久| 日韩一区二区三区免费观看| 国产精品免费观看视频| 免费一区二区视频| 色综合天天性综合| 久久精品一区二区三区四区| 午夜视频在线观看一区二区三区| 成人午夜精品一区二区三区| 日韩午夜av一区| 亚洲第四色夜色|