summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/avutil.h8
-rw-r--r--libavutil/utils.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/libavutil/avutil.h b/libavutil/avutil.h
index eec2d559a7..187100bc8d 100644
--- a/libavutil/avutil.h
+++ b/libavutil/avutil.h
@@ -171,11 +171,11 @@
unsigned avutil_version(void);
/**
- * Return an informative version string. This usually the actual release version
- * number and a git hash. This string has no fixed format and can change any
- * time. It should never be parsed by code.
+ * Return an informative version string. This usually is the actual release
+ * version number or a git commit description. This string has no fixed format
+ * and can change any time. It should never be parsed by code.
*/
-const char *avutil_version_info(void);
+const char *av_version_info(void);
/**
* Return the libavutil build-time configuration.
diff --git a/libavutil/utils.c b/libavutil/utils.c
index 07bb3801c9..2e3b1e03b4 100644
--- a/libavutil/utils.c
+++ b/libavutil/utils.c
@@ -30,7 +30,7 @@
#include "libavutil/ffversion.h"
const char av_util_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
-const char *avutil_version_info(void)
+const char *av_version_info(void)
{
return FFMPEG_VERSION;
}