jpeg_api_encoder.h

来自「ADI blackfin DSP的基于device friver的jpeg压缩算」· C头文件 代码 · 共 60 行

H
60
字号
/*****************************************************************************
Copyright(c) 2005 Analog Devices, Inc.  All Rights Reserved. This software is 
proprietary and confidential to Analog Devices, Inc. and its licensors.
******************************************************************************

$RCSfile: JPEG_api_encoder.h,v $
$Revision: 1.1 $
$Date: 2006/07/17 07:18:18 $

Project:	JPEG IMAGE CODEC
Title:		Common header file
Author(s):	A.S
Revised by: 

Description:
Declarations for JPEG Encoder Library API

References:
	
******************************************************************************
Tab Setting:			4
Target Processor:		Blackfin
Target Tools Revision:	VDSP++ 4.0
******************************************************************************

Modification History:
====================
$Log: JPEG_api_encoder.h,v $
Revision 1.1  2006/07/17 07:18:18  bmk
JPEG-MJPEG User access files


******************************************************************************/

#ifndef JPEG_API_ENCODER_H
#define JPEG_API_ENCODER_H

#include "JPEG_api_common.h"

/****************************************************************************
 * 		Typedefs/Enumerations												*
 ****************************************************************************/
typedef void tJpegEncoder;

/****************************************************************************
 * 		Function Declarations												*
 ****************************************************************************/

/* Defined in JPEG_api.c */
extern tJpegEncoder	    *JPEG_Encoder_NEW(tJpegParam *param);
extern void             JPEG_Encoder_DELETE(tJpegEncoder* handle);

/* Defined in encoder.c */
extern int              JPEG_EncodeImage(tJpegEncoder *handle, unsigned int *numBytes);
extern int				JPEG_EncodeSequentialImage(tJpegEncoder *handle, unsigned int *numBytes);
extern int				JPEG_EncodeProgressiveImage(tJpegEncoder *handle, unsigned int *numBytes);

#endif

⌨️ 快捷键说明

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