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

📄 mcu.h

📁 dicom file 查看工具 DICOM文件是医疗设备使用的文件格式。
💻 H
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -