aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/sh4/dsputil_sh4.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-08 02:36:22 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-08 02:36:22 +0000
commitb903fe9137c1ffefc91c1a3713a9bc1444709330 (patch)
tree22c6185b33fd252bfe957c5d755e3e6f59d97926 /libavcodec/sh4/dsputil_sh4.c
parent67e19a9e4b6b48ecedc6a64210ef6f69edce9119 (diff)
downloadffmpeg-b903fe9137c1ffefc91c1a3713a9bc1444709330.tar.gz
sh4: move dsputil prototypes to header file
Originally committed as revision 22312 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/sh4/dsputil_sh4.c')
-rw-r--r--libavcodec/sh4/dsputil_sh4.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/sh4/dsputil_sh4.c b/libavcodec/sh4/dsputil_sh4.c
index 2c86a7aa48..ec06e249c7 100644
--- a/libavcodec/sh4/dsputil_sh4.c
+++ b/libavcodec/sh4/dsputil_sh4.c
@@ -22,6 +22,7 @@
#include "libavcodec/avcodec.h"
#include "libavcodec/dsputil.h"
+#include "dsputil_sh4.h"
#include "sh4.h"
static void memzero_align8(void *dst,size_t size)
@@ -51,7 +52,6 @@ static void clear_blocks_sh4(DCTELEM *blocks)
memzero_align8(blocks,sizeof(DCTELEM)*6*64);
}
-void idct_sh4(DCTELEM *block);
static void idct_put(uint8_t *dest, int line_size, DCTELEM *block)
{
int i;
@@ -89,8 +89,6 @@ static void idct_add(uint8_t *dest, int line_size, DCTELEM *block)
}
}
-void dsputil_init_align(DSPContext* c, AVCodecContext *avctx);
-
void dsputil_init_sh4(DSPContext* c, AVCodecContext *avctx)
{
const int idct_algo= avctx->idct_algo;