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

📄 ijpegdec.c

📁 图像处理的应用实例
💻 C
字号:
/*
 *  ======== ijpegdec.c ========
 *  This file defines the default parameter structure for ijpegdec.h
 */
#include <std.h>
#include "ijpegdec.h"

/*------------------------------------------------------------------*/
/* Output pitch to use to paste decoded samples 4:2:0 structure.    */
/* This will paste even a decoded image of 320x240 into a 720xX     */
/* region.                                                          */
/*------------------------------------------------------------------*/

#define  HC 720

/*
 *  ======== JPEGDEC_PARAMS ========
 *  This constant structure defines the default parameters for JPEGDEC objects
 */
IJPEGDEC_Params IJPEGDEC_PARAMS = 
{
    sizeof(IJPEGDEC_Params),
    HC, (HC >>1), (HC >> 1)

};

/*------------------------------------------------------------------*/
/* Texas Instruments Incorporated 1997-2003.                        */
/*==================================================================*/
/*                                                                  */
/*------------------------------------------------------------------*/


⌨️ 快捷键说明

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