diff options
author | Philip Langdale <philipl@overt.org> | 2019-12-20 15:34:33 -0800 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2020-01-08 19:20:36 -0800 |
commit | 3ea705767720033754e8d85566460390191ae27d (patch) | |
tree | 6a1e3ecef1311a5eb427e1ed42124f371208e9c5 /libavcodec/version.h | |
parent | 94cdf82d53fe9be260dc6106634a9f9b218211bd (diff) | |
download | ffmpeg-3ea705767720033754e8d85566460390191ae27d.tar.gz |
nvenc: implement flush to help allow an encoder to be re-used
It can be useful to re-use an encoder instance when doing segmented
encodings, and this requires flushing the encoder at the start of
each segment.
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 77da913df0..1a88432460 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 65 -#define LIBAVCODEC_VERSION_MICRO 102 +#define LIBAVCODEC_VERSION_MICRO 103 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |