summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/common.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-08-07 19:46:28 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-08-07 19:46:28 +0000
commit4b4e6ae115219bac7488463bfd74f2ca3faf031d (patch)
tree41ac133c9e1eb9b686ffe3d08c34fbeb15b04a18 /src/libffmpeg/libavcodec/common.h
parenta56d88fc434e5ee124867b1af13d6398ce5e9a5a (diff)
downloadxine-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.h8
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)