omxil/omxilcomponentcommon/src/common/omxilcallbackmanager.cpp
branchOpenMAX-IL_SHAI
changeset 16 eedf2dcd43c6
parent 0 40261b775718
equal deleted inserted replaced
15:c1e808730d6c 16:eedf2dcd43c6
    19  @internalComponent
    19  @internalComponent
    20 */
    20 */
    21 
    21 
    22 #include "log.h"
    22 #include "log.h"
    23 #include "omxilcallbackmanager.h"
    23 #include "omxilcallbackmanager.h"
    24 #include "omxilportmanager.h"
       
    25 #include "omxilfsm.h"
    24 #include "omxilfsm.h"
       
    25 
    26 #include "omxilutil.h"
    26 #include "omxilutil.h"
       
    27 #include "omxilportmanagerif.h"
    27 
    28 
    28 const TInt COmxILCallbackManager::KMaxMsgQueueEntries;
    29 const TInt COmxILCallbackManager::KMaxMsgQueueEntries;
    29 
    30 
    30 
    31 
    31 EXPORT_C COmxILCallbackManager*
    32 EXPORT_C COmxILCallbackManager*
   123 
   124 
   124 	}
   125 	}
   125 
   126 
   126 
   127 
   127 EXPORT_C void
   128 EXPORT_C void
   128 COmxILCallbackManager::SetPortManager(COmxILPortManager& apPortManager)
   129 COmxILCallbackManager::SetPortManager(MOmxILPortManagerIf& apPortManager)
   129 	{
   130 	{
   130 	DoSetPortManager(apPortManager);
   131 	DoSetPortManager(apPortManager);
   131 	}
   132 	}
   132 
   133 
   133 EXPORT_C void
   134 EXPORT_C void
   298 							 aOmxCommand,
   299 							 aOmxCommand,
   299 							 aOmxPortIndex,
   300 							 aOmxPortIndex,
   300 							 0);
   301 							 0);
   301 
   302 
   302 	}
   303 	}
   303 
       
   304 
   304 
   305 EXPORT_C OMX_ERRORTYPE
   305 EXPORT_C OMX_ERRORTYPE
   306 COmxILCallbackManager::ErrorEventNotification(OMX_ERRORTYPE aOmxError)
   306 COmxILCallbackManager::ErrorEventNotification(OMX_ERRORTYPE aOmxError)
   307 	{
   307 	{
   308     DEBUG_PRINTF2(_L8("COmxILCallbackManager::ErrorEventNotification : aOmxError[%X] "), aOmxError);
   308     DEBUG_PRINTF2(_L8("COmxILCallbackManager::ErrorEventNotification : aOmxError[%X] "), aOmxError);
  1042 		{
  1042 		{
  1043 		aCbMgr.HandleInsufficientResources();
  1043 		aCbMgr.HandleInsufficientResources();
  1044 		}
  1044 		}
  1045 
  1045 
  1046 	}
  1046 	}
       
  1047