Lines Matching refs:inMakeupData
532 TSMakeupDataEx inMakeupData; in TsMakeupProcess_Snapshot() local
533 inMakeupData.frameWidth = dim.width; in TsMakeupProcess_Snapshot()
534 inMakeupData.frameHeight = dim.height; in TsMakeupProcess_Snapshot()
535 inMakeupData.yBuf = yBuf; in TsMakeupProcess_Snapshot()
536 inMakeupData.uvBuf = uvBuf; in TsMakeupProcess_Snapshot()
537 inMakeupData.yStride = offset.mp[0].stride; in TsMakeupProcess_Snapshot()
538 inMakeupData.uvStride = offset.mp[1].stride; in TsMakeupProcess_Snapshot()
544 int iret = ts_detectface_detectEx(fd_handle, &inMakeupData); in TsMakeupProcess_Snapshot()
595 TSMakeupDataEx inMakeupData, outMakeupData; in TsMakeupProcess() local
598 inMakeupData.frameWidth = dim.width; // NV21 Frame width > 0 in TsMakeupProcess()
599 inMakeupData.frameHeight = dim.height; // NV21 Frame height > 0 in TsMakeupProcess()
600 inMakeupData.yBuf = yBuf; // Y buffer pointer in TsMakeupProcess()
601 inMakeupData.uvBuf = uvBuf; // VU buffer pointer in TsMakeupProcess()
602 inMakeupData.yStride = offset.mp[0].stride; in TsMakeupProcess()
603 inMakeupData.uvStride = offset.mp[1].stride; in TsMakeupProcess()
612 ts_makeup_skin_beautyEx(&inMakeupData, &outMakeupData, &(faceRect),cleanLevel,whiteLevel); in TsMakeupProcess()