mcu.h
来自「dicom file 查看工具 DICOM文件是医疗设备使用的文件格式。」· C头文件 代码 · 共 42 行
H
42 行
/* * mcu.h -- * * Part of the Independent JPEG Group's software. * See the file Copyright for more details. * *//* * $Id: mcu.h,v 1.2 2004/12/14 22:59:34 enlf Exp $ */#ifndef _MCU#define _MCU/* * An MCU (minimum coding unit) is an array of samples. */typedef unsigned short ComponentType; /* the type of image components */typedef ComponentType *MCU; /* MCU - array of samples */extern MCU *mcuTable; /* the global mcu table that buffers the source image */extern int numMCU; /* number of MCUs in mcuTable */extern MCU *mcuROW1,*mcuROW2; /* pt to two rows of MCU in encoding & decoding *//* *-------------------------------------------------------------- * * MakeMCU -- * * MakeMCU returns an MCU for input parsing. * * Results: * A new MCU * * Side effects: * None. * *-------------------------------------------------------------- */#define MakeMCU(dcPtr) (mcuTable[numMCU++])#endif /* _MCU */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?