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.
This commit is contained in:
Nicolas George
2019-12-26 19:32:23 +01:00
parent 412d63fe72
commit 06f2651204
5 changed files with 18 additions and 0 deletions

View File

@@ -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"