diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-26 14:50:47 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-26 14:50:55 +0100 |
commit | 0371eaebcd1bdcd94e4c9fccf23969c5f49bb5d0 (patch) | |
tree | 5ceb11ab82b3c988429607bf63300c636f1d5dc5 /libavcodec/x86 | |
parent | 32620691011186a0a3932bba8ddb078ce5312f22 (diff) | |
parent | aba70bb5387f12dfa5e6cd8cb861c9c7e668151f (diff) | |
download | ffmpeg-0371eaebcd1bdcd94e4c9fccf23969c5f49bb5d0.tar.gz |
Merge commit 'aba70bb5387f12dfa5e6cd8cb861c9c7e668151f'
* commit 'aba70bb5387f12dfa5e6cd8cb861c9c7e668151f':
Add missing headers to make template files compile (more) standalone
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/dsputil_qns_template.c | 6 | ||||
-rw-r--r-- | libavcodec/x86/hpeldsp_rnd_template.c | 3 | ||||
-rw-r--r-- | libavcodec/x86/mpegvideoenc_template.c | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/libavcodec/x86/dsputil_qns_template.c b/libavcodec/x86/dsputil_qns_template.c index c6d4124e20..ebaad252f4 100644 --- a/libavcodec/x86/dsputil_qns_template.c +++ b/libavcodec/x86/dsputil_qns_template.c @@ -22,6 +22,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <assert.h> +#include <stdint.h> + +#include "libavutil/common.h" +#include "libavutil/x86/asm.h" + #include "inline_asm.h" #define MAX_ABS (512 >> (SCALE_OFFSET>0 ? SCALE_OFFSET : 0)) diff --git a/libavcodec/x86/hpeldsp_rnd_template.c b/libavcodec/x86/hpeldsp_rnd_template.c index 24e04a8f22..c8a68fdf56 100644 --- a/libavcodec/x86/hpeldsp_rnd_template.c +++ b/libavcodec/x86/hpeldsp_rnd_template.c @@ -24,6 +24,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stddef.h> +#include <stdint.h> + // put_pixels static void DEF(put, pixels8_x2)(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h) { diff --git a/libavcodec/x86/mpegvideoenc_template.c b/libavcodec/x86/mpegvideoenc_template.c index d68f9e2c8c..76a5c5a154 100644 --- a/libavcodec/x86/mpegvideoenc_template.c +++ b/libavcodec/x86/mpegvideoenc_template.c @@ -20,6 +20,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stdint.h> + +#include "libavutil/internal.h" +#include "libavutil/x86/asm.h" +#include "libavcodec/mpegvideo.h" + #undef MMREG_WIDTH #undef MM #undef MOVQ |