diff --git a/libavformat/file.c b/libavformat/file.c index 8206ff92554da7ffc97496df5d77b7313d8b680e..7390962864fa53f518079b598c5c7a4e5d93f057 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -35,6 +35,8 @@ static int file_open(URLContext *h, const char *filename, int flags) int access; int fd; + strstart(filename, "file:", &filename); + if (flags & URL_WRONLY) { access = O_CREAT | O_TRUNC | O_WRONLY; } else {