diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-09-25 20:59:35 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-09-30 09:14:04 +0200 |
commit | df9b80d21a25e06992c3a3aa87b5703404942b08 (patch) | |
tree | 76bf3b05cc39e157eefcecea2b14fa9733d1ac09 /libavutil/utils.c | |
parent | b97ccc537d83a4678ea889f01c17f79f87f7f0f4 (diff) | |
download | ffmpeg-df9b80d21a25e06992c3a3aa87b5703404942b08.tar.gz |
lavu: deprecate av_opt_set_int_list() and related infrastructure
It has no more users and is replaced by array-type options.
Diffstat (limited to 'libavutil/utils.c')
-rw-r--r-- | libavutil/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/utils.c b/libavutil/utils.c index 94d247bbee..162a4dee26 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -51,6 +51,7 @@ char av_get_picture_type_char(enum AVPictureType pict_type) } } +#if FF_API_OPT_INT_LIST unsigned av_int_list_length_for_size(unsigned elsize, const void *list, uint64_t term) { @@ -69,6 +70,7 @@ unsigned av_int_list_length_for_size(unsigned elsize, } return i; } +#endif char *av_fourcc_make_string(char *buf, uint32_t fourcc) { |