diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-04-16 00:18:35 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-04-16 00:18:35 +0000 |
commit | 1d0821178b1c27e35595f72bd9adda5945c7be8b (patch) | |
tree | 217e2a8eb9c63b36c22f90486752b09fc9aa00ea /src/libffmpeg/libavcodec/os_support.h | |
parent | ed5ec90442b4dda3918372b43072205fb4ea6167 (diff) | |
download | xine-lib-1d0821178b1c27e35595f72bd9adda5945c7be8b.tar.gz xine-lib-1d0821178b1c27e35595f72bd9adda5945c7be8b.tar.bz2 |
ffmpeg update, add new files/decoders, use our fastmemcpy
tested ok with usual files (wmv7, mpeg4, divx, svq1...)
CVS patchset: 4618
CVS date: 2003/04/16 00:18:35
Diffstat (limited to 'src/libffmpeg/libavcodec/os_support.h')
-rw-r--r-- | src/libffmpeg/libavcodec/os_support.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/os_support.h b/src/libffmpeg/libavcodec/os_support.h index 879bc470d..93930f03b 100644 --- a/src/libffmpeg/libavcodec/os_support.h +++ b/src/libffmpeg/libavcodec/os_support.h @@ -11,6 +11,7 @@ */ #ifdef __MINGW32__ +# undef DATADIR /* clashes with /usr/include/w32api/objidl.h */ # include <windows.h> # define usleep(t) Sleep((t) / 1000) #endif @@ -29,4 +30,8 @@ static inline float floorf(float f) { return floor(f); } static inline int strcasecmp(const char* s1, const char* s2) { return stricmp(s1,s2); } #endif +#if defined(CONFIG_SUNOS) +static inline float floorf(float f) { return floor(f); } +#endif + #endif /* _OS_SUPPORT_H */ |