Searched defs:weight (Results 1 - 18 of 18) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_ssim.c97 int lumamask, double *weight) {
115 *weight = 1;
96 vp9_calc_ssim(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest, int lumamask, double *weight) argument
H A Dvp9_mcomp.c75 const int *mvjcost, int *mvcost[2], int weight) {
78 return ROUND_POWER_OF_TWO(mv_cost(&diff, mvjcost, mvcost) * weight, 7);
74 vp9_mv_bit_cost(const MV *mv, const MV *ref, const int *mvjcost, int *mvcost[2], int weight) argument
H A Dvp9_onyx_if.c69 double *weight);
3268 double frame_ssim2 = 0, weight = 0; local
3284 frame_ssim2 = vp9_calc_ssim(orig, recon, 1, &weight);
3286 cpi->summed_quality += frame_ssim2 * weight;
3287 cpi->summed_weights += weight;
3289 frame_ssim2 = vp9_calc_ssim(orig, &cm->post_proc_buffer, 1, &weight);
3291 cpi->summedp_quality += frame_ssim2 * weight;
3292 cpi->summedp_weights += weight;
/hardware/ti/omap4-aah/camera/
H A DCameraHalUtilClasses.cpp152 ssize_t weight)
156 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) {
160 if ( ( CameraArea::WEIGHT_MIN > weight ) || ( CameraArea::WEIGHT_MAX < weight ) ) {
161 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
210 ssize_t top, left, bottom, right, weight; local
282 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
288 weight = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
298 ret = checkArea(top, left, bottom, right, weight);
148 checkArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, ssize_t weight) argument
[all...]
/hardware/ti/omap4xxx/camera/
H A DCameraHalUtilClasses.cpp154 ssize_t weight)
158 if ( ( 0 == top ) && ( 0 == left ) && ( 0 == bottom ) && ( 0 == right ) && ( 0 == weight ) ) {
162 if ( ( CameraArea::WEIGHT_MIN > weight ) || ( CameraArea::WEIGHT_MAX < weight ) ) {
163 CAMHAL_LOGEB("Camera area weight is invalid %d", weight);
212 ssize_t top, left, bottom, right, weight; local
284 CAMHAL_LOGEA("Parsing of the weight area coordinate failed!");
290 weight = static_cast<ssize_t>(strtol(pEnd+1, &pEnd, 10));
300 ret = checkArea(top, left, bottom, right, weight);
150 checkArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, ssize_t weight) argument
[all...]
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp587 size_t top, left, width, height, weight; local
696 size_t top, left, width, height, weight; local
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMX3A.cpp781 size_t top, left, width, height, weight; local
890 size_t top, left, width, height, weight; local
/hardware/intel/img/psb_video/src/
H A Dtng_hostheader.h63 IMG_INT32 weight[3][2]; member in struct:__anon1499
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dfirstpass.c321 /* Loop throught the Y plane raw examining levels and creating a weight
797 double weight = 0.0; local
804 weight = simple_weight(cpi->Source);
807 if (weight < 0.1)
808 weight = 0.1;
810 fps.ssim_weighted_pred_err = fps.coded_error * weight;
H A Donyx_if.c81 double *weight
5304 double weight = 0; local
5332 &cm->post_proc_buffer, 1, &weight);
5334 cpi->summed_quality += frame_ssim2 * weight;
5335 cpi->summed_weights += weight;
5351 cpi->sum_ssim[i] += frame_ssim2 * weight;
5352 cpi->sum_weights[i] += weight;
/hardware/ti/omap4-aah/camera/inc/
H A DCameraHal.h193 size_t weight) : mTop(top),
197 mWeight(weight) {}
232 ssize_t weight);
189 CameraArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, size_t weight) argument
/hardware/ti/omap4xxx/camera/inc/
H A DCameraHal.h137 size_t weight) : mTop(top),
141 mWeight(weight) {}
176 ssize_t weight);
133 CameraArea(ssize_t top, ssize_t left, ssize_t bottom, ssize_t right, size_t weight) argument
/hardware/qcom/camera/QCamera2/HAL3/
H A DQCamera3HWI.cpp5793 convertToRegions(hAeRegions->rect, aeRegions, hAeRegions->weight);
5841 convertToRegions(hAfRegions->rect, afRegions, hAfRegions->weight);
6486 * @weight : if we are converting from cam_area_t, weight is valid
6487 * else weight = -1
6491 int32_t *region, int weight)
6497 if (weight > -1) {
6498 region[4] = weight;
6510 * @weight : if we are converting from cam_area_t, weight i
6490 convertToRegions(cam_rect_t rect, int32_t *region, int weight) argument
[all...]
/hardware/qcom/camera/
H A DQCamera_Intf.h795 int weight[MAX_ROI]; member in struct:__anon2758
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
H A DQCamera3HWI.cpp6487 convertToRegions(hAeRegions->rect, aeRegions, hAeRegions->weight);
6523 convertToRegions(hAfRegions->rect, afRegions, hAfRegions->weight);
7257 * @weight : if we are converting from cam_area_t, weight is valid
7258 * else weight = -1
7262 int32_t *region, int weight)
7268 if (weight > -1) {
7269 region[4] = weight;
7281 * @weight : if we are converting from cam_area_t, weight i
7261 convertToRegions(cam_rect_t rect, int32_t *region, int weight) argument
[all...]
/hardware/qcom/camera/msm8998/
H A DQCamera_Intf.h795 int weight[MAX_ROI]; member in struct:__anon3462
/hardware/qcom/camera/QCamera2/stack/common/
H A Dcam_types.h880 int32_t weight; /* weight of the area, valid for focusing/metering areas */ member in struct:__anon2345
1036 int32_t weight[MAX_ROI]; member in struct:__anon2370
/hardware/qcom/camera/msm8998/QCamera2/stack/common/
H A Dcam_types.h928 int32_t weight; /* weight of the area, valid for focusing/metering areas */ member in struct:__anon3006
1086 int32_t weight[MAX_ROI]; member in struct:__anon3031

Completed in 730 milliseconds