swr: add swresample_version swresample_configuration and swresample_license

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2011-12-22 03:08:47 +01:00
parent 0f91a57732
commit 4468ad827a
2 changed files with 31 additions and 0 deletions

View File

@ -122,4 +122,19 @@ void swr_compensate(struct SwrContext *s, int sample_delta, int compensation_dis
*/
int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map);
/**
* Return the LIBSWRESAMPLE_VERSION_INT constant.
*/
unsigned swresample_version(void);
/**
* Return the swr build-time configuration.
*/
const char *swresample_configuration(void);
/**
* Return the swr license.
*/
const char *swresample_license(void);
#endif