Home | History | Annotate | Download | only in OMXCameraAdapter

Lines Matching refs:LUT

46     // 1. Find camera's scene mode LUT
369 int OMXCameraAdapter::getLUTvalue_HALtoOMX(const char * HalValue, LUTtype LUT)
371 int LUTsize = LUT.size;
374 if( 0 == strcmp(LUT.Table[i].userDefinition, HalValue) )
375 return LUT.Table[i].omxDefinition;
380 const char* OMXCameraAdapter::getLUTvalue_OMXtoHAL(int OMXValue, LUTtype LUT)
382 int LUTsize = LUT.size;
384 if( LUT.Table[i].omxDefinition == OMXValue )
385 return LUT.Table[i].userDefinition;