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

📄 scale.h

📁 symbian上的yuv视频文件处理程序 可对yuv的每一帧数据进行读取 处理 显示
💻 H
字号:
/*
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -