diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-08-07 19:46:28 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-08-07 19:46:28 +0000 |
commit | 4b4e6ae115219bac7488463bfd74f2ca3faf031d (patch) | |
tree | 41ac133c9e1eb9b686ffe3d08c34fbeb15b04a18 /src/libffmpeg/libavcodec/common.h | |
parent | a56d88fc434e5ee124867b1af13d6398ce5e9a5a (diff) | |
download | xine-lib-4b4e6ae115219bac7488463bfd74f2ca3faf031d.tar.gz xine-lib-4b4e6ae115219bac7488463bfd74f2ca3faf031d.tar.bz2 |
- sync with ffmpeg cvs
- apply Zdenek Kabelac patches to enable -fpic compiling (why this stuff isn't in
ffmpeg cvs?)
CVS patchset: 2402
CVS date: 2002/08/07 19:46:28
Diffstat (limited to 'src/libffmpeg/libavcodec/common.h')
-rw-r--r-- | src/libffmpeg/libavcodec/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libffmpeg/libavcodec/common.h b/src/libffmpeg/libavcodec/common.h index 93b91d3e8..8cc781edb 100644 --- a/src/libffmpeg/libavcodec/common.h +++ b/src/libffmpeg/libavcodec/common.h @@ -22,7 +22,11 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#ifndef __BEOS__ #include <errno.h> +#else +#include "berrno.h" +#endif #include <math.h> #ifndef ENODATA @@ -105,10 +109,6 @@ typedef signed long long INT64; #ifdef HAVE_AV_CONFIG_H -#ifdef __FreeBSD__ -#include <sys/param.h> -#endif - #ifndef INT64_C #define INT64_C(c) (c ## LL) #define UINT64_C(c) (c ## ULL) |