diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-04-22 17:53:31 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-04-22 17:53:31 +0000 |
commit | 7b937b3717b7ae022d0c3fadb120cee9abd15f49 (patch) | |
tree | 2a41c1fff43767e9bae49cd0a52d84ca2254a0ba | |
parent | 9fbd6b81c0d54350db3398711d96560c4c9b3a85 (diff) |
macosx compilation fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15241 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/ae.c | 1 | ||||
-rw-r--r-- | libmpcodecs/ae_lame.c | 1 | ||||
-rw-r--r-- | libmpcodecs/ae_lavc.c | 1 | ||||
-rw-r--r-- | libmpcodecs/ae_pcm.c | 1 | ||||
-rw-r--r-- | libmpcodecs/ae_toolame.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/libmpcodecs/ae.c b/libmpcodecs/ae.c index 8749d5e633..dd8984f765 100644 --- a/libmpcodecs/ae.c +++ b/libmpcodecs/ae.c @@ -3,6 +3,7 @@ #include <stdlib.h> #include <inttypes.h> #include <unistd.h> +#include <sys/types.h> #include <math.h> #include "aviheader.h" #include "ms_hdr.h" diff --git a/libmpcodecs/ae_lame.c b/libmpcodecs/ae_lame.c index 186544eee0..73ab91c69c 100644 --- a/libmpcodecs/ae_lame.c +++ b/libmpcodecs/ae_lame.c @@ -3,6 +3,7 @@ #include <inttypes.h> #include <unistd.h> #include <string.h> +#include <sys/types.h> #include "m_option.h" #include "../mp_msg.h" #include "aviheader.h" diff --git a/libmpcodecs/ae_lavc.c b/libmpcodecs/ae_lavc.c index 52df828422..1d03bec916 100644 --- a/libmpcodecs/ae_lavc.c +++ b/libmpcodecs/ae_lavc.c @@ -3,6 +3,7 @@ #include <inttypes.h> #include <unistd.h> #include <string.h> +#include <sys/types.h> #include "m_option.h" #include "../mp_msg.h" #include "aviheader.h" diff --git a/libmpcodecs/ae_pcm.c b/libmpcodecs/ae_pcm.c index 147619060a..1e78bbfb09 100644 --- a/libmpcodecs/ae_pcm.c +++ b/libmpcodecs/ae_pcm.c @@ -3,6 +3,7 @@ #include <inttypes.h> #include <unistd.h> #include <string.h> +#include <sys/types.h> #include "m_option.h" #include "../mp_msg.h" #include "aviheader.h" diff --git a/libmpcodecs/ae_toolame.c b/libmpcodecs/ae_toolame.c index cfcb533e50..eed5c53066 100644 --- a/libmpcodecs/ae_toolame.c +++ b/libmpcodecs/ae_toolame.c @@ -3,6 +3,7 @@ #include <inttypes.h> #include <unistd.h> #include <string.h> +#include <sys/types.h> #include "m_option.h" #include "../mp_msg.h" #include "aviheader.h" |