mpg4dec.h

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

H
32
字号
/*
 * mpg4dec.h
 *
 * The MPEG4 Codec for Symbian Project
 *
 * Copyright (c) 2005-2008 for Cyansoft Studio (www.cyansoft.com.cn).
 * All Rights Reserved.
 *
 * Contributor(s): ______________________________________.
 *
 * $Cyansoft$
 * 
 */
#ifndef _MPG4_DEC_INC_
#define _MPG4_DEC_INC_

#include <e32base.h>

class CMPEG4Decoder : public CBase
	{
public:
	static CMPEG4Decoder* NewL( const TUint32 aWidth, const TUint32 aHeight );
	static CMPEG4Decoder* NewLC( const TUint32 aWidth, const TUint32 aHeight );
	~CMPEG4Decoder();
	TInt DecodeL( const TUint8* aBufIn, TUint aSizeIn, const TUint8* aBufOut, TUint aSizeOut );
	};

#endif  /* _MPG4_DEC_INC_ */
/* End of file */


⌨️ 快捷键说明

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