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

📄 decolor.h

📁 JPEG解压软件,包含PC端的测试程序,程序结构比较清晰
💻 H
字号:


#ifndef _JPEG_DECOLOR_H
#define _JPEG_DECOLOR_H

#include "AMPlat.h"
#include "AMComDef.h"


#define OUTPUT_ORDER_BGR


typedef struct tagDecolorParam
{		

	MByte	*pY; 
	MByte	*pCb; 
	MByte	*pCr; 	
	MByte	*outRGB;
	
	int		*COE_Cr;
	int		*COE_Cb;

#ifdef __WIN32__
	int		OutWidth;
	int		OutLineCount;
	int		BackBytes;
#endif

} DECOLOR_PARAM, * LPDECOLOR_PARAM;



MVoid JPG_YCMK_DeColor( int size, LPDECOLOR_PARAM pDecolorParam, int offset) ;

MVoid JPG_TrueColor_DeColor( register MByte *ColorLimitTable, int size, LPDECOLOR_PARAM pDecolorParam, int offset) ;
 
MVoid JPG_GrayScale_DeColor (int size, LPDECOLOR_PARAM pDecolorParam, int offset);


#endif /* _JPEG_DECOLOR_H */

⌨️ 快捷键说明

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