📄 yuv2rgb.h
字号:
/*
* yuv2rgb.h
*
* The YUV to RGB for Symbian Project
*
* Copyright (c) 2005-2008 for Cyansoft Studio (www.cyansoft.com.cn).
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Cyansoft$
*
*/
#ifndef _YUV_TO_RGB_INC_
#define _YUV_TO_RGB_INC_
#include <e32base.h>
#include <gdi.h>
class CYuv2Rgb : public CBase
{
public:
static CYuv2Rgb* NewL( TDisplayMode aMode );
static CYuv2Rgb* NewLC( TDisplayMode aMode );
virtual ~CYuv2Rgb();
void ConstructL( TDisplayMode aMode );
void ConvertL( TUint8* rgb, TUint8* y, TUint8* u, TUint8* v,
TUint32 width, TUint32 height,
TUint32 rgb_stride, TUint32 y_stride, TUint32 uv_stride );
};
#endif /* _YUV_TO_RGB_INC_ */
/* End of file */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -