sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2010 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 |
#ifndef DEVVIDEOSURFACEHANDLECUSTOMINTERFACE_H
|
sl@0
|
19 |
#define DEVVIDEOSURFACEHANDLECUSTOMINTERFACE_H
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <graphics/surface.h>
|
sl@0
|
22 |
#include <mmf/common/mmfvideo.h>
|
sl@0
|
23 |
#include <graphics/surfacemanager.h>
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
DevVideo SurfaceHandle Custom Interface UID.
|
sl@0
|
27 |
|
sl@0
|
28 |
@publishedPartner
|
sl@0
|
29 |
@prototype
|
sl@0
|
30 |
*/
|
sl@0
|
31 |
const TUid KUidMMFVideoSurfaceHandleControl = { 0x10286486 };
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
Video play surface handle custom interface. This interface can be used by
|
sl@0
|
35 |
a H/W device which creates a surface to pass the surface handle to
|
sl@0
|
36 |
another H/W device. Alternatively, a H/W device may create resources for the
|
sl@0
|
37 |
surface, for example, chunks and pass details to another H/W device to
|
sl@0
|
38 |
create surface based on the chunk information.
|
sl@0
|
39 |
Typically implemented by the post processor and used by a decoder.
|
sl@0
|
40 |
|
sl@0
|
41 |
@publishedPartner
|
sl@0
|
42 |
@prototype
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
class MMmfVideoSurfaceHandleControl
|
sl@0
|
45 |
{
|
sl@0
|
46 |
public:
|
sl@0
|
47 |
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
@param aSurfaceHandle Surface handle for the new surface.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
virtual void MmvshcSetSurfaceHandle(const TSurfaceId& aSurfaceHandle) = 0;
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@param aRedrawBuffer Buffer for the redrawing of the last picture. The
|
sl@0
|
55 |
memory of this buffer is owned by the caller and ownerhship of this memory
|
sl@0
|
56 |
is not transerred as part of this call. Also, the memory may not be valid
|
sl@0
|
57 |
after the call completes.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
virtual void MmvshcRedrawBufferToSurface(TPtrC8& aRedrawBuffer) = 0;
|
sl@0
|
60 |
|
sl@0
|
61 |
/**
|
sl@0
|
62 |
This is used to get th esurface create dbased on an ixisting chunk. Typically,
|
sl@0
|
63 |
the chunk would be created by the caller of this method and surface would be
|
sl@0
|
64 |
created by the implementer.
|
sl@0
|
65 |
|
sl@0
|
66 |
@param aAttributes Info necessary to create surface based on existing chunk.
|
sl@0
|
67 |
@param aHandle Handle of the existing chunk
|
sl@0
|
68 |
@param aSurfaceId Surface Id created as on output of this method.
|
sl@0
|
69 |
|
sl@0
|
70 |
@return error code
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
virtual TInt MmvshcCreateSurface(const RSurfaceManager::TSurfaceCreationAttributes& aAttributes, TInt aHandle, TSurfaceId& aSurfaceId) = 0;
|
sl@0
|
73 |
|
sl@0
|
74 |
};
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
#endif // DEVVIDEOSURFACEHANDLECUSTOMINTERFACE_H
|
sl@0
|
78 |
|