Lines Matching refs:b
326 const StreamBuffer &b = (*mNextCapturedBuffers)[i]; in threadLoop() local
329 i, b.streamId, b.width, b.height, b.format, b.stride, in threadLoop()
330 b.buffer, b.img); in threadLoop()
331 switch(b.format) { in threadLoop()
333 captureRaw(b.img, gain, b.stride); in threadLoop()
336 captureRGB(b.img, gain, b.stride); in threadLoop()
339 captureRGBA(b.img, gain, b.stride); in threadLoop()
342 if (b.dataSpace != HAL_DATASPACE_DEPTH) { in threadLoop()
348 bAux.width = b.width; in threadLoop()
349 bAux.height = b.height; in threadLoop()
351 bAux.stride = b.width; in threadLoop()
354 bAux.img = new uint8_t[b.width * b.height * 3]; in threadLoop()
357 captureDepthCloud(b.img); in threadLoop()
361 captureNV21(b.img, gain, b.stride); in threadLoop()
365 ALOGE("%s: Format %x is TODO", __FUNCTION__, b.format); in threadLoop()
368 captureDepth(b.img, gain, b.stride); in threadLoop()
372 b.format); in threadLoop()