scale.h

来自「symbian上的yuv视频文件处理程序 可对yuv的每一帧数据进行读取 处理」· C头文件 代码 · 共 33 行

H
33
字号
/*
 * scale.h
 *
 * The RGB Scale for Symbian Project
 *
 * Copyright (c) 2005-2008 for Cyansoft Studio (www.cyansoft.com.cn).
 * All Rights Reserved.
 *
 * Contributor(s): ______________________________________.
 *
 * $Cyansoft$
 * 
 */
#ifndef _SCALE_INC_
#define _SCALE_INC_

#include <e32base.h>

class CScale : public CBase
	{
public:
	static CScale* NewL( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
	static CScale* NewLC( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
	virtual ~CScale();
	void ConstructL( TUint32 aSrcW, TUint32 aSrcH, TUint32 aDstW, TUint32 aDstH, TUint32 aBytesPixel );
	void ConvertL( const TUint8* aSrc, const TUint8* aDst );
	};

#endif  /* _SCALE_INC_ */
/* End of file */


⌨️ 快捷键说明

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