sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __NGAPOSTPROCSURFACEHANDLER_H__
|
sl@0
|
20 |
#define __NGAPOSTPROCSURFACEHANDLER_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32std.h>
|
sl@0
|
23 |
#include <graphics/surface.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
class RSurfaceManager;
|
sl@0
|
26 |
|
sl@0
|
27 |
class CNGAPostProcSurfaceHandler: public CBase
|
sl@0
|
28 |
{
|
sl@0
|
29 |
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
// === Constructors and destructor ===
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
* Two-phased constructor.
|
sl@0
|
34 |
* @return pointer to an instance of CMMFVideoPostProcHwDevice
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
static CNGAPostProcSurfaceHandler* NewL();
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
* Destructor.
|
sl@0
|
40 |
*/
|
sl@0
|
41 |
~CNGAPostProcSurfaceHandler();
|
sl@0
|
42 |
|
sl@0
|
43 |
public:
|
sl@0
|
44 |
|
sl@0
|
45 |
/**
|
sl@0
|
46 |
Sets the device input format to an uncompressed video format.
|
sl@0
|
47 |
|
sl@0
|
48 |
@param "aFormat" "The input format to use."
|
sl@0
|
49 |
@leave "The method will leave if an error occurs. Typical error codes used:
|
sl@0
|
50 |
* KErrNotSupported - The input format is not supported."
|
sl@0
|
51 |
@pre "This method can only be called before the hwdevice has been initialized with Initialize()."
|
sl@0
|
52 |
*/
|
sl@0
|
53 |
TInt CreateSurface(const RSurfaceManager::TSurfaceCreationAttributes & aAttributes, TSurfaceId& aSurfaceId, const RChunk& aChunk);
|
sl@0
|
54 |
TInt CreateSurface(const RSurfaceManager::TSurfaceCreationAttributesBuf & aAttributes, TSurfaceId& aSurfaceId);
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
Sets the decoder device that will write data to this post-processor. Decoded pictures will be
|
sl@0
|
58 |
written with WritePictureL() or through a custom interface. After pictures have been processed,
|
sl@0
|
59 |
they must be returned to the decoder using ReturnPicture().
|
sl@0
|
60 |
|
sl@0
|
61 |
@param "aDevice" "The decoder source plug-in to use."
|
sl@0
|
62 |
@pre "This method can only be called before the hwdevice has been initialized with Initialize()."
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
TInt OpenSurface(const TSurfaceId& aSurfaceId);
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
Writes an uncompressed video picture to the post-processor. The picture must be returned to the
|
sl@0
|
68 |
client or source plug-in after it has been used.
|
sl@0
|
69 |
|
sl@0
|
70 |
@param "aPicture" "The picture to write."
|
sl@0
|
71 |
@leave "This method may leave with one of the system-wide error codes."
|
sl@0
|
72 |
@pre "This method can only be called after the hwdevice has been initialized with Initialize()."
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
TInt MapSurface(const TSurfaceId& aSurfaceId, RChunk& aHandle);
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
Retrieves post-processing information about this hardware device.
|
sl@0
|
78 |
The device creates a CPostProcessorInfo structure, fills it with correct data, pushes it
|
sl@0
|
79 |
to the cleanup stack and returns it. The client will delete the object when it is no
|
sl@0
|
80 |
longer needed.
|
sl@0
|
81 |
|
sl@0
|
82 |
@return "Post-processor information as a CPostProcessorInfo object.
|
sl@0
|
83 |
The object is pushed to the cleanup stack, and must be deallocated by the caller."
|
sl@0
|
84 |
@leave "This method may leave with one of the system-wide error codes.
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
TInt SurfaceInfo(const TSurfaceId& aSurfaceId, RSurfaceManager::TInfoBuf& aInfo);
|
sl@0
|
87 |
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
Retrieves the list of the output formats that the device supports. The list is ordered in
|
sl@0
|
90 |
plug-in preference order, with the preferred formats at the beginning of the list. The list
|
sl@0
|
91 |
can depend on the device source format, and therefore SetSourceFormatL() must be called before
|
sl@0
|
92 |
calling this method.
|
sl@0
|
93 |
|
sl@0
|
94 |
@param "aFormats" "An array for the result format list. The array must be created and destroyed by the caller."
|
sl@0
|
95 |
@leave "This method may leave with one of the system-wide error codes.
|
sl@0
|
96 |
@pre "This method may only be called before the hwdevice has been initialized using Initialize()."
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
TInt DestroySurface(const TSurfaceId& aSurfaceId);
|
sl@0
|
99 |
|
sl@0
|
100 |
/**
|
sl@0
|
101 |
Get the offset of the specified buffer from the base address of the underlying
|
sl@0
|
102 |
chunk.
|
sl@0
|
103 |
|
sl@0
|
104 |
To obtain the address of the buffer, the offset returned must be added onto the
|
sl@0
|
105 |
base address of the RChunk returned in a call to MapSurface(). Note that
|
sl@0
|
106 |
buffer offsets are immutable during the lifetime of the surface.
|
sl@0
|
107 |
@param aParam The input parameters including the surface ID and buffer index.
|
sl@0
|
108 |
@pre The surface is open in the calling process.
|
sl@0
|
109 |
@return KErrNone if successful, KErrArgument if aSurfaceId or aBuffer are invalid,
|
sl@0
|
110 |
KErrAccessDenied if the surface is not open in the current process, KErrNotSupported if
|
sl@0
|
111 |
the surface is not mappable, otherwise a system wide error code.
|
sl@0
|
112 |
*/
|
sl@0
|
113 |
TInt GetBufferOffset(const TSurfaceId& aSurfaceId, TInt aBuffer, TInt& aOffset);
|
sl@0
|
114 |
|
sl@0
|
115 |
/**
|
sl@0
|
116 |
Adds a Surface hint to the video surface.
|
sl@0
|
117 |
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
TInt AddSurfaceHint(const TSurfaceId& aSurfaceId,const RSurfaceManager::THintPair& aHint);
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
Updates an existing Surface hint.
|
sl@0
|
123 |
|
sl@0
|
124 |
*/
|
sl@0
|
125 |
TInt SetSurfaceHint(const TSurfaceId& aSurfaceId,const RSurfaceManager::THintPair& aHint);
|
sl@0
|
126 |
|
sl@0
|
127 |
protected:
|
sl@0
|
128 |
CNGAPostProcSurfaceHandler();
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
* Symbian 2nd phase constructor .
|
sl@0
|
131 |
*/
|
sl@0
|
132 |
void ConstructL();
|
sl@0
|
133 |
|
sl@0
|
134 |
private:
|
sl@0
|
135 |
|
sl@0
|
136 |
RSurfaceManager* iSurfaceManager;
|
sl@0
|
137 |
|
sl@0
|
138 |
RSurfaceManager::TSurfaceCreationAttributesBuf iSurfaceAttributesBuf;
|
sl@0
|
139 |
// A surface attribute.
|
sl@0
|
140 |
RSurfaceManager::TSurfaceCreationAttributes& iSurfaceAttributes;
|
sl@0
|
141 |
};
|
sl@0
|
142 |
|
sl@0
|
143 |
#endif //__NGAPOSTPROCSURFACEHANDLER_H__ |