diff options
author | Nicolas George <george@nsup.org> | 2019-12-26 19:32:23 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2020-08-21 11:01:39 +0200 |
commit | 06f26512046de1a84e045d219e7fa211c37ad0e4 (patch) | |
tree | 711ef7a0823031d953c092095dc207a38b083769 /libavutil/avstring.c | |
parent | 412d63fe72d4398d0ffd271a9bd30c6ac9fc0deb (diff) | |
download | ffmpeg-06f26512046de1a84e045d219e7fa211c37ad0e4.tar.gz |
lavu/avstring: deprecate av_d2str().
It is no longer used in our code base and does not seem
to be used much in other projects.
Diffstat (limited to 'libavutil/avstring.c')
-rw-r--r-- | libavutil/avstring.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/avstring.c b/libavutil/avstring.c index f4b8ed2b45..e33d4aac51 100644 --- a/libavutil/avstring.c +++ b/libavutil/avstring.c @@ -136,6 +136,7 @@ end: return p; } +#if FF_API_D2STR char *av_d2str(double d) { char *str = av_malloc(16); @@ -143,6 +144,7 @@ char *av_d2str(double d) snprintf(str, 16, "%f", d); return str; } +#endif #define WHITESPACES " \n\t\r" |