diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-08 10:09:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-08 10:09:30 +0000 |
commit | 4f78608632306ae4f7678b1c8aaf2e2442625310 (patch) | |
tree | 5606ad0664cafd88c79b7770b6f604085d4c8bd6 | |
parent | 9aed96128f0fff33eaafe69095dfb4e94c97686a (diff) | |
download | ffmpeg-4f78608632306ae4f7678b1c8aaf2e2442625310.tar.gz |
#include required headers directly.
Originally committed as revision 13078 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavdevice/audio.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavdevice/audio.c b/libavdevice/audio.c index 53c65116d1..bb76f0c0d1 100644 --- a/libavdevice/audio.c +++ b/libavdevice/audio.c @@ -18,11 +18,13 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "avformat.h" +#include "config.h" #include <stdlib.h> #include <stdio.h> +#include <stdint.h> #include <string.h> +#include <errno.h> #ifdef HAVE_SOUNDCARD_H #include <soundcard.h> #else @@ -33,6 +35,10 @@ #include <sys/ioctl.h> #include <sys/time.h> +#include "log.h" +#include "avcodec.h" +#include "avformat.h" + #define AUDIO_BLOCK_SIZE 4096 typedef struct { |