omxil_generic/omxilcomplib/src/omxilcallbackmanagerifimpl.inl
changeset 0 0e4a32b9112d
equal deleted inserted replaced
-1:000000000000 0:0e4a32b9112d
       
     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 
       
    23 inline
       
    24 XOmxILCallbackManagerIfImpl::TTunnelRegistrationInfo::TTunnelRegistrationInfo(
       
    25 	OMX_U32 aLocalPortIndex,
       
    26 	OMX_DIRTYPE aLocalPortDirection,
       
    27 	OMX_HANDLETYPE aTunnelledComponentHandle,
       
    28 	OMX_U32 aTunnelledPortIndex)
       
    29 	:
       
    30 	iLocalPortIndex(aLocalPortIndex),
       
    31 	iLocalPortDirection(aLocalPortDirection),
       
    32 	iTunnelledComponentHandle(aTunnelledComponentHandle),
       
    33 	iTunnelledPortIndex(aTunnelledPortIndex)
       
    34 	{
       
    35 	}
       
    36 
       
    37 inline
       
    38 XOmxILCallbackManagerIfImpl::TBufferMarkPropagationInfo::TBufferMarkPropagationInfo(
       
    39 	OMX_U32 aPortIndex,
       
    40 	OMX_U32 aPropagationPortIndex)
       
    41 	:
       
    42 	iPortIndex(aPortIndex),
       
    43 	iPropagationPortIndex(aPropagationPortIndex)
       
    44 	{
       
    45 	}
       
    46 
       
    47 // This constructor should only be used for array look-ups
       
    48 inline
       
    49 XOmxILCallbackManagerIfImpl::TBufferMarkPropagationInfo::TBufferMarkPropagationInfo(
       
    50 	OMX_U32 aPortIndex)
       
    51 	:
       
    52 	iPortIndex(aPortIndex),
       
    53 	iPropagationPortIndex(0)
       
    54 	{
       
    55 	}
       
    56 
       
    57 inline
       
    58 XOmxILCallbackManagerIfImpl::TOutputPortBufferMarkInfo::TOutputPortBufferMarkInfo(
       
    59 	OMX_U32 aPortIndex,
       
    60 	OMX_HANDLETYPE apMarkTargetComponent,
       
    61 	OMX_PTR apMarkData)
       
    62 	:
       
    63 	iPortIndex(aPortIndex),
       
    64 	ipMarkTargetComponent(apMarkTargetComponent),
       
    65 	ipMarkData(apMarkData)
       
    66 	{
       
    67 	}
       
    68 
       
    69 // This constructor should only be used for array look-ups
       
    70 inline
       
    71 XOmxILCallbackManagerIfImpl::TOutputPortBufferMarkInfo::TOutputPortBufferMarkInfo(
       
    72 	OMX_U32 aPortIndex)
       
    73 	:
       
    74 	iPortIndex(aPortIndex),
       
    75 	ipMarkTargetComponent(0),
       
    76 	ipMarkData(0)
       
    77 	{
       
    78 	}