Commit e15e78f3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '1316df7a'

* commit '1316df7a':
  lavu: add an API function to return the Libav version string

Conflicts:
	.gitignore
	Makefile
	cmdutils.c
	doc/APIchanges
	libavutil/avutil.h
	libavutil/utils.c

See: f9112664Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 2778fdbe 1316df7a
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
/ffserver /ffserver
/config.* /config.*
/coverage.info /coverage.info
/avversion.h
/doc/*.1 /doc/*.1
/doc/*.3 /doc/*.3
/doc/*.html /doc/*.html
......
...@@ -175,7 +175,7 @@ clean:: ...@@ -175,7 +175,7 @@ clean::
distclean:: distclean::
$(RM) $(DISTCLEANSUFFIXES) $(RM) $(DISTCLEANSUFFIXES)
$(RM) config.* .config libavutil/avconfig.h .version version.h libavutil/ffversion.h libavcodec/codec_names.h $(RM) config.* .config libavutil/avconfig.h .version avversion.h version.h libavutil/ffversion.h libavcodec/codec_names.h
config: config:
$(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION) $(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION)
......
...@@ -15,8 +15,8 @@ libavutil: 2014-08-09 ...@@ -15,8 +15,8 @@ libavutil: 2014-08-09
API changes, most recent first: API changes, most recent first:
2015-xx-xx - xxxxxx - lavu 53.xx.100 2015-xx-xx - xxxxxxx - lavu 56.xx.0
Add avutil_version_info(). Add av_version_info().
-------- 8< --------- FFmpeg 2.7 was cut here -------- 8< --------- -------- 8< --------- FFmpeg 2.7 was cut here -------- 8< ---------
......
...@@ -171,11 +171,11 @@ ...@@ -171,11 +171,11 @@
unsigned avutil_version(void); unsigned avutil_version(void);
/** /**
* Return an informative version string. This usually the actual release version * Return an informative version string. This usually is the actual release
* number and a git hash. This string has no fixed format and can change any * version number or a git commit description. This string has no fixed format
* time. It should never be parsed by code. * 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. * Return the libavutil build-time configuration.
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include "libavutil/ffversion.h" #include "libavutil/ffversion.h"
const char av_util_ffversion[] = "FFmpeg version " FFMPEG_VERSION; const char av_util_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
const char *avutil_version_info(void) const char *av_version_info(void)
{ {
return FFMPEG_VERSION; return FFMPEG_VERSION;
} }
......
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