Home | History | Annotate | Download | only in OMXCameraAdapter

Lines Matching refs:LUT

48     // 1. Find camera's scene mode LUT
378 int OMXCameraAdapter::getLUTvalue_HALtoOMX(const char * HalValue, LUTtype LUT)
380 int LUTsize = LUT.size;
383 if( 0 == strcmp(LUT.Table[i].userDefinition, HalValue) )
384 return LUT.Table[i].omxDefinition;
389 const char* OMXCameraAdapter::getLUTvalue_OMXtoHAL(int OMXValue, LUTtype LUT)
391 int LUTsize = LUT.size;
393 if( LUT.Table[i].omxDefinition == OMXValue )
394 return LUT.Table[i].userDefinition;