diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-10-10 12:48:08 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-10-10 20:49:54 +0200 |
commit | f3fc103c6a8ed8e7056052c54508470eede46566 (patch) | |
tree | 4b38a5e5dfff2a33220676440afb5d7464a3de87 /libswresample/swresample.h | |
parent | 07c60684a7502b256b1cded08dcdaec3dcdcc719 (diff) | |
download | ffmpeg-f3fc103c6a8ed8e7056052c54508470eede46566.tar.gz |
doc/resampler, swresample/options: use proper capitalization
Proper names should be capitalized in all user facing API as far as
possible. The option names themselves have not been changed since:
1. We consistently keep option names in lower case.
2. Changing them would break existing scripts.
3. I suspect that we want to be similar to Sox and its relevant options.
The converse is also true: improper names should not be capitalized
generally.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r-- | libswresample/swresample.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index e1617f472f..10eaebc439 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -169,8 +169,8 @@ enum SwrEngine { /** Resampling Filter Types */ enum SwrFilterType { SWR_FILTER_TYPE_CUBIC, /**< Cubic */ - SWR_FILTER_TYPE_BLACKMAN_NUTTALL, /**< Blackman Nuttall Windowed Sinc */ - SWR_FILTER_TYPE_KAISER, /**< Kaiser Windowed Sinc */ + SWR_FILTER_TYPE_BLACKMAN_NUTTALL, /**< Blackman Nuttall windowed sinc */ + SWR_FILTER_TYPE_KAISER, /**< Kaiser windowed sinc */ }; /** |