/third_party/ffmpeg/tests/fate/ |
D | wavpack.mak | 23 # lossy 25 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-lossy-8bit 26 fate-wavpack-lossy-8bit: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/lossy/4.0_8-bit.wv -f s8 -af aresam… 28 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-lossy-16bit 29 fate-wavpack-lossy-16bit: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/lossy/4.0_16-bit.wv -f s16le -af a… 31 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-lossy-24bit 32 fate-wavpack-lossy-24bit: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/lossy/4.0_24-bit.wv -f s24le -af a… 34 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-lossy-32bit 35 fate-wavpack-lossy-32bit: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/lossy/4.0_32-bit_int.wv -f s32le -… 37 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-lossy-float [all …]
|
D | canopus.mak | 14 #lossy
|
D | dca.mak | 41 # lossy downmix tests
|
D | image.mak | 496 FATE_WEBP += fate-webp-rgb-lossy-q80 497 fate-webp-rgb-lossy-q80: CMD = framecrc -i $(TARGET_SAMPLES)/webp/rgb_q80.webp 499 FATE_WEBP += fate-webp-rgba-lossy-q80 500 fate-webp-rgba-lossy-q80: CMD = framecrc -i $(TARGET_SAMPLES)/webp/rgba_q80.webp
|
/third_party/ffmpeg/libavcodec/ |
D | loco.c | 48 int lossy; member 56 int lossy; member 105 v = ((v >> 1) + r->lossy) ^ -(v & 1); in loco_get_rice() 147 rc.lossy = l->lossy; in loco_decode_plane() 296 l->lossy = 0; in decode_init() 299 l->lossy = AV_RL32(avctx->extradata + 8); in decode_init() 302 l->lossy = AV_RL32(avctx->extradata + 8); in decode_init() 306 if (l->lossy > 65536U) { in decode_init() 307 av_log(avctx, AV_LOG_ERROR, "lossy %i is too large\n", l->lossy); in decode_init() 335 av_log(avctx, AV_LOG_INFO, "lossy:%i, version:%i, mode: %i\n", l->lossy, version, l->mode); in decode_init()
|
/third_party/skia/third_party/externals/angle2/extensions/ |
D | ANGLE_lossy_etc_decode.txt | 39 specify that Ericsson Texture Compression (ETC) decoding must not be lossy. 40 The goal of this extension is to allow a lossy decode of 48 not be lossy is relaxed. 104 If <internalformat> is one of the ETC lossy decode formats listed in 111 <internalformat> is one of the lossy decode ETC-format values from 137 lossy decode ETC-format is used and <internalformat> is one of the 144 lossy decode ETC-format is used and <format> is one of the compressed
|
/third_party/rust/crates/cxx/book/src/binding/ |
D | string.md | 27 static String lossy(const std::string &) noexcept; 28 static String lossy(const char *) noexcept; 29 static String lossy(const char *, size_t) noexcept; 36 static String lossy(const char16_t *) noexcept; 37 static String lossy(const char16_t *, size_t) noexcept;
|
/third_party/skia/third_party/externals/libwebp/ |
D | NEWS | 41 * lossy compression performance improvement at low quality levels with flat 53 * lossy encoder speedup on ARM 70 * lossy encoder improvements to avoid chroma shifts in various circumstances 117 * minor lossy encoder fixes and improvements 135 * encoder & decoder speed-ups on x86/ARM/MIPS for lossy & lossless 175 * fix 'alpha-leak' with lossy compression (issue #220) 182 - ~25% faster lossy decode / encode (-m 4) 197 * Significant memory reduction for decoding lossy images with alpha. 215 * encoding speed-up for lossy methods 3 to 6 216 * alpha encoding can be done in parallel to lossy using 'cwebp -mt ...'
|
D | README | 468 -mixed ............... use mixed lossy/lossless automatic mode 476 -lossy ... ........... use lossy mode 480 example: img2webp -loop 2 in0.png -lossy in1.jpg 496 -lossy ................. encode image using lossy compression 497 -mixed ................. for each frame in the image, pick lossy 503 combined with -q, -m, -lossy or -mixed
|
D | ChangeLog | 500 f1f437cc remove mention of 'lossy-only parameters' from the doc 831 f29bf582 WebPAnimEncoder: If 'minimize_size' and 'allow_mixed' on, try lossy + lossless. 1084 3f4042b5 WebPAnimEncoder: If 'minimize_size' and 'allow_mixed' on, try lossy + lossless. 1247 9a950c53 WebPAnimEncoder: Disable filtering when blending is used with lossy encoding. 1249 ff0a94be WebPAnimEncoder lossy: ignore small pixel differences for frame rectangles. 1431 96f5b423 man/cwebp: group lossy-only options 2172 c5c6b408 Merge "add alpha dithering for lossy" 2178 bbe32df1 add alpha dithering for lossy 2204 42c447ae Merge "lossy bit-reader clean-up:" 2208 09545eea lossy bit-reader clean-up: [all …]
|
/third_party/skia/fuzz/ |
D | FuzzEncoders.cpp | 64 bool lossy; in DEF_FUZZ() local 65 fuzz->next(&lossy); in DEF_FUZZ() 66 if (lossy) { in DEF_FUZZ()
|
/third_party/rust/crates/cxx/src/ |
D | cxx_string.rs | 2 use crate::lossy; 212 lossy::display(self.as_bytes(), f) in fmt() 218 lossy::debug(self.as_bytes(), f) in fmt()
|
D | cxx.cc | 162 String String::lossy(const std::string &s) noexcept { in lossy() function in rust::cxxbridge1::String 163 return String::lossy(s.data(), s.length()); in lossy() 166 String String::lossy(const char *s) noexcept { in lossy() function in rust::cxxbridge1::String 168 return String::lossy(s, std::strlen(s)); in lossy() 171 String String::lossy(const char *s, std::size_t len) noexcept { in lossy() function in rust::cxxbridge1::String 176 String String::lossy(const char16_t *s) noexcept { in lossy() function in rust::cxxbridge1::String 182 String String::lossy(const char16_t *s, std::size_t len) noexcept { in lossy() function in rust::cxxbridge1::String
|
D | lib.rs | 450 mod lossy; module
|
/third_party/ffmpeg/doc/ |
D | libswscale.texi | 25 lossy process. 35 This is usually a lossy process in case the source and destination
|
D | libswresample.texi | 25 conversion from high to low sample rate is a lossy process. Several 39 to the output streams, the process is lossy, since it involves
|
/third_party/libcoap/examples/ |
D | README.etsi_iot | 27 [?] TD_COAP_CORE_14 Interoperate in lossy context (CON mode, piggybacked response) 28 [?] TD_COAP_CORE_15 Interoperate in lossy context (CON mode, delayed response)
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
D | parser.js | 98 lossy: false, property 172 if (this.options.lossy) { 390 if (!this.options.lossy) { 411 } else if (!this.options.lossy) { 931 return this.options.lossy ? ' ' : space; 934 return this.options.lossy ? '' : space; 937 if (this.options.lossy) { 954 if (!this.options.lossy) {
|
D | processor.js | 45 lossy: this._isLossy(options)
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jconfig.h.in | 28 * Only 8 and 12 are legal data precisions for lossy JPEG according to the
|
/third_party/rust/crates/cxx/include/ |
D | cxx.h | 50 static String lossy(const std::string &) noexcept; 51 static String lossy(const char *) noexcept; 52 static String lossy(const char *, std::size_t) noexcept; 53 static String lossy(const char16_t *) noexcept; 54 static String lossy(const char16_t *, std::size_t) noexcept;
|
/third_party/rust/crates/cxx/tests/ffi/ |
D | tests.cc | 116 return rust::String::lossy("Hello \xf0\x90\x80World"); in c_return_rust_string_lossy() 883 rust::String bad_utf8_rstring = rust::String::lossy(bad_utf8_literal); in cxx_run_test() 884 rust::String bad_utf16_rstring = rust::String::lossy(bad_utf16_literal); in cxx_run_test()
|
/third_party/gstreamer/gst_libav/ |
D | meson.build | 115 '/wd4244', # lossy type conversion (e.g. double -> int)
|
/third_party/skia/third_party/externals/harfbuzz/ |
D | meson.build | 32 '/wd4244', # lossy type conversion (e.g. double -> int)
|
/third_party/astc-encoder/ |
D | README.md | 171 improve texture cache efficiency. However, like any lossy compression format
|