diff options
author | Michael Niedermayer | 2013-01-10 18:01:26 +0100 |
---|---|---|
committer | Michael Niedermayer | 2013-01-10 18:01:26 +0100 |
commit | fca51256d4f4b432f551d24b20570cc79a34d1f8 (patch) | |
tree | 878669b7ff96ee6a19358854cb400a45bcfc403f /libswresample/swresample_internal.h | |
parent | 36055aa8764510b3d1803a9ac304960685d385a9 (diff) |
swr: rename dither_pos to noise_pos
THis more closely matches what the field represents
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample_internal.h')
-rw-r--r-- | libswresample/swresample_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 8423c3a767..0ec37545ff 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -52,7 +52,7 @@ typedef struct AudioData{ struct DitherContext { enum SwrDitherType method; - int dither_pos; + int noise_pos; float scale; float noise_scale; ///< Noise scale int ns_taps; ///< Noise shaping dither taps |