diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-08 12:03:19 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-14 11:28:54 +0200 |
commit | f3746d31f9486bcc266f17738861cc8a5c9c1eb7 (patch) | |
tree | 6bba53d09a60051196b4554984e0f2956966c0c1 | |
parent | 036fff7e43f5a8d608587daa053970b702d424c0 (diff) | |
download | ffmpeg-f3746d31f9486bcc266f17738861cc8a5c9c1eb7.tar.gz |
avutil/opt: add AV_OPT_FLAG_RUNTIME_PARAM flag
-rw-r--r-- | libavfilter/version.h | 2 | ||||
-rw-r--r-- | libavutil/opt.h | 1 | ||||
-rw-r--r-- | 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, \ |