diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 17:09:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 17:09:41 +0000 |
commit | 277c73323733b53dfc8b7288394e5712f440e3eb (patch) | |
tree | a43af67c04c9dd0966667f3b30e5810d5b5bb870 /libavutil/avstring.h | |
parent | 005d9b57ad05acf7e8626467de8774c522182173 (diff) | |
download | ffmpeg-277c73323733b53dfc8b7288394e5712f440e3eb.tar.gz |
Add a function to convert a number to a av_malloced string.
Originally committed as revision 20829 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avstring.h')
-rw-r--r-- | libavutil/avstring.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index d716c3a282..98d5235b65 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -22,6 +22,7 @@ #define AVUTIL_AVSTRING_H #include <stddef.h> +#include "mem.h" /** * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to @@ -95,4 +96,9 @@ size_t av_strlcat(char *dst, const char *src, size_t size); */ size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...); +/** + * Convert a number to a av_malloced string. + */ +char *av_d2str(double d); + #endif /* AVUTIL_AVSTRING_H */ |