diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-11 13:27:22 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-11 13:27:22 +0200 |
commit | f8a237a3074b444a8d88d92d9fcce10508479d35 (patch) | |
tree | 06f53bfb00674b57b04bec3fefa4832e45c77111 /libswresample/swresample.c | |
parent | 1fc4ff2205cdad4fbb7225f0f32cb7e32edc1eec (diff) | |
download | ffmpeg-f8a237a3074b444a8d88d92d9fcce10508479d35.tar.gz |
swr: add triangular highpass dither
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r-- | libswresample/swresample.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 715a446456..78b0355c4f 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -56,6 +56,7 @@ static const AVOption options[]={ {"dither", "dither method" , OFFSET(dither_method), AV_OPT_TYPE_INT, {.dbl=0}, 0, SWR_DITHER_NB-1, 0, "dither_method"}, {"rectangular", "rectangular dither", 0, AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_RECTANGULAR}, INT_MIN, INT_MAX, 0, "dither_method"}, {"triangular" , "triangular dither" , 0, AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_TRIANGULAR }, INT_MIN, INT_MAX, 0, "dither_method"}, +{"triangular_hp" , "triangular dither with high pass" , 0, AV_OPT_TYPE_CONST, {.dbl=SWR_DITHER_TRIANGULAR_HIGHPASS }, INT_MIN, INT_MAX, 0, "dither_method"}, {0} }; |