Lines Matching refs:bAux
309 StreamBuffer bAux; in threadLoop() local
310 bAux.streamId = 0; in threadLoop()
311 bAux.width = b.width; in threadLoop()
312 bAux.height = b.height; in threadLoop()
313 bAux.format = HAL_PIXEL_FORMAT_YCbCr_420_888; in threadLoop()
314 bAux.stride = b.width; in threadLoop()
326 bAux.width, bAux.height, bAux.format, in threadLoop()
337 Rect(0, 0, bAux.width, bAux.height), in threadLoop()
340 bAux.buffer = new buffer_handle_t; in threadLoop()
341 *bAux.buffer = handle; in threadLoop()
342 bAux.img = (uint8_t*)ycbcr.y; in threadLoop()
344 bAux.buffer = nullptr; in threadLoop()
346 bAux.img = new uint8_t[b.width * b.height * 3]; in threadLoop()
348 mNextCapturedBuffers->push_back(bAux); in threadLoop()