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

📄 mpeg4decoderapplication.cpp

📁 symbian上的yuv视频文件处理程序 可对yuv的每一帧数据进行读取 处理 显示
💻 CPP
字号:
/*
========================================================================
 Name        : Mpeg4DecoderApplication.cpp
 Author      : Jin
 Copyright   : Copyright (C) 2005-2008 Cyansoft Studio, All rights Reserved.
 Description : 
========================================================================
*/
// [[[ begin generated region: do not modify [Generated System Includes]
// ]]] end generated region [Generated System Includes]

// [[[ begin generated region: do not modify [Generated Includes]
#include "Mpeg4DecoderApplication.h"
#include "Mpeg4DecoderDocument.h"
#ifdef EKA2
#include <eikstart.h>
#endif
// ]]] end generated region [Generated Includes]

/**
 * @brief Returns the application's UID (override from CApaApplication::AppDllUid())
 * @return UID for this application (KUidMpeg4DecoderApplication)
 */
TUid CMpeg4DecoderApplication::AppDllUid() const
	{
	return KUidMpeg4DecoderApplication;
	}

/**
 * @brief Creates the application's document (override from CApaApplication::CreateDocumentL())
 * @return Pointer to the created document object (CMpeg4DecoderDocument)
 */
CApaDocument* CMpeg4DecoderApplication::CreateDocumentL()
	{
	return CMpeg4DecoderDocument::NewL( *this );
	}

#ifdef EKA2

/**
 *	@brief Called by the application framework to construct the application object
 *  @return The application (CMpeg4DecoderApplication)
 */	
LOCAL_C CApaApplication* NewApplication()
	{
	return new CMpeg4DecoderApplication;
	}

/**
* @brief This standard export is the entry point for all Series 60 applications
* @return error code
 */	
GLDEF_C TInt E32Main()
	{
	return EikStart::RunApplication( NewApplication );
	}
	
#else 	// Series 60 2.x main DLL program code

/**
* @brief This standard export constructs the application object.
* @return The application (CMpeg4DecoderApplication)
*/
EXPORT_C CApaApplication* NewApplication()
	{
	return new CMpeg4DecoderApplication;
	}

/**
* @brief This standard export is the entry point for all Series 60 applications
* @return error code
*/
GLDEF_C TInt E32Dll(TDllReason /*reason*/)
	{
	return KErrNone;
	}

#endif // EKA2

⌨️ 快捷键说明

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