Home
last modified time | relevance | path

Searched refs:Dither (Results 1 – 25 of 1730) sorted by relevance

12345678910>>...70

/dports/graphics/gifski/gifski-1.5.0/cargo-crates/ffmpeg-next-4.4.0/src/software/resampling/
H A Ddither.rs5 pub enum Dither { enum
20 impl From<SwrDitherType> for Dither { implementation
21 fn from(value: SwrDitherType) -> Dither { in from() argument
23 SWR_DITHER_NONE => Dither::None, in from()
24 SWR_DITHER_RECTANGULAR => Dither::Rectangular, in from()
25 SWR_DITHER_TRIANGULAR => Dither::Triangular, in from()
28 SWR_DITHER_NS => Dither::None, in from()
36 SWR_DITHER_NB => Dither::None, in from()
41 impl From<Dither> for SwrDitherType {
42 fn from(value: Dither) -> SwrDitherType { in from()
[all …]
/dports/audio/wavegain/WaveGain-1.2.8/
H A Ddither.c174 memset ( Dither.ErrorHistory , 0, sizeof (Dither.ErrorHistory ) ); in Init_Dither()
175 memset ( Dither.DitherHistory, 0, sizeof (Dither.DitherHistory) ); in Init_Dither()
177 Dither.FilterCoeff = F [shapingtype]; in Init_Dither()
178 Dither.Mask = ((Uint64_t)-1) << (32 - bits); in Init_Dither()
179 Dither.Add = 0.5 * ((1L << (32 - bits)) - 1); in Init_Dither()
180 Dither.Dither = 0.01*default_dither[index] / (((Int64_t)1) << bits); in Init_Dither()
H A Dwavegain.c47 #define ROUND64(x) ( doubletmp = (x) + Dither.Add + (Int64_t)0x001FFFFD80000000L, *(Int64_t*)(&do…
54 dither_t Dither; variable
85 double tmp = Random_Equi ( Dither.Dither ); in dither_output()
86 Sum2 = tmp - Dither.LastRandomNumber [k]; in dither_output()
87 Dither.LastRandomNumber [k] = (int)tmp; in dither_output()
89 val = ROUND64 (Sum2) & Dither.Mask; in dither_output()
92 …Sum2 = Random_Triangular ( Dither.Dither ) - scalar16 ( Dither.DitherHistory[k], Dither.FilterCoe… in dither_output()
93 Sum += Dither.DitherHistory [k] [(-1-i)&15] = (float)Sum2; in dither_output()
94 Sum2 = Sum + scalar16 ( Dither.ErrorHistory [k], Dither.FilterCoeff + i ); in dither_output()
95 val = ROUND64 (Sum2) & Dither.Mask; in dither_output()
[all …]
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/core/util/
H A DDither.cpp29 Dither::Dither() in Dither() function in lsp::Dither
36 Dither::~Dither() in ~Dither()
40 void Dither::set_bits(size_t bits) in set_bits()
57 void Dither::process(float *out, const float *in, size_t count) in process()
69 void Dither::dump(IStateDumper *v) const in dump()
/dports/games/scummvm/scummvm-2.5.1/engines/ultima/nuvie/screen/
H A Ddither.cpp36 Dither::Dither(Configuration *cfg) { in Dither() function in Ultima::Nuvie::Dither
47 Dither::~Dither() { in ~Dither()
52 bool Dither::load_data() { in load_data()
71 void Dither::set_mode() { in set_mode()
88 bool Dither::dither_bitmap(unsigned char *src_buf, uint16 src_w, uint16 src_h, bool has_transparenc… in dither_bitmap()
H A Ddither.h40 class Dither {
47 Dither(Configuration *cfg);
48 ~Dither();
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/include/core/util/
H A DDither.h31 class Dither
34 Dither &operator = (const Dither &);
43 explicit Dither();
44 ~Dither();
/dports/games/rlvm/rlvm-release-0.14-77-gfabf134a/src/systems/sdl/
H A Ddither.cc26 float Dither::_div = 0;
33 Dither::Dither (void) in Dither() function in Dither
40 void Dither::reset (void) in reset()
48 void Dither::proc_rectangular (const float *srce, int16_t *dest, int step, int nsam) in proc_rectangular()
67 void Dither::proc_triangular (const float *srce, int16_t *dest, int step, int nsam) in proc_triangular()
89 void Dither::proc_lipschitz (const float *srce, int16_t *dest, int step, int nsam) in proc_lipschitz()
/dports/audio/ebumeter/ebumeter-0.4.2/source/
H A Ddither.cc27 float Dither::_div = 0;
34 Dither::Dither (void) in Dither() function in Dither
41 void Dither::reset (void) in reset()
49 void Dither::proc_rectangular (const float *srce, int16_t *dest, int step, int nsam) in proc_rectangular()
68 void Dither::proc_triangular (const float *srce, int16_t *dest, int step, int nsam) in proc_triangular()
90 void Dither::proc_lipschitz (const float *srce, int16_t *dest, int step, int nsam) in proc_lipschitz()
/dports/graphics/libcaca/libcaca-0.99.beta19/cxx/
H A Dcaca++.cpp322 Dither::~Dither() in ~Dither()
332 void Dither::setBrightness(float f) in setBrightness()
337 void Dither::setGamma(float f) in setGamma()
342 void Dither::setContrast(float f) in setContrast()
347 void Dither::setAntialias(char const *cv) in setAntialias()
357 void Dither::setColor(char const *cv) in setColor()
362 char const *const * Dither::getColorList() in getColorList()
367 void Dither::setCharset(char const *cv) in setCharset()
372 char const *const * Dither::getCharsetList() in getCharsetList()
377 void Dither::setMode(char const *cv) in setMode()
[all …]
H A Dcaca++.h61 __class Dither
64 Dither(unsigned int, unsigned int, unsigned int, unsigned int,
66 ~Dither();
90 friend class Dither; variable
/dports/audio/jconvolver/jconvolver-1.1.0/source/
H A Ddither.cc27 float Dither::_div = 0;
34 Dither::Dither (void) in Dither() function in Dither
41 void Dither::reset (void) in reset()
49 void Dither::proc_rectangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_rectangular()
68 void Dither::proc_triangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_triangular()
90 void Dither::proc_lipschitz (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_lipschitz()
/dports/audio/jmatconvol/jmatconvol-0.4.2/source/
H A Ddither.cc26 float Dither::_div = 0;
33 Dither::Dither (void) in Dither() function in Dither
40 void Dither::reset (void) in reset()
48 void Dither::proc_rectangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_rectangular()
67 void Dither::proc_triangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_triangular()
89 void Dither::proc_lipschitz (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_lipschitz()
/dports/audio/zita-resampler/zita-resampler-1.8.0/apps/
H A Ddither.cc27 float Dither::_div = 0;
34 Dither::Dither (void) in Dither() function in Dither
41 void Dither::reset (void) in reset()
49 void Dither::proc_rectangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_rectangular()
68 void Dither::proc_triangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_triangular()
90 void Dither::proc_lipschitz (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_lipschitz()
/dports/audio/py-zita-audiotools/zita-audiotools-1.0.0/source/
H A Ddither.cc27 float Dither::_div = 0;
34 Dither::Dither (void) in Dither() function in Dither
41 void Dither::reset (void) in reset()
49 void Dither::proc_rectangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_rectangular()
68 void Dither::proc_triangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_triangular()
90 void Dither::proc_lipschitz (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_lipschitz()
/dports/audio/tetraproc/tetraproc-0.8.6/source/
H A Ddither.cc26 float Dither::_div = 0;
33 Dither::Dither (void) in Dither() function in Dither
40 void Dither::reset (void) in reset()
48 void Dither::proc_rectangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_rectangular()
67 void Dither::proc_triangular (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_triangular()
89 void Dither::proc_lipschitz (int nsam, const float *srce, int16_t *dest, int ds, int dd) in proc_lipschitz()
/dports/graphics/vapoursynth-fmtconv/fmtconv-r28/src/fmtcl/
H A DDither.cpp55 constexpr int Dither::_max_nbr_planes;
56 constexpr int Dither::_pat_max_size;
60 Dither::Dither ( in Dither() function in fmtcl::Dither
261 constexpr int Dither::_pat_period;
262 constexpr int Dither::_pat_min_size;
263 constexpr int Dither::_amp_bits;
264 constexpr int Dither::_err_res;
265 constexpr int Dither::_max_unk_width;
269 void Dither::build_dither_pat () in build_dither_pat()
460 void Dither::build_next_dither_pat () in build_next_dither_pat()
[all …]
H A DDither.h51 class Dither
82 explicit Dither (
449 Dither () = delete;
450 Dither (const Dither &other) = delete;
451 Dither (Dither &&other) = delete;
452 Dither & operator = (const Dither &other) = delete;
453 Dither & operator = (Dither &&other) = delete;
454 bool operator == (const Dither &other) const = delete;
455 bool operator != (const Dither &other) const = delete;
/dports/graphics/vapoursynth-fmtconv/fmtconv-r28/src/fmtcavs/
H A DBitdepth_avs.cpp118 auto dmode = static_cast <fmtcl::Dither::DMode> ( in Bitdepth()
119 args [Param_DMODE].AsInt (fmtcl::Dither::DMode_FILTERLITE) in Bitdepth()
121 if (dmode == fmtcl::Dither::DMode_ROUND_ALIAS) in Bitdepth()
123 dmode = fmtcl::Dither::DMode_ROUND; in Bitdepth()
126 || (dmode & 0xFFFF) >= fmtcl::Dither::DMode_NBR_ELT) in Bitdepth()
145 || pat_size > fmtcl::Dither::_pat_max_size in Bitdepth()
165 _engine_uptr = std::make_unique <fmtcl::Dither> ( in Bitdepth()
/dports/audio/audacity/audacity-Audacity-3.1.3/libraries/lib-math/
H A DDither.cpp187 Dither::Dither() in Dither() function in Dither
193 void Dither::Reset() in Reset()
216 void Dither::Apply(enum DitherType ditherType, in Apply()
390 EnumSetting< DitherType > Dither::FastSetting{
400 EnumSetting< DitherType > Dither::BestSetting{
410 DitherType Dither::FastDitherChoice() in FastDitherChoice()
415 DitherType Dither::BestDitherChoice() in BestDitherChoice()
/dports/graphics/vapoursynth-fmtconv/fmtconv-r28/src/fmtc/
H A DBitdepth_vs.cpp149 fmtcl::Dither::DMode dmode = static_cast <fmtcl::Dither::DMode> ( in Bitdepth()
150 get_arg_int (in, out, "dmode", fmtcl::Dither::DMode_FILTERLITE) in Bitdepth()
152 if (dmode == fmtcl::Dither::DMode_ROUND_ALIAS) in Bitdepth()
154 dmode = fmtcl::Dither::DMode_ROUND; in Bitdepth()
157 || (dmode & 0xFFFF) >= fmtcl::Dither::DMode_NBR_ELT) in Bitdepth()
176 || pat_size > fmtcl::Dither::_pat_max_size in Bitdepth()
188 _engine_uptr = std::make_unique <fmtcl::Dither> ( in Bitdepth()
/dports/graphics/libcaca/libcaca-0.99.beta19/java/org/zoy/caca/
H A DDither.java14 public class Dither extends NativeObject { class
23 public Dither(int bitmapDepth, int weight, int height, int pitch, int redMask, in Dither() method in Dither
83 public static AntiAliasing forCode(Dither dither, String code) { in forCode()
121 public static Color forCode(Dither dither, String code) { in forCode()
158 public static Charset forCode(Dither dither, String code) { in forCode()
195 public static Algorithm forCode(Dither dither, String code) { in forCode()
/dports/print/p5-PostScript-PPD/PostScript-PPD-0.0300/t/ppd/
H A DGeneric-PCL_5_Printer-gimp-print-ijs.ppd1018 *OpenUI *Dither/Dither Algorithm: PickOne
1024 *FoomaticRIPOptionSetting Dither=Adaptive: "Dither=Adaptive,"
1025 *Dither EvenTone/EvenTone: "%% FoomaticRIPOptionSetting: Dither=EvenTone"
1026 *FoomaticRIPOptionSetting Dither=EvenTone: "Dither=EvenTone,"
1027 *Dither Fast/Fast: "%% FoomaticRIPOptionSetting: Dither=Fast"
1028 *FoomaticRIPOptionSetting Dither=Fast: "Dither=Fast,"
1030 *FoomaticRIPOptionSetting Dither=Floyd: "Dither=Floyd,"
1031 *Dither Ordered/Ordered: "%% FoomaticRIPOptionSetting: Dither=Ordered"
1032 *FoomaticRIPOptionSetting Dither=Ordered: "Dither=Ordered,"
1034 *FoomaticRIPOptionSetting Dither=VeryFast: "Dither=VeryFast,"
[all …]
/dports/graphics/xmedcon/xmedcon-0.17.0/source/
H A Dxrender.c68 GdkRgbDither dither = sRenderSelection.Dither; in XMdcRenderingSelCallbackApply()
92 if (sRenderSelection.Dither != dither || in XMdcRenderingSelCallbackApply()
94 sRenderSelection.Dither = dither; in XMdcRenderingSelCallbackApply()
150 if (sRenderSelection.Dither == GDK_RGB_DITHER_NONE) in XMdcRenderingSel()
158 if (sRenderSelection.Dither == GDK_RGB_DITHER_NORMAL) in XMdcRenderingSel()
166 if (sRenderSelection.Dither == GDK_RGB_DITHER_MAX) in XMdcRenderingSel()
252 switch (sRenderSelection.Dither) { in XMdcRenderingSel()
/dports/graphics/GraphicsMagick/GraphicsMagick-1.3.36/magick/
H A Dquantize.c1284 (void) Dither(cube_info,image,ForgetGravity); in DitherImage()
1953 (void) Dither(cube_info,image,EastGravity); in HilbertCurve()
1955 (void) Dither(cube_info,image,SouthGravity); in HilbertCurve()
1957 (void) Dither(cube_info,image,WestGravity); in HilbertCurve()
1964 (void) Dither(cube_info,image,WestGravity); in HilbertCurve()
1966 (void) Dither(cube_info,image,NorthGravity); in HilbertCurve()
1968 (void) Dither(cube_info,image,EastGravity); in HilbertCurve()
1975 (void) Dither(cube_info,image,SouthGravity); in HilbertCurve()
1977 (void) Dither(cube_info,image,EastGravity); in HilbertCurve()
1979 (void) Dither(cube_info,image,NorthGravity); in HilbertCurve()
[all …]

12345678910>>...70