Lines Matching refs:sizes
544 /* Enumerates frame sizes for the given pixel format.
547 * fmt - Pixel format to enum frame sizes for.
548 * sizes - Upon success contains an array of supported frame sizes. The size of
552 * On success returns number of entries in the 'sizes' array. On failure returns
558 CameraFrameDim** sizes)
566 /* Calculate number of supported sizes for the given format. */
577 /* Sizes are represented as min/max width and height with a step for
592 * Fortunately, we don't need to be fancy, so three sizes would be
603 *sizes = (CameraFrameDim*)malloc(sizes_num * sizeof(CameraFrameDim));
604 if (*sizes == NULL) {
608 arr = *sizes;