/external/chromium_org/third_party/skia/src/images/ |
SkImageEncoder.cpp | 16 int quality) { 17 quality = SkMin32(100, SkMax32(0, quality)); 18 return this->onEncode(stream, bm, quality); 22 int quality) { 23 quality = SkMin32(100, SkMax32(0, quality)); 25 return this->onEncode(&stream, bm, quality); 28 SkData* SkImageEncoder::encodeData(const SkBitmap& bm, int quality) { 30 quality = SkMin32(100, SkMax32(0, quality)) [all...] |
/external/skia/src/images/ |
SkImageEncoder.cpp | 16 int quality) { 17 quality = SkMin32(100, SkMax32(0, quality)); 18 return this->onEncode(stream, bm, quality); 22 int quality) { 23 quality = SkMin32(100, SkMax32(0, quality)); 25 return this->onEncode(&stream, bm, quality); 28 SkData* SkImageEncoder::encodeData(const SkBitmap& bm, int quality) { 30 quality = SkMin32(100, SkMax32(0, quality)) [all...] |
/external/dropbear/libtomcrypt/ |
LICENSE | 1 LibTomCrypt is public domain. As should all quality software be.
|
/frameworks/base/docs/html/distribute/googleplay/quality/ |
index.jd | 1 page.title=App Quality 4 <p>App quality directly influences the long-term success of your app—in 6 Android users expect high-quality apps, even more so if they've spent money on 11 your app meets the basic quality expectations of users, across all of the form 13 section help you assess your app's fundamental quality and address any 22 Core App Quality 25 A set of core quality criteria that all Android apps should meet on all targeted devices. 26 </p><a href="{@docRoot}distribute/googleplay/quality/core.html">Learn more »</a> 30 Tablet App Quality 34 </p><a href="{@docRoot}distribute/googleplay/quality/tablet.html">Learn more »</a [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkImageEncoder.h | 33 /* Quality ranges from 0..100 */ 39 * Encode bitmap 'bm', returning the results in an SkData, at quality level 40 * 'quality' (which can be in range 0-100). If the bitmap cannot be 44 SkData* encodeData(const SkBitmap&, int quality); 48 * file 'file', at quality level 'quality' (which can be in range 51 bool encodeFile(const char file[], const SkBitmap& bm, int quality); 55 * stream 'stream', at quality level 'quality' (which can be in 58 bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality); [all...] |
/external/skia/include/core/ |
SkImageEncoder.h | 33 /* Quality ranges from 0..100 */ 39 * Encode bitmap 'bm', returning the results in an SkData, at quality level 40 * 'quality' (which can be in range 0-100). If the bitmap cannot be 44 SkData* encodeData(const SkBitmap&, int quality); 48 * file 'file', at quality level 'quality' (which can be in range 51 bool encodeFile(const char file[], const SkBitmap& bm, int quality); 55 * stream 'stream', at quality level 'quality' (which can be in 58 bool encodeStream(SkWStream* stream, const SkBitmap& bm, int quality); [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...] |
/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/chromium_org/cc/resources/ |
raster_mode.h | 16 // Low quality implies no lcd test; 17 // high quality implies lcd text. 19 // 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...] |
/packages/apps/Settings/src/com/android/settings/ |
ChooseLockGeneric.java | 211 int quality = intent.getIntExtra(LockPatternUtils.PASSWORD_TYPE_KEY, -1); local 212 if (quality == -1) { 213 // If caller didn't specify password quality, show UI and allow the user to choose. 214 quality = intent.getIntExtra(MINIMUM_QUALITY_KEY, -1); 216 quality = upgradeQuality(quality, allowBiometric); 222 disableUnusablePreferences(quality, allowBiometric); 224 updateUnlockMethodAndFinish(quality, false); 228 /** increases the quality if necessary, and returns whether biometric is allowed */ 229 private int upgradeQuality(int quality, MutableBoolean allowBiometric) [all...] |
/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...] |
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapScaler.h | 16 Provides the interface for high quality image resampling. 22 // Quality Methods 24 // Those enumeration values express a desired quality/speed tradeoff. 30 // Good quality resizing. Fastest resizing with acceptable visual quality. 32 // where slower platforms may want to trade image quality for large 41 // in the common case may still use a higher-quality software-based 47 // Medium quality resizing. Close to high quality resizing (better 48 // than linear interpolation) with potentially some quality bein [all...] |
/external/skia/src/core/ |
SkBitmapScaler.h | 16 Provides the interface for high quality image resampling. 22 // Quality Methods 24 // Those enumeration values express a desired quality/speed tradeoff. 30 // Good quality resizing. Fastest resizing with acceptable visual quality. 32 // where slower platforms may want to trade image quality for large 41 // in the common case may still use a higher-quality software-based 47 // Medium quality resizing. Close to high quality resizing (better 48 // than linear interpolation) with potentially some quality bein [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/chromium_org/ui/gfx/image/ |
image_util_ios.mm | 15 int quality, 17 NSData* data = UIImageJPEGRepresentation(image.ToUIImage(), quality / 100.0);
|
/external/droiddriver/src/com/google/android/droiddriver/ |
Screenshotter.java | 40 * @param quality Hint to the compressor, 0-100. 0 meaning compress for small 41 * size, 100 meaning compress for max quality. Some formats, like PNG 42 * which is lossless, will ignore the quality setting 45 boolean takeScreenshot(String path, CompressFormat format, int quality);
|
/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/chromium_org/third_party/WebKit/Source/core/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 };
|
WEBPImageEncoder.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 = 80 };
|
/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.
|
/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);
|