HomeSort by relevance Sort by last modified time
    Searched refs:lossless (Results 1 - 25 of 29) sorted by null

1 2

  /external/skia/tools/fiddle/
animate.sh 17 cd /tmp/animation; ffmpeg -r $FPS -pattern_type glob -i '*.png' -c:v libvpx-vp9 -lossless 1 output.webm
  /external/skqp/tools/fiddle/
animate.sh 17 cd /tmp/animation; ffmpeg -r $FPS -pattern_type glob -i '*.png' -c:v libvpx-vp9 -lossless 1 output.webm
  /external/libvpx/libvpx/vp9/common/
vp9_scan.h 46 if (is_inter_block(mi) || type != PLANE_TYPE_Y || xd->lossless) {
vp9_blockd.h 192 int lossless; member in struct:macroblockd
213 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi))
223 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi))
  /external/webp/src/enc/
config_enc.c 49 config->lossless = 0;
116 if (config->lossless < 0 || config->lossless > 1) return 0;
146 config->lossless = 1;
picture_enc.c 233 Importer import, float quality_factor, int lossless,
247 config.lossless = !!lossless;
248 pic.use_argb = !!lossless;
webp_enc.c 341 if (!config->lossless) {
alpha_enc.c 30 // 'method = 1' - Use lossless coder on the alpha plane only
69 config.lossless = 1;
80 // lossless quality to trigger the cruncher.
  /external/libvpx/libvpx/
warnings.c 74 const int lossless = min_q == 0 && max_q == 0; local
75 if (!lossless && (min_q == max_q || abs(max_q - min_q) < 8))
examples.mk 183 vp9_lossless_encoder.DESCRIPTION = Simplified lossless VP9 encoder
  /external/libvpx/libvpx/test/
vp9_encoder_parms_get_to_decoder.cc 38 int32_t lossless; member in struct:__anon26062::EncodeParameters
80 encoder->Control(VP9E_SET_LOSSLESS, encode_parms.lossless);
104 if (encode_parms.lossless) {
vpxenc.sh 362 --lossless=1
  /external/skia/src/images/
SkWebpEncoder.cpp 151 // libwebp recommends using BGRA for lossless and YUV for lossy.
155 webp_config.lossless = 0;
161 webp_config.lossless = 1;
  /external/skqp/src/images/
SkWebpEncoder.cpp 151 // libwebp recommends using BGRA for lossless and YUV for lossy.
155 webp_config.lossless = 0;
161 webp_config.lossless = 1;
  /external/protobuf/js/binary/
utils_test.js 78 * Tests lossless binary-to-decimal conversion.
159 * Going from hash strings to decimal strings should also be lossless.
201 * Going from decimal strings to hash strings should be lossless.
237 * Going from hash strings to hex strings should be lossless.
255 * Going from hex strings to hash strings should be lossless.
282 * Going from numbers to hash strings should be lossless for up to 53 bits of
arith.js 45 * handling 64-bit integer fields. It implements lossless integer arithmetic on
  /external/webp/include/webp/
encode.h 63 // lossless manner. Files are usually larger than lossy format, but will
95 int lossless; // Lossless encoding (0=lossy(default), 1=lossless). member in struct:WebPConfig
97 // size and 100 the largest. For lossless, this
103 WebPImageHint image_hint; // Hint for image type (lossless only for now).
117 // 1 = compressed with WebP lossless). Default is 1.
120 int alpha_quality; // Between 0 (smallest size) and 100 (lossless).
140 int near_lossless; // Near lossless encoding [0 = max loss .. 100 = off
147 int use_delta_palette; // reserved for future lossless featur
    [all...]
  /external/webp/src/webp/
encode.h 63 // lossless manner. Files are usually larger than lossy format, but will
95 int lossless; // Lossless encoding (0=lossy(default), 1=lossless). member in struct:WebPConfig
97 // size and 100 the largest. For lossless, this
103 WebPImageHint image_hint; // Hint for image type (lossless only for now).
117 // 1 = compressed with WebP lossless). Default is 1.
120 int alpha_quality; // Between 0 (smallest size) and 100 (lossless).
140 int near_lossless; // Near lossless encoding [0 = max loss .. 100 = off
147 int use_delta_palette; // reserved for future lossless featur
    [all...]
  /external/webp/src/mux/
anim_encode.c 55 WebPConfig last_config_reversed_; // If 'last_config_' uses lossless, then
511 FrameRectangle rect_ll_; // Frame rectangle for lossless compression.
512 WebPPicture sub_frame_ll_; // Sub-frame pic for lossless compression.
516 WebPPicture sub_frame_lossy_; // Sub-frame pic for lossless compression.
567 // Picks optimal frame rectangle for both lossless and lossy compression. The
573 // Lossless frame rectangle.
584 params->rect_lossy_ = params->rect_ll_; // seed with lossless rect.
810 if (!config.lossless && use_blending) {
847 #define MAX_COLORS_LOSSLESS 194 // Don't try lossless above this threshold.
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 193 if (xd->lossless) {
213 if (xd->lossless) {
226 if (xd->lossless) {
261 if (xd->lossless) {
281 if (xd->lossless) {
296 if (xd->lossless) {
341 (plane || xd->lossless) ? DCT_DCT : intra_mode_to_tx_type_lookup[mode];
342 const scan_order *sc = (plane || xd->lossless)
    [all...]
  /external/ImageMagick/coders/
webp.c 567 configure.lossless=1;
568 value=GetImageOption(image_info,"webp:lossless");
570 configure.lossless=(int) ParseCommandOption(MagickBooleanOptions,
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 42 unsigned int lossless; member in struct:vp9_extracfg
75 0, // lossless
163 RANGE_CHECK_BOOL(extra_cfg, lossless);
501 extra_cfg->lossless ? 0 : vp9_quantizer_to_qindex(cfg->rc_min_quantizer);
503 extra_cfg->lossless ? 0 : vp9_quantizer_to_qindex(cfg->rc_max_quantizer);
826 extra_cfg.lossless = CAST(VP9E_SET_LOSSLESS, args);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c     [all...]
vp9_rdopt.c 604 if (xd->lossless) {
634 // the lossless case.
764 !x->plane[plane].eobs[block] || (rd1 > rd2 && !xd->lossless);
896 if (is_inter_block(mi) && !xd->lossless && !s[n] && sse[n] != INT64_MAX) {
    [all...]
vp9_encoder.c 5313 const int lossless = is_lossless_requested(oxcf); local
    [all...]

Completed in 1235 milliseconds

1 2