summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2001-08-15 22:29:44 +0000
committerFabrice Bellard <fabrice@bellard.org>2001-08-15 22:29:44 +0000
commitdaf8e9557d55d13d45b83329db59f711fb9c7251 (patch)
tree448fb3e0b81e49abb4e24b31814cf1954fd30519 /ffmpeg.c
parent1705679ee64038011224b3cb5fc582ffa5699557 (diff)
added win32 cross compile support
Originally committed as revision 107 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 9f97111f79..b9812b4b92 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -16,12 +16,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <errno.h>
+#define HAVE_AV_CONFIG_H
+#include "avformat.h"
+
#ifndef CONFIG_WIN32
-#include "config.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
@@ -33,7 +31,6 @@
#include <ctype.h>
#endif
-#include "avformat.h"
#define MAXINT64 INT64_C(0x7fffffffffffffff)