Home | History | Annotate | Download | only in include

Lines Matching refs:frame_size

238 inline unsigned int FRAME_SIZE(int HAL_PIXEL_FORMAT, int w, int h)
240 unsigned int frame_size = 0;
265 frame_size = GET_16BPP_FRAME_SIZE(w, h);
270 frame_size = GET_24BPP_FRAME_SIZE(w, h);
283 frame_size = GET_32BPP_FRAME_SIZE(w, h);
296 // frame_size = width * height * 3 / 2;
298 // frame_size = size + ((size / 4) * 2);
299 frame_size = size + ((size >> 2) << 1);
303 frame_size = ALIGN_TO_8KB(ALIGN_TO_128B(w) * ALIGN_TO_32B(h))
319 frame_size = GET_16BPP_FRAME_SIZE(w, h);
328 return frame_size;