Home
last modified time | relevance | path

Searched refs:bAux (Results 1 – 3 of 3) sorted by relevance

/device/generic/goldfish/camera/qemu-pipeline3/
DQemuSensor.cpp309 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()
[all …]
/device/google/cuttlefish/guest/hals/camera/fake-pipeline2/
DSensor.cpp327 StreamBuffer bAux; in threadLoop() local
328 bAux.streamId = 0; in threadLoop()
329 bAux.width = b.width; in threadLoop()
330 bAux.height = b.height; in threadLoop()
331 bAux.format = HAL_PIXEL_FORMAT_RGB_888; in threadLoop()
332 bAux.stride = b.width; in threadLoop()
333 bAux.buffer = NULL; in threadLoop()
335 bAux.img = new uint8_t[b.width * b.height * 3]; in threadLoop()
336 mNextCapturedBuffers->push_back(bAux); in threadLoop()
/device/generic/goldfish/camera/fake-pipeline2/
DSensor.cpp341 StreamBuffer bAux; in threadLoop() local
342 bAux.streamId = 0; in threadLoop()
343 bAux.width = b.width; in threadLoop()
344 bAux.height = b.height; in threadLoop()
345 bAux.format = HAL_PIXEL_FORMAT_YCbCr_420_888; in threadLoop()
346 bAux.stride = b.width; in threadLoop()
347 bAux.buffer = NULL; in threadLoop()
349 bAux.img = new uint8_t[b.width * b.height * 3]; in threadLoop()
350 mNextCapturedBuffers->push_back(bAux); in threadLoop()