HomeSort by relevance Sort by last modified time
    Searched full:quality (Results 176 - 200 of 2126) sorted by null

1 2 3 4 5 6 78 91011>>

  /device/lge/mako/camera/mm-camera-interface/
mm_jpeg_encoder.c 530 jpege_config.main_cfg.quality = jpegMainimageQuality;
531 jpege_config.thumbnail_cfg.quality = jpegThumbnailQuality;
675 int8_t mm_jpeg_encoder_setMainImageQuality(uint32_t quality)
678 CDBG(" jpeg_encoder_setMainImageQuality current main inage quality %d ," \
679 " new quality : %d\n", jpegMainimageQuality, quality);
680 if (quality <= 100)
681 jpegMainimageQuality = quality;
686 int8_t mm_jpeg_encoder_setThumbnailQuality(uint32_t quality)
689 CDBG(" jpeg_encoder_setThumbnailQuality current thumbnail quality %d ,"
    [all...]
mm_omx_jpeg_encoder.c 646 ALOGV("%s: thumbnail quality %u %d",
742 int8_t mm_jpeg_encoder_setMainImageQuality(uint32_t quality)
745 ALOGV("%s: current main inage quality %d ," \
746 " new quality : %d\n", __func__, jpegMainimageQuality, quality);
747 if (quality <= 100)
748 jpegMainimageQuality = quality;
753 int8_t mm_jpeg_encoder_setThumbnailQuality(uint32_t quality)
756 ALOGV("%s: current thumbnail quality %d ," \
757 " new quality : %d\n", __func__, jpegThumbnailQuality, quality)
    [all...]
  /external/jpeg/
cjpeg.c 152 fprintf(stderr, " -quality N Compression quality (0..100; 5-95 is useful range)\n");
212 int quality; /* -quality parameter */ local
222 /* Note that default -quality level need not, and does not,
225 quality = 75; /* default -quality value */
330 } else if (keymatch(arg, "quality", 1)) {
331 /* Quality factor (quantization table scaling factor). */
334 if (sscanf(argv[argn], "%d", &quality) != 1
    [all...]
  /external/qemu/distrib/jpeg-6b/
cjpeg.c 152 fprintf(stderr, " -quality N Compression quality (0..100; 5-95 is useful range)\n");
212 int quality; /* -quality parameter */ local
222 /* Note that default -quality level need not, and does not,
225 quality = 75; /* default -quality value */
330 } else if (keymatch(arg, "quality", 1)) {
331 /* Quality factor (quantization table scaling factor). */
334 if (sscanf(argv[argn], "%d", &quality) != 1
    [all...]
  /external/libvorbis/examples/
encoder_example.c 103 Encoding using a VBR quality mode. The usable range is -.1
104 (lowest quality, smallest file) to 1. (highest quality, largest file).
105 Example quality mode .4: 44kHz stereo coupled, roughly 128kbps VBR
118 Encode using a quality mode, but select that quality mode by asking for
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 299 int quality = MessageUtils.IMAGE_COMPRESSION_QUALITY; local
368 // In case that the image byte size is still too large reduce the quality in
378 b.compress(CompressFormat.JPEG, quality, os);
381 quality = (quality * byteLimit) / jpgFileSize; // watch for int division!
382 if (quality < MessageUtils.MINIMUM_IMAGE_COMPRESSION_QUALITY) {
383 quality = MessageUtils.MINIMUM_IMAGE_COMPRESSION_QUALITY;
387 Log.v(TAG, "getResizedImageData: compress(2) w/ quality=" + quality);
398 b.compress(CompressFormat.JPEG, quality, os)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CreateBitmap.java 60 int quality) {
62 src.compress(format, quality, os);
PurgeableBitmapView.java 110 int quality) {
112 src.compress(format, quality, os);
  /device/asus/flo/camera/QCamera2/stack/common/
mm_jpeg_interface.h 121 /* jpeg quality: range 0~100 */
122 uint32_t quality; member in struct:__anon1761
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.h 159 // The default quality setting used when encoding jpegs.
175 // Quality setting to use when encoding jpegs. Set in RunImpl().
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
SincResampler.h 37 // SincResampler is a high-quality sample-rate converter.
42 // kernelSize can be adjusted for quality (higher is better)
  /external/chromium_org/third_party/opus/src/silk/
resampler_private.h 60 /* Upsample by a factor 2, high quality */
68 /* Upsample by a factor 2, high quality */
  /external/proguard/docs/
sections.html 17 <li><a target="main" href="quality.html">Quality</a></li>
  /external/speex/include/speex/
speex_callbacks.h 125 /** Standard handler for VBR quality request (Set VBR quality, no questions asked) */
  /external/webrtc/src/common_audio/vad/
vad_core.h 60 * 0 (High quality) - 3 (Highly aggressive)
78 * 0 (High quality) - 3 (Highly aggressive)
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java 220 * for the password. Note that quality constants are ordered so that higher
229 * Note that quality constants are ordered so that higher values are more restrictive.
235 * of password, but doesn't care what it is. Note that quality constants
242 * password containing at least numeric characters. Note that quality
250 * Note that quality constants are ordered so that higher values are more
258 * alphabetic (or other symbol) characters. Note that quality constants are
266 * symbol, by default. With this password quality, passwords can be
270 * that quality constants are ordered so that higher values are more
284 * <p>Quality constants are ordered so that higher values are more restrictive;
285 * thus the highest requested quality constant (between the policy set here
    [all...]
IDevicePolicyManager.aidl 28 void setPasswordQuality(in ComponentName who, int quality, int userHandle);
96 void setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase,
  /frameworks/base/docs/html/guide/practices/
index.jd 14 <a href="http://android-developers.blogspot.com/2010/10/improving-app-quality.html">
15 <h4>Improving App Quality</h4>
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
UiAutomatorBridge.java 108 public boolean takeScreenshot(File storePath, int quality) {
117 screenshot.compress(Bitmap.CompressFormat.PNG, quality, bos);
  /frameworks/uiautomator/core/com/android/uiautomator/core/
UiAutomatorBridge.java 108 public boolean takeScreenshot(File storePath, int quality) {
117 screenshot.compress(Bitmap.CompressFormat.PNG, quality, bos);
  /hardware/qcom/camera/QCamera2/stack/common/
mm_jpeg_interface.h 125 /* jpeg quality: range 0~100 */
126 uint32_t quality; member in struct:__anon33217
  /hardware/samsung_slsi/exynos5/libcamera/
ExynosJpegEncoderForCamera.h 82 int setQuality(int quality);
94 int setThumbnailQuality(int quality);
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosJpegEncoderForCamera.h 80 int setQuality(int quality);
92 int setThumbnailQuality(int quality);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
FilterEnvironment.java 94 public void setQuality(int quality) {
95 mQuality = quality;
  /prebuilts/tools/common/proguard/proguard4.7/docs/
sections.html 17 <li><a target="main" href="quality.html">Quality</a></li>

Completed in 2483 milliseconds

1 2 3 4 5 6 78 91011>>