diff options
author | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2012-09-07 09:45:09 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-09 20:23:14 +0200 |
commit | 16c03f2e910a08a90118cc584c8b6a574eb96cd0 (patch) | |
tree | 40e8295d2a87ffb7acbe6cce80495ef56d031639 | |
parent | 44f83930d91fdb249f8b92198d1b4c2ae12d5c48 (diff) | |
download | ffmpeg-streaming-16c03f2e910a08a90118cc584c8b6a574eb96cd0.zip ffmpeg-streaming-16c03f2e910a08a90118cc584c8b6a574eb96cd0.tar.gz |
file: Add S_ISFIFO compatability macro
Not all systems have S_ISFIFO.
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/file.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/file.c b/libavformat/file.c index 4e8129e..288275f 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -33,6 +33,14 @@ #include "os_support.h" #include "url.h" +/* Some systems may not have S_ISFIFO */ +#ifndef S_ISFIFO +# ifdef S_IFIFO +# define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) +# else +# define S_ISFIFO(m) 0 +# endif +#endif /* standard file protocol */ |