[FFmpeg-cvslog] avutil/opt: add AV_OPT_FLAG_RUNTIME_PARAM flag
Paul B Mahol
git at videolan.org
Mon Oct 14 12:41:55 EEST 2019
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Oct 8 12:03:19 2019 +0200| [f3746d31f9486bcc266f17738861cc8a5c9c1eb7] | committer: Paul B Mahol
avutil/opt: add AV_OPT_FLAG_RUNTIME_PARAM flag
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f3746d31f9486bcc266f17738861cc8a5c9c1eb7
---
libavfilter/version.h | 2 +-
libavutil/opt.h | 1 +
libavutil/version.h | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/libavfilter/version.h b/libavfilter/version.h
index e9b75ee6b2..901fae095b 100644
--- a/libavfilter/version.h
+++ b/libavfilter/version.h
@@ -31,7 +31,7 @@
#define LIBAVFILTER_VERSION_MAJOR 7
#define LIBAVFILTER_VERSION_MINOR 62
-#define LIBAVFILTER_VERSION_MICRO 100
+#define LIBAVFILTER_VERSION_MICRO 101
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
diff --git a/libavutil/opt.h b/libavutil/opt.h
index 39f4a8dda0..bc98ab104d 100644
--- a/libavutil/opt.h
+++ b/libavutil/opt.h
@@ -288,6 +288,7 @@ typedef struct AVOption {
*/
#define AV_OPT_FLAG_READONLY 128
#define AV_OPT_FLAG_BSF_PARAM (1<<8) ///< a generic parameter which can be set by the user for bit stream filtering
+#define AV_OPT_FLAG_RUNTIME_PARAM (1<<15) ///< a generic parameter which can be set by the user at runtime
#define AV_OPT_FLAG_FILTERING_PARAM (1<<16) ///< a generic parameter which can be set by the user for filtering
#define AV_OPT_FLAG_DEPRECATED (1<<17) ///< set if option is deprecated, users should refer to AVOption.help text for more information
//FIXME think about enc-audio, ... style flags
diff --git a/libavutil/version.h b/libavutil/version.h
index 3395769857..27d663baf1 100644
--- a/libavutil/version.h
+++ b/libavutil/version.h
@@ -80,7 +80,7 @@
#define LIBAVUTIL_VERSION_MAJOR 56
#define LIBAVUTIL_VERSION_MINOR 35
-#define LIBAVUTIL_VERSION_MICRO 100
+#define LIBAVUTIL_VERSION_MICRO 101
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
LIBAVUTIL_VERSION_MINOR, \
More information about the ffmpeg-cvslog
mailing list