From 372647aed04b89def4e73ae29df0fef60a2f1930 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Sat, 26 May 2012 14:50:02 -0400 Subject: lavr: resampling: add filter type and Kaiser window beta to AVOptions --- libavresample/avresample.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavresample/avresample.h') 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. */ -- cgit v1.2.3