aboutsummaryrefslogtreecommitdiffstats
path: root/libavutil/avstring.c
Commit message (Collapse)AuthorAgeFilesLines
...
* | Replace all strcasecmp/strncasecmp usages.Reimar Döffinger2011-11-031-0/+27
| | | | | | | | | | | | | | | | | | | | All current usages of it are incompatible with localization. For example strcasecmp("i", "I") != 0 is possible, but would break many of the places where it is used. Instead use our own implementations that always treat the data as ASCII. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* | lavu: add av_strtok()Stefano Sabatini2011-10-181-0/+29
| | | | | | | | | | | | The function strtok_r() is part of the POSIX.1 specification, but is not available on some platforms. We provide an internal implementation, so we do not need to rely on a platform implementation.
* | avstring: fix return discards qualifiers from pointer target type.Michael Niedermayer2011-10-171-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | av_string: add av_asprintf().Clément Bœsch2011-09-041-0/+26
|/
* Move av_get_token() from libavfilter to libavutil.Stefano Sabatini2010-09-271-0/+88
| | | | Originally committed as revision 25225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_stristr() functionMåns Rullgård2010-03-061-0/+13
| | | | | | This is a case-insensitive version of strstr(). Originally committed as revision 22251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Place { of the function where indent -kr wants it.Michael Niedermayer2009-12-141-1/+2
| | | | | | Also more consistent with the rest of the code. Originally committed as revision 20851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move #include where it belongs.Michael Niedermayer2009-12-131-0/+1
| | | | | | This as a sideeffect fixes the linking failure of ffplay. Originally committed as revision 20832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a function to convert a number to a av_malloced string.Michael Niedermayer2009-12-131-0/+6
| | | | Originally committed as revision 20829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename string.c to avstring.c so that the name of header and C file match.Diego Biurrun2009-01-291-0/+78
Originally committed as revision 16853 to svn://svn.ffmpeg.org/ffmpeg/trunk