Macros and function useful to check at compiletime and at runtime which version of libavutil is in use.
More...
|
| | Deprecation Guards |
| | FF_API_* defines may be placed below to indicate public API that will be dropped at a future version bump.
|
| |
|
|
#define | LIBAVUTIL_VERSION_MAJOR 56 |
| |
|
#define | LIBAVUTIL_VERSION_MINOR 14 |
| |
|
#define | LIBAVUTIL_VERSION_MICRO 100 |
| |
| #define | LIBAVUTIL_VERSION_INT |
| |
| #define | LIBAVUTIL_VERSION |
| |
|
#define | LIBAVUTIL_BUILD LIBAVUTIL_VERSION_INT |
| |
|
#define | LIBAVUTIL_IDENT "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION) |
| |
Macros and function useful to check at compiletime and at runtime which version of libavutil is in use.
§ LIBAVUTIL_VERSION
| #define LIBAVUTIL_VERSION |
Value:AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \
LIBAVUTIL_VERSION_MICRO)
§ LIBAVUTIL_VERSION_INT
| #define LIBAVUTIL_VERSION_INT |
Value:AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \
LIBAVUTIL_VERSION_MICRO)
§ av_version_info()
| const char* av_version_info |
( |
void |
| ) |
|
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.