Home | History | Annotate | Download | only in settings

Lines Matching defs:large

58         public Size large;
76 return large;
87 return large;
92 return "SelectedPictureSizes: " + large + ", " + medium + ", " + small;
98 public int large = -1;
103 // Sanitize the value to be either small, medium or large. Default
110 return large;
124 private static final String SIZE_LARGE = "large";
128 /** The ideal "medium" picture size is 50% of "large". */
131 /** The ideal "small" picture size is 25% of "large". */
154 * @param sizeSetting The setting selected by the user. One of "large",
174 * @param sizeSetting The setting selected by the user. One of "large",
189 * Based on the selected size (large, medium or small), and the list of
193 * @param sizeSetting The setting selected by the user. One of "large",
208 * that shall be selected for being 'large', 'medium' and 'small'.
243 // Large size is always the size with the most pixels reported.
244 selectedSizes.large = supportedCopy.remove(0);
247 // aspect ratio as 'large'.
248 final float targetAspectRatio = selectedSizes.large.width()
249 / (float) selectedSizes.large.height();
251 // Create a list of sizes with the same aspect ratio as "large" which we
262 // If we have at least two more resolutions that match the 'large'
276 selectedSizes.medium = selectedSizes.large;
277 selectedSizes.small = selectedSizes.large;
288 // Based on the large pixel count, determine the target pixel count
290 final int largePixelCount = selectedSizes.large.width() * selectedSizes.large.height();
315 * Determines the video quality for large/medium/small for the given camera.
316 * Returns the one matching the given setting. Defaults to 'large' of the
317 * qualitySetting does not match either large. medium or small.
319 * @param qualitySetting One of 'large', 'medium', 'small'.
334 // and set large/medium/small accordingly.
344 selectedQualities.large = sVideoQualities[largeIndex];