Only special-case absolute DOS paths on systems that support them.

Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ramiro Polla
2008-10-10 16:59:37 +00:00
parent 60e8bc13a9
commit bc574408dc
3 changed files with 16 additions and 1 deletions

View File

@@ -32,6 +32,15 @@
# define lseek(f,p,w) _lseeki64((f), (p), (w))
#endif
static inline int is_dos_path(const char *path)
{
#ifdef HAVE_DOS_PATHS
if (path[0] && path[1] == ':')
return 1;
#endif
return 0;
}
#ifdef __BEOS__
# include <sys/socket.h>
# include <netinet/in.h>