Replace many includes of libavutil/common.h with what is actually needed

This reduces the number of false dependencies on header files and
speeds up compilation.

Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-03-09 17:39:19 +00:00
parent 19fcd66c31
commit 2ed6f39944
28 changed files with 32 additions and 28 deletions

View File

@ -26,6 +26,8 @@
* FFT/IFFT transforms.
*/
#include <stdlib.h>
#include <string.h>
#include "libavutil/mathematics.h"
#include "fft.h"

View File

@ -19,6 +19,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <string.h>
#include "libavutil/common.h"
#include "libavutil/mathematics.h"
#include "fft.h"

View File

@ -18,6 +18,7 @@
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdlib.h>
#include <math.h>
#include "libavutil/mathematics.h"
#include "fft.h"

View File

@ -21,7 +21,7 @@
* 3. This notice may not be removed or altered from any source distribution.
*/
#include "common.h"
#include "config.h"
#include "adler32.h"
#define BASE 65521L /* largest prime smaller than 65536 */
@ -53,6 +53,7 @@ unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigne
#ifdef TEST
#include "log.h"
#include "timer.h"
#define LEN 7001
volatile int checksum;
int main(void){

View File

@ -22,7 +22,7 @@
#define AVUTIL_ADLER32_H
#include <stdint.h>
#include "common.h"
#include "attributes.h"
unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
unsigned int len) av_pure;

View File

@ -21,7 +21,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#ifdef __ARMCC_VERSION

View File

@ -22,7 +22,7 @@
#define AVUTIL_ARM_INTMATH_H
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#if HAVE_INLINE_ASM

View File

@ -21,7 +21,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#if HAVE_INLINE_ASM

View File

@ -28,7 +28,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#define bswap_32 bswap_32
static av_always_inline av_const uint32_t bswap_32(uint32_t x)

View File

@ -28,7 +28,7 @@
#include <stdint.h>
#include "config.h"
#include "common.h"
#include "attributes.h"
#if ARCH_ARM
# include "arm/bswap.h"

View File

@ -19,6 +19,7 @@
*/
#include "config.h"
#include "common.h"
#include "bswap.h"
#include "crc.h"

View File

@ -23,7 +23,7 @@
#include <stdint.h>
#include <stddef.h>
#include "common.h"
#include "attributes.h"
typedef uint32_t AVCRC;

View File

@ -25,8 +25,6 @@
#define AVUTIL_FIFO_H
#include <stdint.h>
#include "avutil.h"
#include "common.h"
typedef struct AVFifoBuffer {
uint8_t *buffer;

View File

@ -35,8 +35,7 @@
#include <stddef.h>
#include <assert.h>
#include "config.h"
#include "common.h"
#include "mem.h"
#include "attributes.h"
#include "timer.h"
#ifndef attribute_align_arg

View File

@ -25,7 +25,8 @@
* portable IEEE float/double read/write functions
*/
#include "common.h"
#include <stdint.h>
#include <math.h>
#include "intfloat_readwrite.h"
double av_int2dbl(int64_t v){

View File

@ -22,7 +22,7 @@
#define AVUTIL_INTFLOAT_READWRITE_H
#include <stdint.h>
#include "common.h"
#include "attributes.h"
/* IEEE 80 bits extended float */
typedef struct AVExtFloat {

View File

@ -23,6 +23,7 @@
#include "lfg.h"
#include "md5.h"
#include "intreadwrite.h"
#include "attributes.h"
void av_cold av_lfg_init(AVLFG *c, unsigned int seed){
uint8_t tmp[16]={0};
@ -56,7 +57,7 @@ void av_bmg_get(AVLFG *lfg, double out[2])
#ifdef TEST
#include "log.h"
#include "common.h"
#include "timer.h"
int main(void)
{

View File

@ -24,8 +24,8 @@
*/
#include <assert.h>
#include "avutil.h"
#include "common.h"
#include <stdint.h>
#include <limits.h>
#include "mathematics.h"
const uint8_t ff_sqrt_tab[256]={

View File

@ -23,7 +23,7 @@
#include <stdint.h>
#include <math.h>
#include "common.h"
#include "attributes.h"
#include "rational.h"
#ifndef M_E

View File

@ -163,6 +163,7 @@ void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len){
#ifdef TEST
#include <stdio.h>
#include <inttypes.h>
#undef printf
int main(void){
uint64_t md5val;

View File

@ -26,7 +26,7 @@
#ifndef AVUTIL_MEM_H
#define AVUTIL_MEM_H
#include "common.h"
#include "attributes.h"
#if defined(__ICC) || defined(__SUNPRO_C)
#define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v

View File

@ -29,7 +29,7 @@
#define AVUTIL_RATIONAL_H
#include <stdint.h>
#include "common.h"
#include "attributes.h"
/**
* rational number numerator/denominator

View File

@ -26,7 +26,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#define bswap_16 bswap_16
static av_always_inline av_const uint16_t bswap_16(uint16_t x)

View File

@ -21,8 +21,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "common.h"
#include "avutil.h"
#include <string.h>
#include "bswap.h"
#include "sha.h"
#include "sha1.h"

View File

@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "common.h"
#include "log.h"
#include "tree.h"

View File

@ -26,7 +26,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#define bswap_16 bswap_16
static av_always_inline av_const uint16_t bswap_16(uint16_t x)

View File

@ -21,8 +21,6 @@
#ifndef AVUTIL_X86_INTMATH_H
#define AVUTIL_X86_INTMATH_H
#include "libavutil/common.h"
#define FASTDIV(a,b) \
({\
int ret, dmy;\

View File

@ -23,7 +23,7 @@
#include <stdint.h>
#include "config.h"
#include "libavutil/common.h"
#include "libavutil/attributes.h"
#if HAVE_MMX