summaryrefslogtreecommitdiff
path: root/libswresample/swresample.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-22 03:08:47 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-12-22 03:08:47 +0100
commit4468ad827a4ed70bb7061162b2f2e883989ee1db (patch)
tree85df30aaf2a91c3de4cbe43d2cfe06c1ca525bd0 /libswresample/swresample.h
parent0f91a577321e063dfeb626c2d74945b271a888e3 (diff)
swr: add swresample_version swresample_configuration and swresample_license
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r--libswresample/swresample.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h
index fad09358d5..c2bbea5c15 100644
--- a/libswresample/swresample.h
+++ b/libswresample/swresample.h
@@ -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