diff options
author | James Almer <jamrial@gmail.com> | 2018-07-14 11:59:59 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-10-03 20:48:49 -0300 |
commit | ebc3d04b8df4e11b1343090fed1014832d5cf46d (patch) | |
tree | 8939b101e97977192ccb6d07a1c37f533c28f22f /libavcodec/version.h | |
parent | af2acbd23f8553b4030974dc9161b877f8e17340 (diff) | |
download | ffmpeg-ebc3d04b8df4e11b1343090fed1014832d5cf46d.tar.gz |
avcodec: add an AV1 parser
Simple parser to set keyframes, frame type, structure, width, height, and pixel
format, plus stream profile and level.
Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 7a9484b9a1..97d134851f 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -28,8 +28,8 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 58 -#define LIBAVCODEC_VERSION_MINOR 31 -#define LIBAVCODEC_VERSION_MICRO 102 +#define LIBAVCODEC_VERSION_MINOR 32 +#define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |