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.cpp1069 auto jpeg_input = std::make_unique<JpegYUV420Input>(); in threadLoop() local
1070 jpeg_input->width = (*b)->width; in threadLoop()
1071 jpeg_input->height = (*b)->height; in threadLoop()
1072 jpeg_input->color_space = (*b)->color_space; in threadLoop()
1074 new uint8_t[(jpeg_input->width * jpeg_input->height * 3) / 2]; in threadLoop()
1075 jpeg_input->yuv_planes = { in threadLoop()
1077 .img_cb = img + jpeg_input->width * jpeg_input->height, in threadLoop()
1078 .img_cr = img + (jpeg_input->width * jpeg_input->height * 5) / 4, in threadLoop()
1079 .y_stride = jpeg_input->width, in threadLoop()
1080 .cbcr_stride = jpeg_input->width / 2, 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()