diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-31 15:40:12 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-12-19 18:52:54 -0500 |
commit | b2fe6756e34d1316d0fa799e8a5ace993059c407 (patch) | |
tree | 0fc8dea25140a8af90cdfb96af5b5d8f97560ab7 /libavresample/internal.h | |
parent | 582368626188c070d4300913c6da5efa4c24cfb2 (diff) | |
download | ffmpeg-b2fe6756e34d1316d0fa799e8a5ace993059c407.tar.gz |
lavr: add option for dithering during sample format conversion to s16
Diffstat (limited to 'libavresample/internal.h')
-rw-r--r-- | libavresample/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavresample/internal.h b/libavresample/internal.h index 3fd33fed6a..2e139abf2b 100644 --- a/libavresample/internal.h +++ b/libavresample/internal.h @@ -53,6 +53,7 @@ struct AVAudioResampleContext { double cutoff; /**< resampling cutoff frequency. 1.0 corresponds to half the output sample rate */ enum AVResampleFilterType filter_type; /**< resampling filter type */ int kaiser_beta; /**< beta value for Kaiser window (only applicable if filter_type == AV_FILTER_TYPE_KAISER) */ + enum AVResampleDitherMethod dither_method; /**< dither method */ int in_channels; /**< number of input channels */ int out_channels; /**< number of output channels */ |