diff options
author | Måns Rullgård <mans@mansr.com> | 2010-08-25 20:14:21 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-08-25 20:14:21 +0000 |
commit | 3d1b1caa6b87bbb2f7be06ae8194118170b90f36 (patch) | |
tree | fee39ebeb14b52f03caf15f2f3c6c17ed6aee73c /libavcodec/cavsdsp.c | |
parent | 694c5a2850f332a67170d18dde287aa6b7af19ee (diff) | |
download | ffmpeg-3d1b1caa6b87bbb2f7be06ae8194118170b90f36.tar.gz |
Remove duplicate definitions of fullpel MC functions
This removes duplicated definitions of 8x8 and 16x16 fullpel MC
functions with various names reducing dsputil.o by 8k on x86_64.
Originally committed as revision 24933 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdsp.c')
-rw-r--r-- | libavcodec/cavsdsp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/cavsdsp.c b/libavcodec/cavsdsp.c index 3593cfa05a..192e0f976d 100644 --- a/libavcodec/cavsdsp.c +++ b/libavcodec/cavsdsp.c @@ -511,6 +511,11 @@ CAVS_MC(put_, 16) CAVS_MC(avg_, 8) CAVS_MC(avg_, 16) +#define ff_put_cavs_qpel8_mc00_c ff_put_pixels8x8_c +#define ff_avg_cavs_qpel8_mc00_c ff_avg_pixels8x8_c +#define ff_put_cavs_qpel16_mc00_c ff_put_pixels16x16_c +#define ff_avg_cavs_qpel16_mc00_c ff_avg_pixels16x16_c + av_cold void ff_cavsdsp_init(CAVSDSPContext* c, AVCodecContext *avctx) { #define dspfunc(PFX, IDX, NUM) \ c->PFX ## _pixels_tab[IDX][ 0] = ff_ ## PFX ## NUM ## _mc00_c; \ |