Home | History | Annotate | Download | only in HAL

Lines Matching refs:sizes

98 const char QCameraParameters::KEY_QC_SUPPORTED_LIVESNAPSHOT_SIZES[] = "supported-live-snapshot-sizes";
637 * @sizes : array of dimensions
642 String8 QCameraParameters::createSizesString(const cam_dimension_t *sizes, int len)
648 snprintf(buffer, sizeof(buffer), "%dx%d", sizes[0].width, sizes[0].height);
652 snprintf(buffer, sizeof(buffer), ",%dx%d", sizes[i].width, sizes[i].height);
794 * DESCRIPTION: create string obj contains array of hfr sizes
1151 // first check if picture size is within the list of supported sizes
2853 // Set supported preview sizes
2859 ALOGD("%s: supported preview sizes: %s", __func__, previewSizeValues.string());
2864 ALOGE("%s: supported preview sizes cnt is 0 or exceeds max!!!", __func__);
2867 // Set supported video sizes
2873 ALOGD("%s: supported video sizes: %s", __func__, videoSizeValues.string());
2882 ALOGE("%s: supported video sizes
2885 // Set supported picture sizes
2891 ALOGD("%s: supported pic sizes: %s", __func__, pictureSizeValues.string());
2897 ALOGE("%s: supported picture sizes cnt is 0 or exceeds max!!!", __func__);
2900 // Set supported thumbnail sizes
2909 // Set supported livesnapshot sizes
2916 ALOGI("%s: supported live snapshot sizes: %s", __func__, liveSnpashotSizeValues.string());
3408 * DESCRIPTION: helper function to parse string containing sizes
3412 * @sizes : [output] reference to store parsed sizes
3416 void QCameraParameters::parseSizesList(const char *sizesStr, Vector<Size> &sizes)
3429 ALOGE("Picture sizes string \"%s\" contains invalid character.", sizesStr);
3432 sizes.push(Size(width, height));
3444 * DESCRIPTION: return supported HFR sizes
3447 * @sizes : [output] reference to a vector storing supported HFR sizes
3451 void QCameraParameters::getSupportedHfrSizes(Vector<Size> &sizes)
3454 parseSizesList(hfrSizesStr, sizes);