Home | History | Annotate | Download | only in OMXCameraAdapter

Lines Matching refs:LUT

43     // 1. Find camera's scene mode LUT
513 int OMXCameraAdapter::getLUTvalue_HALtoOMX(const char * HalValue, LUTtype LUT)
515 int LUTsize = LUT.size;
518 if( 0 == strcmp(LUT.Table[i].userDefinition, HalValue) )
519 return LUT.Table[i].omxDefinition;
524 const char* OMXCameraAdapter::getLUTvalue_OMXtoHAL(int OMXValue, LUTtype LUT)
526 int LUTsize = LUT.size;
528 if( LUT.Table[i].omxDefinition == OMXValue )
529 return LUT.Table[i].userDefinition;
534 int OMXCameraAdapter::getMultipleLUTvalue_OMXtoHAL(int OMXValue, LUTtype LUT, char * supported)
538 int LUTsize = LUT.size;
540 if( LUT.Table[i].omxDefinition == OMXValue )
547 strncat(supported, LUT.Table[i].userDefinition, remaining_size);