Commit 81f47e27 authored by Timothy Gu's avatar Timothy Gu Committed by Michael Niedermayer

swresample: better doxy for configuration-returning functions

Signed-off-by: 's avatarTimothy Gu <timothygu99@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 2711b470
...@@ -352,17 +352,26 @@ int swr_inject_silence(struct SwrContext *s, int count); ...@@ -352,17 +352,26 @@ int swr_inject_silence(struct SwrContext *s, int count);
int64_t swr_get_delay(struct SwrContext *s, int64_t base); int64_t swr_get_delay(struct SwrContext *s, int64_t base);
/** /**
* Return the LIBSWRESAMPLE_VERSION_INT constant. * Return the @ref LIBSWRESAMPLE_VERSION_INT constant.
*
* This is useful to check if the build-time libswresample has the same version
* as the run-time one.
*
* @returns the unsigned int-typed version
*/ */
unsigned swresample_version(void); unsigned swresample_version(void);
/** /**
* Return the swr build-time configuration. * Return the swr build-time configuration.
*
* @returns the build-time @c ./configure flags
*/ */
const char *swresample_configuration(void); const char *swresample_configuration(void);
/** /**
* Return the swr license. * Return the swr license.
*
* @returns the license of libswresample, determined at build-time
*/ */
const char *swresample_license(void); const char *swresample_license(void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment