diff -r 000000000000 -r 0e4a32b9112d tsrc/xmltestharness/xmlclient/src/videobuffersinkhandler.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tsrc/xmltestharness/xmlclient/src/videobuffersinkhandler.h Wed Aug 25 12:40:50 2010 +0300 @@ -0,0 +1,61 @@ +/* +* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + + +#ifndef VIDEOBUFFERSINKHANDLER_H +#define VIDEOBUFFERSINKHANDLER_H + +#include +#include +#include +#include +#include +#include + +NONSHARABLE_CLASS(CVideoBufferSinkHandler) : public CActive + { +public: + ~CVideoBufferSinkHandler(); + static CVideoBufferSinkHandler* NewL(TDesC& aFilename, OMX_SYMBIAN_PARAM_3PLANE_CHUNK_DATA& aChunkDataMsg, const OMX_SYMBIAN_PARAM_BUFFER_SIZE& aBufferSize, OMX_PARAM_PORTDEFINITIONTYPE& portDef); + + +public: + void Start(); + +private: + CVideoBufferSinkHandler(TDesC& aFilename); + void ConstructL(OMX_SYMBIAN_PARAM_3PLANE_CHUNK_DATA& aChunkDataMsg, const OMX_SYMBIAN_PARAM_BUFFER_SIZE& aBufferSize, OMX_PARAM_PORTDEFINITIONTYPE& portDef); + + // From CActive + void RunL(); + void DoCancel(); + +private: + RMsgQueue iReceiveBuffer; + RMsgQueue iSendBuffer; + TMMSharedChunkBufConfig iBufConfig; + TPtr8 iWriteDes; + + + RChunk iBufferChunk; + TBuf iFileName; + RFile iFileSink; + RFs iFs; + }; + +#endif // VIDEOBUFFERSINKHANDLER_H