Searched defs:quality (Results 26 - 32 of 32) sorted by relevance

12

/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1126 camcorder_quality quality = CAMCORDER_QUALITY_LOW; local
1129 "duration", mCameraId, quality) * 1000000LL;
1132 "file.format", mCameraId, quality);
1135 "vid.codec", mCameraId, quality);
1138 "vid.bps", mCameraId, quality);
1141 "vid.fps", mCameraId, quality);
1144 "vid.width", mCameraId, quality);
1147 "vid.height", mCameraId, quality);
1150 "aud.codec", mCameraId, quality);
1153 "aud.bps", mCameraId, quality);
[all...]
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp1324 int quality = newParams.getInt(CameraParameters::KEY_JPEG_THUMBNAIL_QUALITY); local
1325 // also makes sure quality fits in uint8_t
1326 if (quality < 0 || quality > 100) {
1327 ALOGE("%s: Requested JPEG thumbnail quality %d is not supported",
1328 __FUNCTION__, quality);
1331 validatedParams.jpegThumbQuality = quality;
1334 quality = newParams.getInt(CameraParameters::KEY_JPEG_QUALITY);
1335 // also makes sure quality fits in uint8_t
1336 if (quality <
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java381 * how pixels are stored. This affects the quality (color depth) as
427 * @deprecated Because of the poor quality of this configuration,
439 * quality. It should be used whenever possible.
977 * @param quality Hint to the compressor, 0-100. 0 meaning compress for
978 * small size, 100 meaning compress for max quality. Some
980 * quality setting
984 public boolean compress(CompressFormat format, int quality, OutputStream stream) { argument
990 if (quality < 0 || quality > 100) {
991 throw new IllegalArgumentException("quality mus
1578 nativeCompress(int nativeBitmap, int format, int quality, OutputStream stream, byte[] tempStorage) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java288 out.startTag(null, "password-quality");
290 out.endTag(null, "password-quality");
396 } else if ("password-quality".equals(tag)) {
851 out.attribute(null, "quality", Integer.toString(policy.mActivePasswordQuality));
948 parser.getAttributeValue(null, "quality"));
990 // Validate that what we stored for the password quality matches
996 Slog.w(TAG, "Active password quality 0x"
998 + " does not match actual quality 0x"
1015 static void validateQualityConstant(int quality) { argument
1016 switch (quality) {
1296 setPasswordQuality(ComponentName who, int quality, int userHandle) argument
2251 setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase, int numbers, int symbols, int nonletter, int userHandle) argument
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1834 private static final String KEY_JPEG_THUMBNAIL_QUALITY = "jpeg-thumbnail-quality";
1835 private static final String KEY_JPEG_QUALITY = "jpeg-quality";
2425 * Sets the quality of the EXIF thumbnail in Jpeg picture.
2427 * @param quality the JPEG quality of the EXIF thumbnail. The range is 1
2430 public void setJpegThumbnailQuality(int quality) { argument
2431 set(KEY_JPEG_THUMBNAIL_QUALITY, quality);
2435 * Returns the quality setting for the EXIF thumbnail in Jpeg picture.
2437 * @return the JPEG quality setting of the EXIF thumbnail.
2444 * Sets Jpeg quality o
2449 setJpegQuality(int quality) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2714 Bitmap createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) { argument
2729 Bitmap b = super.createSnapshot(quality, backgroundColor, skipChildren);
4749 * for instance, when the cache's quality is set to low.
H A DView.java900 * <p>Enables low quality mode for the drawing cache.</p>
905 * <p>Enables high quality mode for the drawing cache.</p>
910 * <p>Enables automatic quality mode for the drawing cache.</p>
920 * quality property.</p>
3371 * <p>A hardware layer can also be used to increase the rendering quality when
5659 * Returns the quality of the drawing cache.
5675 * Set the drawing cache quality of this view. This value is used only when the
5678 * @param quality One of {@link #DRAWING_CACHE_QUALITY_AUTO},
5687 public void setDrawingCacheQuality(int quality) { argument
5688 setFlags(quality, DRAWING_CACHE_QUALITY_MAS
13695 createSnapshot(Bitmap.Config quality, int backgroundColor, boolean skipChildren) argument
[all...]

Completed in 262 milliseconds

12