Searched refs:dst_h (Results 1 - 25 of 27) sorted by relevance

12

/hardware/qcom/display/msm8974/liboverlay/
H A DoverlayUtils.cpp221 const int& dst_w, const int& dst_h) {
231 if (dst_w && dst_h)
233 float fDscale = sqrtf((float)(src_w * src_h) / (float)(dst_w * dst_h)) +
261 const int& dst_w, const int& dst_h, float& horDscale,
264 verDscale = ceilf((float)src_h / (float)dst_h);
220 getDownscaleFactor(const int& src_w, const int& src_h, const int& dst_w, const int& dst_h) argument
260 getDecimationFactor(const int& src_w, const int& src_h, const int& dst_w, const int& dst_h, float& horDscale, float& verDscale) argument
H A DoverlayUtils.h406 const int& dst_w, const int& dst_h);
408 const int& dst_w, const int& dst_h, float& horDscale,
/hardware/qcom/display/msm8960/liboverlay/
H A DoverlayUtils.cpp184 const int& dst_w, const int& dst_h) {
194 if (dst_w && dst_h)
196 float fDscale = sqrtf((float)(src_w * src_h) / (float)(dst_w * dst_h)) +
183 getDownscaleFactor(const int& src_w, const int& src_h, const int& dst_w, const int& dst_h) argument
H A DoverlayUtils.h412 const int& dst_w, const int& dst_h);
/hardware/qcom/display/msm8x26/liboverlay/
H A DoverlayUtils.cpp184 const int& dst_w, const int& dst_h) {
194 if (dst_w && dst_h)
196 float fDscale = sqrtf((float)(src_w * src_h) / (float)(dst_w * dst_h)) +
183 getDownscaleFactor(const int& src_w, const int& src_h, const int& dst_w, const int& dst_h) argument
H A DoverlayUtils.h412 const int& dst_w, const int& dst_h);
/hardware/qcom/msm8x74/kernel-headers/media/
H A Dmsmb_pproc.h149 uint32_t dst_h; member in struct:msm_vpe_frame_strip_info
H A Dmsm_camera.h261 uint32_t dst_h; member in struct:msm_pp_crop
/hardware/qcom/msm8x74/original-kernel-headers/media/
H A Dmsmb_pproc.h131 uint32_t dst_h; member in struct:msm_vpe_frame_strip_info
/hardware/samsung_slsi/exynos5/include/
H A Dfimg2d.h201 int dst_w, dst_h; member in struct:fimg2d_scale
H A DExynosCamera.h783 unsigned int dst_w, unsigned int dst_h,
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_utils.cpp305 int dst_w, dst_h, src_w, src_h; local
312 dst_h = displayFrame.bottom - displayFrame.top;
316 if(((src_w != dst_w) || (src_h != dst_h)))
520 int dst_h = abs(dst.bottom - dst.top); local
543 topCutRatio = (double)(sci_t - dst_t) / (double)dst_h;
548 bottomCutRatio = (double)(dst_b - sci_b) / (double)dst_h;
1181 int dst_h = dst.bottom - dst.top; local
1189 ovutils::getDecimationFactor(src_w, src_h, dst_w, dst_h, horDscale,
H A Dhwc_mdpcomp.cpp281 int dst_h = dst.bottom - dst.top; local
283 float h_dscale = ceilf((float)crop_h / (float)dst_h);
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_utils.cpp362 int dst_w, dst_h, src_w, src_h; local
368 dst_h = displayFrame.bottom - displayFrame.top;
373 if(((src_w != dst_w) || (src_h != dst_h)))
559 int dst_h = abs(dst.bottom - dst.top); local
582 topCutRatio = (float)(sci_t - dst_t) / (float)dst_h;
587 bottomCutRatio = (float)(dst_b - sci_b) / (float)dst_h;
H A Dhwc_mdpcomp.cpp289 int dst_h = dst.bottom - dst.top; local
291 float h_dscale = ceilf((float)crop_h / (float)dst_h);
/hardware/qcom/display/msm8x26/libhwcomposer/
H A Dhwc_utils.cpp323 int dst_w, dst_h, src_w, src_h; local
329 dst_h = displayFrame.bottom - displayFrame.top;
334 if(((src_w != dst_w) || (src_h != dst_h)))
519 int dst_h = abs(dst.bottom - dst.top); local
542 topCutRatio = (float)(sci_t - dst_t) / (float)dst_h;
547 bottomCutRatio = (float)(dst_b - sci_b) / (float)dst_h;
H A Dhwc_mdpcomp.cpp284 int dst_h = dst.bottom - dst.top; local
286 float h_dscale = ceilf((float)crop_h / (float)dst_h);
/hardware/qcom/msm8960/original-kernel-headers/media/
H A Dmsm_isp.h333 uint32_t dst_h; member in struct:msm_pp_crop
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCameraHWInterface.h218 int dst_w, int dst_h,
H A DExynosCameraHWInterface.cpp4035 int dst_w, int dst_h,
4044 || src_h != dst_h) {
4052 dst_ratio = (float)dst_w / (float)dst_h;
4055 if (dst_w * dst_h < src_w * src_h) {
4062 *crop_w = dst_h * dst_ratio;
4063 *crop_h = dst_h;
4100 && *crop_h + (CAMERA_CROP_HEIGHT_RESTRAIN_NUM - h_align) <= dst_h) {
4034 m_getRatioSize(int src_w, int src_h, int dst_w, int dst_h, int *crop_x, int *crop_y, int *crop_w, int *crop_h, int zoom) argument
H A DExynosCamera.cpp3578 unsigned int dst_w, unsigned int dst_h,
3591 || src_h != dst_h) {
3599 dst_ratio = (float)dst_w / (float)dst_h;
3641 && *crop_h + (CAMERA_CROP_HEIGHT_RESTRAIN_NUM - h_align) <= dst_h) {
3577 m_getCropRect(unsigned int src_w, unsigned int src_h, unsigned int dst_w, unsigned int dst_h, unsigned int *crop_x, unsigned int *crop_y, unsigned int *crop_w, unsigned int *crop_h, int zoom) argument
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
H A Dfimg2d.h295 int dst_w, dst_h; member in struct:fimg2d_scale
/hardware/ti/omap4xxx/hwc/
H A Dhwc.c717 static int omap4_hwc_can_scale(__u32 src_w, __u32 src_h, __u32 dst_w, __u32 dst_h, int is_2d, argument
733 if (dst_h < src_h / 4)
737 if (dst_h * limits->max_downscale < min_src_h)
765 int dst_h = HEIGHT(layer->displayFrame); local
773 return omap4_hwc_can_scale(src_w, src_h, dst_w, dst_h, is_NV12(handle), &hwc_dev->fb_dis, &limits,
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosCameraHWInterface2.h570 int dst_w, int dst_h,
/hardware/qcom/msm8960/kernel-headers/media/
H A Dmsm_camera.h257 uint32_t dst_h; member in struct:msm_pp_crop

Completed in 394 milliseconds

12