From f7d78f3654f8181fb889000dfc2b9a91ca85e418 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 24 Jun 2007 11:27:12 +0000 Subject: replace the uses of old string functions that Reimar missed Originally committed as revision 9406 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavformat/file.c') diff --git a/libavformat/file.c b/libavformat/file.c index 3caf80a61b..7acf446133 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "avformat.h" +#include "avstring.h" #include #include #include @@ -31,7 +32,7 @@ static int file_open(URLContext *h, const char *filename, int flags) int access; int fd; - strstart(filename, "file:", &filename); + av_strstart(filename, "file:", &filename); if (flags & URL_RDWR) { access = O_CREAT | O_TRUNC | O_RDWR; -- cgit v1.2.3