diff options
author | James Almer <jamrial@gmail.com> | 2021-03-06 12:43:52 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-03-10 20:26:36 -0300 |
commit | d79e0fe65c51491f9bf8a470bbe36fb09f3e1280 (patch) | |
tree | e362a2e54edb1782d876d9d108ac959396750319 /libavcodec/version.h | |
parent | dbd47b7990efb48dd2f8ab2d396a6aff2a98c250 (diff) | |
download | ffmpeg-d79e0fe65c51491f9bf8a470bbe36fb09f3e1280.tar.gz |
avcodec/packet: change side data related public function and struct size types to size_t
av_packet_add_side_data() already defines size as a size_t, so this makes it
consistent across all side data functions
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 169c763e8a..3124ec8061 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -28,7 +28,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 58 -#define LIBAVCODEC_VERSION_MINOR 129 +#define LIBAVCODEC_VERSION_MINOR 130 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |