HomeSort by relevance Sort by last modified time
    Searched full:quality (Results 1 - 25 of 1684) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dropbear/libtomcrypt/
LICENSE 1 LibTomCrypt is public domain. As should all quality software be.
  /external/skia/src/effects/
SkBlurMask.h 26 enum Quality {
32 SkScalar radius, Style style, Quality quality,
36 SkScalar radius, Style style, Quality quality,
39 SkScalar radius, Style style, Quality quality,
43 SkScalar radius, Style style, Quality quality,
  /external/skia/legacy/src/images/
SkImageEncoder.cpp 18 int quality) {
19 quality = SkMin32(100, SkMax32(0, quality));
20 return this->onEncode(stream, bm, quality);
24 int quality) {
25 quality = SkMin32(100, SkMax32(0, quality));
27 return this->onEncode(&stream, bm, quality);
31 int quality) {
33 return enc.get() && enc.get()->encodeFile(file, bm, quality);
    [all...]
  /external/skia/src/images/
SkImageEncoder.cpp 18 int quality) {
19 quality = SkMin32(100, SkMax32(0, quality));
20 return this->onEncode(stream, bm, quality);
24 int quality) {
25 quality = SkMin32(100, SkMax32(0, quality));
27 return this->onEncode(&stream, bm, quality);
31 int quality) {
33 return enc.get() && enc.get()->encodeFile(file, bm, quality);
    [all...]
  /external/skia/legacy/include/images/
SkImageEncoder.h 27 /* Quality ranges from 0..100 */
32 bool encodeFile(const char file[], const SkBitmap&, int quality);
33 bool encodeStream(SkWStream*, const SkBitmap&, int quality);
36 int quality);
38 int quality);
41 virtual bool onEncode(SkWStream*, const SkBitmap&, int quality) = 0;
  /external/skia/include/images/
SkImageEncoder.h 27 /* Quality ranges from 0..100 */
34 * file 'file', at quality level 'quality' (which can be in range
40 bool encodeFile(const char file[], const SkBitmap& bm, int quality);
44 * stream 'stream', at quality level 'quality' (which can be in
50 bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality);
53 int quality);
55 int quality);
60 * stream 'stream', at quality level 'quality' (which can be i
    [all...]
  /frameworks/base/media/java/android/media/
CameraProfile.java 27 * capture (jpeg) quality levels (0-100) used for low, medium, and high
28 * quality settings in the Camera application.
34 * Define three quality levels for JPEG image encoding.
45 * Cache the Jpeg encoding quality parameters
50 * Returns a pre-defined still image capture (jpeg) quality level
51 * used for the given quality level in the Camera application for
55 * @param quality The target quality level
57 public static int getJpegEncodingQualityParameter(int quality) {
63 return getJpegEncodingQualityParameter(i, quality);
    [all...]
CamcorderProfile.java 49 * Quality level corresponding to the lowest available resolution.
54 * Quality level corresponding to the highest available resolution.
59 * Quality level corresponding to the qcif (176 x 144) resolution.
64 * Quality level corresponding to the cif (352 x 288) resolution.
69 * Quality level corresponding to the 480p (720 x 480) resolution.
76 * Quality level corresponding to the 720p (1280 x 720) resolution.
81 * Quality level corresponding to the 1080p (1920 x 1080) resolution.
89 * Quality level corresponding to the QVGA (320x240) resolution.
93 // Start and end of quality list
98 * Time lapse quality level corresponding to the lowest available resolution
150 public int quality; field in class:CamcorderProfile
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ChooseLockGeneric.java 192 int quality = intent.getIntExtra(LockPatternUtils.PASSWORD_TYPE_KEY, -1); local
193 if (quality == -1) {
194 // If caller didn't specify password quality, show UI and allow the user to choose.
195 quality = intent.getIntExtra(MINIMUM_QUALITY_KEY, -1);
197 quality = upgradeQuality(quality, allowBiometric);
203 disableUnusablePreferences(quality, allowBiometric);
205 updateUnlockMethodAndFinish(quality, false);
209 /** increases the quality if necessary, and returns whether biometric is allowed */
210 private int upgradeQuality(int quality, MutableBoolean allowBiometric)
    [all...]
  /frameworks/base/docs/html/distribute/googleplay/quality/
index.jd 1 page.title=App Quality
12 <p>App quality directly influences the long-term success of your app&mdash;in
14 Android users expect high-quality apps, even more so if they've spent money on
19 your app meets the basic quality expectations of users, across all of the form
21 section help you assess your app's fundamental quality and address any
30 Core App Quality
33 A set of core quality criteria that all Android apps should meet on all targeted devices.
34 </p><a href="{@docRoot}distribute/googleplay/quality/core.html">Learn more »</a>
38 Tablet App Quality
42 </p><a href="{@docRoot}distribute/googleplay/quality/tablet.html">Learn more »</a
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
VideoPlayerCapability.java 27 static boolean formatSupported(int quality, int videoCodec, int audioCodec) {
28 if (!CamcorderProfile.hasProfile(quality)) {
29 Log.i(TAG, "quality " + quality + " not supported");
32 CamcorderProfile profile = CamcorderProfile.get(quality);
35 Log.i(TAG, "quality " + quality + " video codec " + videoCodec + " audio codec " +
NativeMediaTest.java 52 private void runPlayTest(int quality) throws InterruptedException {
53 if (quality != 0) {
54 if (!isResolutionSupported(quality)) {
60 quality);
89 private boolean isResolutionSupported(int quality) {
91 if (!CamcorderProfile.hasProfile(quality)) {
94 CamcorderProfile profile = CamcorderProfile.get(quality);
  /external/skia/legacy/src/effects/
SkBlurMask.h 26 enum Quality {
32 SkScalar radius, Style style, Quality quality,
  /cts/tests/tests/media/src/android/media/cts/
CamcorderProfileTest.java 35 private CamcorderProfile getWithOptionalId(int quality, int cameraId) {
37 return CamcorderProfile.get(quality);
39 return CamcorderProfile.get(cameraId, quality);
44 Log.v(TAG, String.format("profile: duration=%d, quality=%d, " +
49 profile.quality,
61 assertTrue(profile.quality == CamcorderProfile.QUALITY_LOW ||
62 profile.quality == CamcorderProfile.QUALITY_HIGH ||
63 profile.quality == CamcorderProfile.QUALITY_QCIF ||
64 profile.quality == CamcorderProfile.QUALITY_CIF ||
65 profile.quality == CamcorderProfile.QUALITY_480P |
157 int quality = specificQualities[i]; local
    [all...]
  /cts/suite/audio_quality/
Android.mk 22 CTS_AUDIO_INSTALL_DIR := $(HOST_OUT)/cts-audio-quality/android-cts-audio-quality
23 CTS_AUDIO_QUALITY_ZIP := $(HOST_OUT)/cts-audio-quality/android-cts-audio-quality.zip
35 $(hide) cd $(HOST_OUT)/cts-audio-quality && \
36 zip -rq android-cts-audio-quality.zip android-cts-audio-quality -x android-cts-audio-quality/reports/\*
  /device/generic/goldfish/camera/
media_profiles.xml 25 <!ATTLIST EncoderProfile quality (high|low) #REQUIRED>
41 <!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
92 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
104 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
117 <ImageEncoding quality="95" />
118 <ImageEncoding quality="80" />
119 <ImageEncoding quality="70" />
126 <EncoderProfile quality="qvga" fileFormat="mp4" duration="60">
138 <EncoderProfile quality="timelapseqcif" fileFormat="mp4" duration="30">
151 <ImageEncoding quality="95" /
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Path.java 69 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
70 int id = rs.nPathCreate(p.mID, false, vtx.getID(rs), 0, quality);
71 Path newPath = new Path(id, rs, p, null, null, quality);
75 public static Path createStaticPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
79 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx) {
83 public static Path createDynamicPath(RenderScript rs, Primitive p, float quality, Allocation vtx, Allocation loops) {
  /external/jpeg/
cjpeg.1 39 .BI \-quality " N"
40 Scale quantization tables to adjust image quality. Quality is 0 (worst) to
58 runs somewhat slower and needs much more memory. Image quality and speed of
77 .B \-quality
78 switch lets you trade off compressed file size against quality of the
79 reconstructed image: the higher the quality setting, the larger the JPEG file,
81 want to use the lowest quality setting (smallest file) that decompresses into
83 purpose the quality setting should be between 50 and 95; the default of 75 is
85 .B \-quality
    [all...]
  /external/qemu/distrib/jpeg-6b/
cjpeg.1 39 .BI \-quality " N"
40 Scale quantization tables to adjust image quality. Quality is 0 (worst) to
58 runs somewhat slower and needs much more memory. Image quality and speed of
77 .B \-quality
78 switch lets you trade off compressed file size against quality of the
79 reconstructed image: the higher the quality setting, the larger the JPEG file,
81 want to use the lowest quality setting (smallest file) that decompresses into
83 purpose the quality setting should be between 50 and 95; the default of 75 is
85 .B \-quality
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
scale.h 24 kFilterBilinear = 1, // Faster than box, but lower quality scaling down.
25 kFilterBox = 2 // Highest quality
31 // used. This produces basic (blocky) quality at the fastest speed.
33 // quality image, at the expense of speed.
35 // quality image, at further expense of speed.
  /external/webkit/Source/WebCore/platform/image-encoders/skia/
JPEGImageEncoder.h 44 // Encode the input data with a compression quality in [0-100].
45 static bool encode(const SkBitmap&, int quality, Vector<unsigned char>*);
46 static bool encode(const ImageData&, int quality, Vector<unsigned char>*);
48 // For callers: provide a reasonable compression quality default.
49 enum Quality { DefaultCompressionQuality = 92 };
  /frameworks/rs/
rsPath.cpp 28 Allocation *vtx, Allocation *loops, float quality)
32 mHal.state.quality = quality;
74 RsAllocation vtx, RsAllocation loops, float quality) {
75 return new Path(rsc, pp, isStatic, (Allocation *)vtx, (Allocation *)loops, quality);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
ImageBufferGtk.cpp 35 String ImageBuffer::toDataURL(const String& mimeType, const double* quality) const
56 if (type == "jpeg" && quality && *quality >= 0.0 && *quality <= 1.0) {
57 String qualityString = String::format("%f", *quality * 100.0);
59 type.utf8().data(), &error, "quality", qualityString.utf8().data(), NULL);
  /external/speex/include/speex/
speex_resampler.h 9 - Good *perceptual* quality (and not best SNR)
118 * @param quality Resampling quality between 0 and 10, where 0 has poor quality
119 * and 10 has very high quality.
126 int quality,
137 * @param quality Resampling quality between 0 and 10, where 0 has poor quality
138 * and 10 has very high quality
    [all...]
  /external/proguard/docs/
quality.html 7 <title>ProGuard Quality</title>
11 <h2>Quality</h2>
13 In order to get a feel for the quality of the <b>ProGuard</b> code, it is run
24 <center><a href="http://proguard.sourceforge.net/quality/"

Completed in 874 milliseconds

1 2 3 4 5 6 7 8 91011>>