Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/staging/media/omap4iss/
Diss_video.c122 unsigned int min_bpl; in iss_video_mbus_to_pix() local
137 min_bpl = pix->width * ALIGN(formats[i].bpp, 8) / 8; in iss_video_mbus_to_pix()
144 bpl = clamp(bpl, min_bpl, video->bpl_max); in iss_video_mbus_to_pix()
146 bpl = min_bpl; in iss_video_mbus_to_pix()
148 if (!video->bpl_zero_padding || bpl != min_bpl) in iss_video_mbus_to_pix()
161 return bpl - min_bpl; in iss_video_mbus_to_pix()
/linux-4.4.14/drivers/media/platform/omap3isp/
Dispvideo.c146 unsigned int min_bpl; in isp_video_mbus_to_pix() local
161 min_bpl = pix->width * formats[i].bpp; in isp_video_mbus_to_pix()
168 bpl = clamp(bpl, min_bpl, video->bpl_max); in isp_video_mbus_to_pix()
170 bpl = min_bpl; in isp_video_mbus_to_pix()
172 if (!video->bpl_zero_padding || bpl != min_bpl) in isp_video_mbus_to_pix()
181 return bpl - min_bpl; in isp_video_mbus_to_pix()
/linux-4.4.14/drivers/media/platform/xilinx/
Dxilinx-dma.c548 unsigned int min_bpl; in __xvip_dma_try_format() local
581 min_bpl = pix->width * info->bpp; in __xvip_dma_try_format()
585 pix->bytesperline = clamp(bpl, min_bpl, max_bpl); in __xvip_dma_try_format()