summaryrefslogtreecommitdiff
path: root/libavcodec/cavsdsp.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-03-06 22:36:59 +0000
committerMåns Rullgård <mans@mansr.com>2010-03-06 22:36:59 +0000
commit965363f81aa7f9fd61935e9e4b766c168f243227 (patch)
tree0fbdc3d9c616d1ed120dfbd14e514a7ca0e9060a /libavcodec/cavsdsp.c
parent4f602a041522c7fc809dcc5192489cc9febb19e7 (diff)
Move some dsp func prototypes to dsputil.h; they are defined in dsputil.c
Originally committed as revision 22264 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdsp.c')
-rw-r--r--libavcodec/cavsdsp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/cavsdsp.c b/libavcodec/cavsdsp.c
index 4ba08bbd2a..808f62b69f 100644
--- a/libavcodec/cavsdsp.c
+++ b/libavcodec/cavsdsp.c
@@ -510,11 +510,6 @@ CAVS_MC(put_, 16)
CAVS_MC(avg_, 8)
CAVS_MC(avg_, 16)
-void ff_put_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride);
-void ff_avg_cavs_qpel8_mc00_c(uint8_t *dst, uint8_t *src, int stride);
-void ff_put_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride);
-void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride);
-
av_cold void ff_cavsdsp_init(DSPContext* c, AVCodecContext *avctx) {
#define dspfunc(PFX, IDX, NUM) \
c->PFX ## _pixels_tab[IDX][ 0] = ff_ ## PFX ## NUM ## _mc00_c; \