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>
This commit is contained in:
Timothy Gu 2014-07-06 09:53:51 -07:00 committed by Michael Niedermayer
parent 0c58388211
commit c0d9b026f9
1 changed files with 11 additions and 0 deletions

View File

@ -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;
/**