# HG changeset patch # User mru # Date 1268079471 0 # Node ID 9f2381fb271bd9d5a3c0b12c2d98df0afa315c89 # Parent 7030ce3879d819b56bb40bc4d18990297ddc0b9a Add missing includes in bfin and sh4 files diff -r 7030ce3879d8 -r 9f2381fb271b bfin/dsputil_bfin.h --- a/bfin/dsputil_bfin.h Mon Mar 08 19:59:54 2010 +0000 +++ b/bfin/dsputil_bfin.h Mon Mar 08 20:17:51 2010 +0000 @@ -24,6 +24,9 @@ #ifndef AVCODEC_BFIN_DSPUTIL_BFIN_H #define AVCODEC_BFIN_DSPUTIL_BFIN_H +#include "config.h" +#include "libavcodec/dsputil.h" + #if defined(__FDPIC__) && CONFIG_SRAM #define attribute_l1_text __attribute__ ((l1_text)) #define attribute_l1_data_b __attribute__((l1_data_B)) diff -r 7030ce3879d8 -r 9f2381fb271b sh4/dsputil_sh4.h --- a/sh4/dsputil_sh4.h Mon Mar 08 19:59:54 2010 +0000 +++ b/sh4/dsputil_sh4.h Mon Mar 08 20:17:51 2010 +0000 @@ -19,6 +19,9 @@ #ifndef AVCODEC_SH4_DSPUTIL_SH4_H #define AVCODEC_SH4_DSPUTIL_SH4_H +#include "libavcodec/avcodec.h" +#include "libavcodec/dsputil.h" + void idct_sh4(DCTELEM *block); void dsputil_init_align(DSPContext* c, AVCodecContext *avctx);