summaryrefslogtreecommitdiff
path: root/libswresample/swresample.h
diff options
context:
space:
mode:
authorRob Sykes <aquegg@yahoo.co.uk>2012-12-11 18:36:58 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-11 22:04:00 +0100
commit5a5d70748c5d606b055fedce30a84e31790d6d15 (patch)
tree4996c759f4f30c590611424f3f0a547fa09ff35a /libswresample/swresample.h
parente8e575633faf19711910cf9caf59f7db300a9ccd (diff)
swr: Add API to make resample engine selectable.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index 8d9f77d3c8..356fb61488 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -114,6 +114,12 @@ enum SwrDitherType {
SWR_DITHER_NB, ///< not part of API/ABI
};
+/** Resampling Engines */
+enum SwrEngine {
+ SWR_ENGINE_SWR, /**< SW Resampler */
+ SWR_ENGINE_NB, ///< not part of API/ABI
+};
+
/** Resampling Filter Types */
enum SwrFilterType {
SWR_FILTER_TYPE_CUBIC, /**< Cubic */