aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/armv4l/dsputil_iwmmxt.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-10-27 14:35:58 +0000
committerDiego Pettenò <flameeyes@gmail.com>2008-10-27 14:35:58 +0000
commit782fc0c36f933048372554aa3c4a28851b929a8c (patch)
tree5d27db213cac9b7cf885e2cee2cea47475f9411e /libavcodec/armv4l/dsputil_iwmmxt.c
parent485ec4f11e15dcbb74e2829373e332d3f37a6488 (diff)
downloadffmpeg-782fc0c36f933048372554aa3c4a28851b929a8c.tar.gz
Rename template included sources from .h to _template.c.
There are multiple source files that are #include'd rather than compiled, as they are used as template for generation of similar code, like asm-optimised code. Some of these files are right now named with a .h extension, although they are not header in any reasonable sense. Rename them so that instead of being named with .h extension they are named with _template.c as final part. Originally committed as revision 15730 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l/dsputil_iwmmxt.c')
-rw-r--r--libavcodec/armv4l/dsputil_iwmmxt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/armv4l/dsputil_iwmmxt.c b/libavcodec/armv4l/dsputil_iwmmxt.c
index 5699e38578..101d3ca808 100644
--- a/libavcodec/armv4l/dsputil_iwmmxt.c
+++ b/libavcodec/armv4l/dsputil_iwmmxt.c
@@ -24,7 +24,7 @@
#define DEF(x, y) x ## _no_rnd_ ## y ##_iwmmxt
#define SET_RND(regd) __asm__ volatile ("mov r12, #1 \n\t tbcsth " #regd ", r12":::"r12");
#define WAVG2B "wavg2b"
-#include "dsputil_iwmmxt_rnd.h"
+#include "dsputil_iwmmxt_rnd_template.c"
#undef DEF
#undef SET_RND
#undef WAVG2B
@@ -32,7 +32,7 @@
#define DEF(x, y) x ## _ ## y ##_iwmmxt
#define SET_RND(regd) __asm__ volatile ("mov r12, #2 \n\t tbcsth " #regd ", r12":::"r12");
#define WAVG2B "wavg2br"
-#include "dsputil_iwmmxt_rnd.h"
+#include "dsputil_iwmmxt_rnd_template.c"
#undef DEF
#undef SET_RND
#undef WAVG2BR