Home
last modified time | relevance | path

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

/hardware/google/camera/devices/EmulatedCamera/hwl/
DJpegCompressor.cpp324 size_t padded_height = mcu_v * ((cinfo->image_height + mcu_v - 1) / mcu_v); in CompressYUV420Frame() local
326 std::vector<JSAMPROW> y_lines(padded_height); in CompressYUV420Frame()
327 std::vector<JSAMPROW> cb_lines(padded_height / c_vsub_sampling); in CompressYUV420Frame()
328 std::vector<JSAMPROW> cr_lines(padded_height / c_vsub_sampling); in CompressYUV420Frame()
334 for (uint32_t i = 0; i < padded_height; i++) { in CompressYUV420Frame()
339 if (i < padded_height / c_vsub_sampling) { in CompressYUV420Frame()