diff options
author | James Almer <jamrial@gmail.com> | 2023-01-11 10:37:58 -0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-02-09 15:35:14 +0100 |
commit | 30e1e7e0f324d7bf66b3b8583a3e49fd3cd101b2 (patch) | |
tree | fab03699d47933580b75b39bf9f1c99a2af1a9c2 /libavutil/avstring.h | |
parent | 4fcd6c82cf45160880be35e6c097708323d9d93f (diff) | |
download | ffmpeg-30e1e7e0f324d7bf66b3b8583a3e49fd3cd101b2.tar.gz |
avutil: remove FF_API_D2STR
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/avstring.h')
-rw-r--r-- | libavutil/avstring.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 74aa4cd0e4..e260263763 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -157,15 +157,6 @@ static inline size_t av_strnlen(const char *s, size_t len) */ char *av_asprintf(const char *fmt, ...) av_printf_format(1, 2); -#if FF_API_D2STR -/** - * Convert a number to an av_malloced string. - * @deprecated use av_asprintf() with "%f" or a more specific format - */ -attribute_deprecated -char *av_d2str(double d); -#endif - /** * Unescape the given string until a non escaped terminating char, * and return the token corresponding to the unescaped string. |