diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-05-05 15:17:37 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-05-15 10:31:55 +0200 |
commit | 70433abf7fbc978b5fa0d06951d61ac18ac335f8 (patch) | |
tree | 7f8bdb5eda69dded2bf470575a70bcfb8b06496c /libavcodec/version.h | |
parent | 78e84c054a2a04edeea25e9ee54d0fb172cd7053 (diff) | |
download | ffmpeg-70433abf7fbc978b5fa0d06951d61ac18ac335f8.tar.gz |
lavc/codec_desc: add a property for codecs that support field coding
Multiple places currently use AVCodecContext.ticks_per_frame > 1 to
identify such codecs, which
* requires a codec context
* requires it to be open
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 8b53586be1..da2264a097 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #include "version_major.h" -#define LIBAVCODEC_VERSION_MINOR 11 +#define LIBAVCODEC_VERSION_MINOR 12 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |