Skip to content
Snippets Groups Projects
Commit 01f54021 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Add missing headers to pass 'make checkheaders'.

Originally committed as revision 15745 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a9a8c830
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,9 @@ ...@@ -22,6 +22,9 @@
#ifndef AVCODEC_ARMV4L_MATHOPS_H #ifndef AVCODEC_ARMV4L_MATHOPS_H
#define AVCODEC_ARMV4L_MATHOPS_H #define AVCODEC_ARMV4L_MATHOPS_H
#include <stdint.h>
#include "libavutil/common.h"
#ifdef FRAC_BITS #ifdef FRAC_BITS
# define MULL(a, b) \ # define MULL(a, b) \
({ int lo, hi;\ ({ int lo, hi;\
......
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#ifndef AVCODEC_I386_IDCT_XVID_H #ifndef AVCODEC_I386_IDCT_XVID_H
#define AVCODEC_I386_IDCT_XVID_H #define AVCODEC_I386_IDCT_XVID_H
#include <stdint.h>
void ff_idct_xvid_mmx(short *block); void ff_idct_xvid_mmx(short *block);
void ff_idct_xvid_mmx2(short *block); void ff_idct_xvid_mmx2(short *block);
void ff_idct_xvid_sse2(short *block); void ff_idct_xvid_sse2(short *block);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment