Lines Matching refs:img

325                     b.buffer, b.img);  in threadLoop()
328 captureRaw(b.img, gain, b.stride); in threadLoop()
331 captureRGB(b.img, gain, b.width, b.height); in threadLoop()
334 captureRGBA(b.img, gain, b.width, b.height); in threadLoop()
349 bAux.img = new uint8_t[b.width * b.height * 3]; in threadLoop()
352 captureDepthCloud(b.img); in threadLoop()
356 captureYU12(b.img, gain, b.width, b.height); in threadLoop()
363 captureDepth(b.img, gain, b.width, b.height); in threadLoop()
392 void Sensor::captureRaw(uint8_t *img, uint32_t gain, uint32_t stride) { in captureRaw() argument
403 uint16_t *px = (uint16_t*)img + y * stride; in captureRaw()
434 void Sensor::captureRGBA(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height) { in captureRGBA() argument
444 uint8_t *px = img + outY * width * 4; in captureRGBA()
473 void Sensor::captureRGB(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height) { in captureRGB() argument
483 uint8_t *px = img + outY * width * 3; in captureRGB()
509 void Sensor::captureYU12(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height) { in captureYU12() argument
537 uint8_t *pxY = img + outY * width; in captureYU12()
538 uint8_t *pxU = img + height * width + (outY / 2) * (width / 2); in captureYU12()
568 void Sensor::captureDepth(uint8_t *img, uint32_t gain, uint32_t width, uint32_t height) { in captureDepth() argument
578 uint16_t *px = ((uint16_t*)img) + outY * width; in captureDepth()
600 void Sensor::captureDepthCloud(uint8_t *img) { in captureDepthCloud() argument
602 android_depth_points *cloud = reinterpret_cast<android_depth_points*>(img); in captureDepthCloud()