equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
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". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 /** |
|
20 @file |
|
21 @ipublishedPartner |
|
22 */ |
|
23 |
|
24 #ifndef OMXILDROPPEDFRAMEEVENTEXTENSION_H_ |
|
25 #define OMXILDROPPEDFRAMEEVENTEXTENSION_H_ |
|
26 |
|
27 #include <openmax/il/khronos/v1_x/OMX_Types.h> |
|
28 |
|
29 /** |
|
30 * The string that can be passed to get the index for the dropped frame event extension |
|
31 */ |
|
32 const char sOmxNokiaIndexParamDroppedFrameEvent [] = "OMX.NOKIA.INDEX.PARAM.DROPPEDFRAMEEVENT"; |
|
33 |
|
34 /** |
|
35 * Custom OpenMAX IL structure for the dropped frame error extension. |
|
36 */ |
|
37 struct OMX_NOKIA_PARAM_DROPPEDFRAMEEVENT |
|
38 { |
|
39 OMX_U32 nSize; /** Size of this structure, in Bytes */ |
|
40 OMX_VERSIONTYPE nVersion; /** OMX specification version information */ |
|
41 OMX_U32 nPortIndex; /** Port that this structure applies to */ |
|
42 OMX_BOOL bEnabled; /** Flag to indicate whether to generate the event */ |
|
43 }; |
|
44 |
|
45 #endif /* OMXILDROPPEDFRAMEEVENTEXTENSION_H_ */ |