Diego Biurrun <[email protected]> writes: > --- > libavcodec/fft-internal.h | 2 ++ > libavformat/network.h | 3 +++ > libswscale/x86/swscale_template.h | 5 ++++- > 3 files changed, 9 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/fft-internal.h b/libavcodec/fft-internal.h > index d30571b..b997887 100644 > --- a/libavcodec/fft-internal.h > +++ b/libavcodec/fft-internal.h > @@ -19,6 +19,8 @@ > #ifndef AVCODEC_FFT_INTERNAL_H > #define AVCODEC_FFT_INTERNAL_H > > +#include "fft.h" > + > #if CONFIG_FFT_FLOAT
Are you sure this doesn't break something? That header is one of those slightly magical ones. > diff --git a/libavformat/network.h b/libavformat/network.h > index 881384c..da44be0 100644 > --- a/libavformat/network.h > +++ b/libavformat/network.h > @@ -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" Probably OK. > diff --git a/libswscale/x86/swscale_template.h > b/libswscale/x86/swscale_template.h > index 320e563..dcf11cc 100644 > --- a/libswscale/x86/swscale_template.h > +++ b/libswscale/x86/swscale_template.h > @@ -18,10 +18,13 @@ > * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 > USA > */ > > - > #ifndef SWSCALE_X86_SWSCALE_TEMPLATE_H > #define SWSCALE_X86_SWSCALE_TEMPLATE_H Unrelated. > +#include <stdint.h> > + > +#include "libavutil/mem.h" > + Probably OK, but the _template files really shouldn't be tested for standalone build. It doesn't make sense. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
