From bc574408dc011943b82de012451f95266bed9989 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Fri, 10 Oct 2008 16:59:37 +0000 Subject: Only special-case absolute DOS paths on systems that support them. Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/os_support.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libavformat/os_support.h') diff --git a/libavformat/os_support.h b/libavformat/os_support.h index e547085dff..2fd3112b7e 100644 --- a/libavformat/os_support.h +++ b/libavformat/os_support.h @@ -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 # include -- cgit v1.2.3