Add missing #includes to make headers self-contained.

This fixes 'make checkheaders'.
This commit is contained in:
Diego Biurrun 2011-06-04 16:58:31 +02:00
parent 67ace7f047
commit 8d459acc10
6 changed files with 8 additions and 2 deletions

View File

@ -23,6 +23,7 @@
#define AVCODEC_MATHOPS_H
#include "libavutil/common.h"
#include "config.h"
#if ARCH_ARM
# include "arm/mathops.h"

View File

@ -34,6 +34,7 @@
#include "get_bits.h"
#include "dsputil.h"
#include "mpegaudio.h"
#include "mpegaudiodsp.h"
#define BANDS 32
#define SAMPLES_PER_BAND 36

View File

@ -27,7 +27,9 @@
#ifndef AVCODEC_MPEGAUDIODECTAB_H
#define AVCODEC_MPEGAUDIODECTAB_H
#include <stddef.h>
#include <stdint.h>
#include "mpegaudio.h"
/*******************************************************/

View File

@ -34,6 +34,7 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include "mathops.h"
#include "config.h"
//#define ALT_BITSTREAM_WRITER
//#define ALIGNED_BITSTREAM_WRITER

View File

@ -26,8 +26,6 @@
#include <inttypes.h>
#include <stdio.h>
#include "libavutil/common.h"
#define WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, ...)\
void write_##type##_array(const type *data, int len)\
{\

View File

@ -21,7 +21,10 @@
#ifndef AVFORMAT_NETWORK_H
#define AVFORMAT_NETWORK_H
#include <errno.h>
#include "config.h"
#include "libavutil/error.h"
#include "os_support.h"
#if HAVE_WINSOCK2_H