diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-26 14:50:02 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-07-08 15:22:11 -0400 |
commit | 372647aed04b89def4e73ae29df0fef60a2f1930 (patch) | |
tree | 797a42295e77f7dfb33d5c5454a046713d053a1f /libavresample/avresample.h | |
parent | 8ca08066fc813c48722e9c5a79fcd58e725cc80f (diff) | |
download | ffmpeg-372647aed04b89def4e73ae29df0fef60a2f1930.tar.gz |
lavr: resampling: add filter type and Kaiser window beta to AVOptions
Diffstat (limited to 'libavresample/avresample.h')
-rw-r--r-- | libavresample/avresample.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavresample/avresample.h b/libavresample/avresample.h index 002bec21fb..b93aba5d73 100644 --- a/libavresample/avresample.h +++ b/libavresample/avresample.h @@ -45,6 +45,13 @@ enum AVMixCoeffType { AV_MIX_COEFF_TYPE_NB, /** Number of coeff types. Not part of ABI */ }; +/** Resampling Filter Types */ +enum AVResampleFilterType { + AV_RESAMPLE_FILTER_TYPE_CUBIC, /**< Cubic */ + AV_RESAMPLE_FILTER_TYPE_BLACKMAN_NUTTALL, /**< Blackman Nuttall Windowed Sinc */ + AV_RESAMPLE_FILTER_TYPE_KAISER, /**< Kaiser Windowed Sinc */ +}; + /** * Return the LIBAVRESAMPLE_VERSION_INT constant. */ |