Searched refs:jpeg_input (Results 1 – 2 of 2) sorted by relevance
849 auto jpeg_input = std::make_unique<JpegYUV420Input>(); in threadLoop() local850 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 …]
153 static jpeg_test_input_t jpeg_input[] = { variable731 memcpy(p_test_input, &jpeg_input[0], sizeof(*p_test_input)); in main()