omxil/omxilcomponentcommon/src/common/omxilutil.h
changeset 0 40261b775718
child 16 eedf2dcd43c6
equal deleted inserted replaced
-1:000000000000 0:40261b775718
       
     1 // Copyright (c) 2008-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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 /**
       
    18  @file
       
    19  @internalComponent
       
    20 */
       
    21 
       
    22 #ifndef OMXILUTIL_H
       
    23 #define OMXILUTIL_H
       
    24 
       
    25 #include <e32def.h>
       
    26 
       
    27 #include <openmax/il/khronos/v1_x/OMX_Core.h>
       
    28 #include <openmax/il/khronos/v1_x/OMX_Types.h>
       
    29 
       
    30 
       
    31 class TOmxILUtil
       
    32 	{
       
    33 
       
    34 public:
       
    35 
       
    36 	IMPORT_C static OMX_ERRORTYPE CheckOmxStructSizeAndVersion(
       
    37 		OMX_PTR apHeader, OMX_U32 aSize);
       
    38 
       
    39 	IMPORT_C static void ClearBufferContents(
       
    40 		OMX_BUFFERHEADERTYPE* apBufferHeader);
       
    41 
       
    42 	};
       
    43 
       
    44 
       
    45 #endif // OMXILUTIL_H
       
    46 
       
    47