mpg4dec.cpp

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

CPP
25
字号
#include"mpg4dec.h"

CMPEG4Decoder* CMPEG4Decoder::NewL(const TUint32 aWidth,
		const TUint32 aHeight)
	{
	CMPEG4Decoder* self = CMPEG4Decoder::NewLC(aWidth,aHeight);
	CleanupStack::Pop( self );
	return self;
	}
CMPEG4Decoder* CMPEG4Decoder::NewLC(const TUint32 aWidth,
		const TUint32 aHeight)
	{
	CMPEG4Decoder* self = new ( ELeave ) CMPEG4Decoder;
	CleanupStack::PushL( self );
	return self;
	}
CMPEG4Decoder::~CMPEG4Decoder()
	{}
TInt CMPEG4Decoder::DecodeL(const TUint8* aBufIn, TUint aSizeIn,
		const TUint8* aBufOut, TUint aSizeOut)
	{
	return 0;
	}

⌨️ 快捷键说明

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