Update contrib.
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // VideoFrameMessage.h
18 #ifndef __MMF_VIDEO_FRAME_MESSAGE_H__
19 #define __MMF_VIDEO_FRAME_MESSAGE_H__
22 #include <mmf/common/mmfvideo.h>
27 Handles decoding the video frame message
28 Provides a callback to return the message to the client
30 class CMMFVideoFrameMessage : public CBase, public MMMFVideoFrameMessage
33 static CMMFVideoFrameMessage* NewL(TMMFMessage& aMessage);
34 ~CMMFVideoFrameMessage();
38 //From MMMFVideoFrameMessage
39 virtual CFbsBitmap& GetBitmap();
40 virtual void FrameReady(TInt aErr);
42 CMMFVideoFrameMessage(TMMFMessage& aMessage);
46 RFbsSession iFbsSession;