HomeSort by relevance Sort by last modified time
    Searched full:quality (Results 1 - 25 of 1319) 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/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/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;
  /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 177 int quality = intent.getIntExtra(LockPatternUtils.PASSWORD_TYPE_KEY, -1); local
178 if (quality == -1) {
179 // If caller didn't specify password quality, show UI and allow the user to choose.
180 quality = intent.getIntExtra(MINIMUM_QUALITY_KEY, -1);
182 quality = upgradeQuality(quality, allowBiometric);
188 disableUnusablePreferences(quality, allowBiometric);
190 updateUnlockMethodAndFinish(quality, false);
194 /** increases the quality if necessary, and returns whether biometric is allowed */
195 private int upgradeQuality(int quality, MutableBoolean allowBiometric)
    [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/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/\*
  /development/tools/emulator/system/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/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/"
  /external/skia/src/animator/
SkSnapshot.h 24 SkScalar quality; member in class:SkSnapshot
SkSnapshot.cpp 21 SK_MEMBER(quality, Float),
32 quality = 100 * SK_Scalar1;
61 SkScalarFloor(quality));
  /device/ti/panda/
media_profiles.xml 25 <!ATTLIST EncoderProfile quality (high|low) #REQUIRED>
41 <!ATTLIST ImageEncoding quality (90|80|70|60|50|40) #REQUIRED>
82 <EncoderProfile quality="high" fileFormat="mp4" duration="60">
95 <EncoderProfile quality="low" fileFormat="3gp" duration="30">
109 <ImageEncoding quality="90" />
110 <ImageEncoding quality="80" />
111 <ImageEncoding quality="70" />
118 <EncoderProfile quality="high" fileFormat="mp4" duration="60">
131 <EncoderProfile quality="low" fileFormat="3gp" duration="30">
145 <ImageEncoding quality="90" /
    [all...]
  /external/libyuv/files/include/libyuv/
scale.h 21 kFilterBilinear = 1, // Faster than box, but lower quality scaling down.
22 kFilterBox = 2 // Highest quality
28 // used. This produces basic (blocky) quality at the fastest speed.
30 // quality image, at the expense of speed.
32 // quality image, at further expense of speed.
  /external/chromium/third_party/libjingle/source/talk/base/
network.h 43 // Keeps track of the available network interfaces over time so that quality
51 // a given network, so that quality is tracked appropriately.
58 // Reads and writes the state of the quality database in a string format.
80 // It also includes the ability to track and estimate quality.
111 // Re-computes the estimate of near-future quality based on the information
115 // Returns the current estimate of the near-future quality of connections
117 double quality() { return quality_; } function in class:talk_base::Network
139 void AddDataPoint(uint32 time, double quality);
142 // quality information into a permanent store.
150 // provide data about the quality of the network at any given moment
    [all...]

Completed in 1854 milliseconds

1 2 3 4 5 6 7 8 91011>>