Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-07-06 20:53:51 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-07-06 22:58:34 +0400
commitc0d9b026f9111498874e3dacc5ae6a459e2dc99c (patch)
tree5e14efc64de3dc1eb2a8ea0d32f548f51d3ac98e /libswresample/swresample.h
parent0c58388211726497e9cab6ebe797b36c31604f18 (diff)
swresample: group all the option constants in a section in doxy
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index c62028a229..e99929d585 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -102,6 +102,13 @@
#define SWR_CH_MAX 32 ///< Maximum number of channels
#endif
+/**
+ * @name Option constants
+ * These constants are used for the @ref avoptions interface for lswr.
+ * @{
+ *
+ */
+
#define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
//TODO use int resample ?
//long term TODO can we enable this dynamically?
@@ -137,6 +144,10 @@ enum SwrFilterType {
SWR_FILTER_TYPE_KAISER, /**< Kaiser Windowed Sinc */
};
+/**
+ * @}
+ */
+
typedef struct SwrContext SwrContext;
/**