os/mm/mdfdevvideoextensions/nga_mdf_postprocessor/inc/NGAPostProcSurfaceHandler.h
Update contrib.
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #ifndef __NGAPOSTPROCSURFACEHANDLER_H__
20 #define __NGAPOSTPROCSURFACEHANDLER_H__
23 #include <graphics/surface.h>
25 class RSurfaceManager;
27 class CNGAPostProcSurfaceHandler
31 // === Constructors and destructor ===
33 * Two-phased constructor.
34 * @return pointer to an instance of CMMFVideoPostProcHwDevice
36 static CNGAPostProcSurfaceHandler* NewL();
41 ~CNGAPostProcSurfaceHandler();
46 Sets the device input format to an uncompressed video format.
48 @param "aFormat" "The input format to use."
49 @leave "The method will leave if an error occurs. Typical error codes used:
50 * KErrNotSupported - The input format is not supported."
51 @pre "This method can only be called before the hwdevice has been initialized with Initialize()."
53 TInt CreateSurface(const RSurfaceManager::TSurfaceCreationAttributesBuf & aAttributes, TSurfaceId& aSurfaceId);
56 Sets the decoder device that will write data to this post-processor. Decoded pictures will be
57 written with WritePictureL() or through a custom interface. After pictures have been processed,
58 they must be returned to the decoder using ReturnPicture().
60 @param "aDevice" "The decoder source plug-in to use."
61 @pre "This method can only be called before the hwdevice has been initialized with Initialize()."
63 TInt OpenSurface(const TSurfaceId& aSurfaceId);
66 Writes an uncompressed video picture to the post-processor. The picture must be returned to the
67 client or source plug-in after it has been used.
69 @param "aPicture" "The picture to write."
70 @leave "This method may leave with one of the system-wide error codes."
71 @pre "This method can only be called after the hwdevice has been initialized with Initialize()."
73 TInt MapSurface(const TSurfaceId& aSurfaceId, RChunk& aHandle);
76 Retrieves post-processing information about this hardware device.
77 The device creates a CPostProcessorInfo structure, fills it with correct data, pushes it
78 to the cleanup stack and returns it. The client will delete the object when it is no
81 @return "Post-processor information as a CPostProcessorInfo object.
82 The object is pushed to the cleanup stack, and must be deallocated by the caller."
83 @leave "This method may leave with one of the system-wide error codes.
85 TInt SurfaceInfo(const TSurfaceId& aSurfaceId, RSurfaceManager::TInfoBuf& aInfo);
88 Retrieves the list of the output formats that the device supports. The list is ordered in
89 plug-in preference order, with the preferred formats at the beginning of the list. The list
90 can depend on the device source format, and therefore SetSourceFormatL() must be called before
93 @param "aFormats" "An array for the result format list. The array must be created and destroyed by the caller."
94 @leave "This method may leave with one of the system-wide error codes.
95 @pre "This method may only be called before the hwdevice has been initialized using Initialize()."
97 TInt DestroySurface(const TSurfaceId& aSurfaceId);
100 Get the offset of the specified buffer from the base address of the underlying
103 To obtain the address of the buffer, the offset returned must be added onto the
104 base address of the RChunk returned in a call to MapSurface(). Note that
105 buffer offsets are immutable during the lifetime of the surface.
106 @param aParam The input parameters including the surface ID and buffer index.
107 @pre The surface is open in the calling process.
108 @return KErrNone if successful, KErrArgument if aSurfaceId or aBuffer are invalid,
109 KErrAccessDenied if the surface is not open in the current process, KErrNotSupported if
110 the surface is not mappable, otherwise a system wide error code.
112 TInt GetBufferOffset(const TSurfaceId& aSurfaceId, TInt aBuffer, TInt& aOffset);
115 Adds a Surface hint to the video surface.
118 TInt AddSurfaceHint(const TSurfaceId& aSurfaceId,const RSurfaceManager::THintPair& aHint);
121 Updates an existing Surface hint.
124 TInt SetSurfaceHint(const TSurfaceId& aSurfaceId,const RSurfaceManager::THintPair& aHint);
127 CNGAPostProcSurfaceHandler();
129 * Symbian 2nd phase constructor .
135 RSurfaceManager* iSurfaceManager;
138 #endif //__NGAPOSTPROCSURFACEHANDLER_H__