Home
last modified time | relevance | path

Searched defs:DitherContext (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavresample/
Ddither.c54 struct DitherContext { struct
55 DitherDSPContext ddsp;
56 enum AVResampleDitherMethod method;
57 int apply_map;
58 ChannelMapInfo *ch_map_info;
60 int mute_dither_threshold; // threshold for disabling dither
61 int mute_reset_threshold; // threshold for resetting noise shaping
62 const float *ns_coef_b; // noise shaping coeffs
63 const float *ns_coef_a; // noise shaping coeffs
65 int channels;
[all …]
Ddither.h27 typedef struct DitherContext DitherContext; typedef
/third_party/ffmpeg/libswresample/
Dswresample_internal.h55 struct DitherContext { struct
56 int method;
57 int noise_pos;
58 float scale;
59 float noise_scale; ///< Noise scale
60 int ns_taps; ///< Noise shaping dither taps
61 float ns_scale; ///< Noise shaping dither scale
62 float ns_scale_1; ///< Noise shaping dither scale^-1
63 int ns_pos; ///< Noise shaping dither position
64 float ns_coeffs[NS_TAPS]; ///< Noise shaping filter coefficients
[all …]