Add missing #includes that are required for things used in the header.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27095 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-06-17 09:09:36 +00:00
parent a1e989e288
commit bc9ab4990b
2 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,9 @@
#ifndef MPLAYER_AVIHEADER_H
#define MPLAYER_AVIHEADER_H
//#include "config.h" /* get correct definition WORDS_BIGENDIAN */
#include <sys/types.h>
#include <stdint.h>
#include "config.h" /* get correct definition of WORDS_BIGENDIAN */
#include "libavutil/common.h"
#include "mpbswap.h"

View File

@ -1,6 +1,7 @@
#ifndef MPLAYER_DEMUXER_H
#define MPLAYER_DEMUXER_H
#include <sys/types.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>