summaryrefslogtreecommitdiff
path: root/libswresample/swresample.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-05-26 14:50:02 -0400
committerMichael Niedermayer <michaelni@gmx.at>2012-07-23 19:23:39 +0200
commit7e15df7551cf45ad1d3e39d20fdc8d6c651d4705 (patch)
treeacc7b898177ac5397ad64c0710ebedbb56ae59c2 /libswresample/swresample.h
parenta7ac05ce2f9fd94dad2326eef8110c47cdb8af57 (diff)
swr: resampling: add filter type and Kaiser window beta to AVOptions
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 85a337abbe..73dcae3308 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -53,6 +53,13 @@ enum SwrDitherType {
SWR_DITHER_NB, ///< not part of API/ABI
};
+/** 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 */
+};
+
typedef struct SwrContext SwrContext;
/**