diff options
author | Martin Storsjö <martin@martin.st> | 2023-12-14 14:45:27 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2023-12-17 23:47:04 +0200 |
commit | 8d24a28d066ddd0f865a76860f19ef71fd0dcc24 (patch) | |
tree | 32f970bfa435185074c959f94312ff389e35d005 /libavutil/version.h | |
parent | d7ac7101ee8c70a253f7caf400d9ae3870880d7f (diff) | |
download | ffmpeg-8d24a28d066ddd0f865a76860f19ef71fd0dcc24.tar.gz |
riscv: Tweak names of cpu flags, print flags in libavutil/tests/cpu
The names of the cpu flags, when parsed from a string with
av_parse_cpu_caps, are parsed by the libavutil eval functions. These
interpret dashes as subtractions. Therefore, these previous cpu flag
names haven't been possible to set.
Use the official names for these extensions, as the previous ad-hoc
names wasn't parseable.
libavutil/tests/cpu tests that the cpu flags can be set, and prints
the detected flags.
Acked-by: Rémi Denis-Courmont <remi@remlab.net>
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index 0684996bf2..dcb39764a5 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -79,7 +79,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 58 -#define LIBAVUTIL_VERSION_MINOR 33 +#define LIBAVUTIL_VERSION_MINOR 34 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ |