Home
last modified time | relevance | path

Searched refs:jpeg_input (Results 1 – 2 of 2) sorted by relevance

/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedSensor.cpp849 auto jpeg_input = std::make_unique<JpegYUV420Input>(); in threadLoop() local
850 jpeg_input->width = (*b)->width; in threadLoop()
851 jpeg_input->height = (*b)->height; in threadLoop()
853 new uint8_t[(jpeg_input->width * jpeg_input->height * 3) / 2]; in threadLoop()
854 jpeg_input->yuv_planes = { in threadLoop()
856 .img_cb = img + jpeg_input->width * jpeg_input->height, in threadLoop()
857 .img_cr = img + (jpeg_input->width * jpeg_input->height * 5) / 4, in threadLoop()
858 .y_stride = jpeg_input->width, in threadLoop()
859 .cbcr_stride = jpeg_input->width / 2, in threadLoop()
861 jpeg_input->buffer_owner = true; in threadLoop()
[all …]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/test/
Dmm_jpeg_test.c153 static jpeg_test_input_t jpeg_input[] = { variable
731 memcpy(p_test_input, &jpeg_input[0], sizeof(*p_test_input)); in main()