Home | History | Annotate | Download | only in src

Lines Matching refs:src_dim

748     p_params->main_dim.src_dim.width;
750 p_params->main_dim.src_dim.height;
771 p_params->thumb_dim.src_dim.width;
773 p_params->thumb_dim.src_dim.height;
873 if ((p_thumb_dim->src_dim.width == 0) || (p_thumb_dim->src_dim.height == 0)) {
880 p_thumb_dim->crop.width = p_thumb_dim->src_dim.width;
881 p_thumb_dim->crop.height = p_thumb_dim->src_dim.height;
885 if ((p_thumb_dim->crop.width + p_thumb_dim->crop.left > p_thumb_dim->src_dim.width) ||
886 (p_thumb_dim->crop.height + p_thumb_dim->crop.top > p_thumb_dim->src_dim.height)) {
893 p_thumb_dim->src_dim.width,
894 p_thumb_dim->src_dim.height);
909 thumbnail_info.input_width = p_thumb_dim->src_dim.width;
910 thumbnail_info.input_height = p_thumb_dim->src_dim.height;
918 if ((p_thumb_dim->dst_dim.width > p_thumb_dim->src_dim.width)
919 || (p_thumb_dim->dst_dim.height > p_thumb_dim->src_dim.height)) {
924 p_thumb_dim->src_dim.width,
925 p_thumb_dim->src_dim.height);
926 thumbnail_info.output_width = p_thumb_dim->src_dim.width;
927 thumbnail_info.output_height = p_thumb_dim->src_dim.height;
972 dim->crop.width = dim->src_dim.width;
973 dim->crop.height = dim->src_dim.height;
976 if ((dim->crop.width + dim->crop.left > dim->src_dim.width) ||
977 (dim->crop.height + dim->crop.top > dim->src_dim.height)) {
982 dim->src_dim.width,
983 dim->src_dim.height);
992 if ((dim->src_dim.width != dim->crop.width) ||
993 (dim->src_dim.height != dim->crop.height) ||
994 (dim->src_dim.width != dim->dst_dim.width) ||
995 (dim->src_dim.height != dim->dst_dim.height)) {