diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-06 10:39:57 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 08:15:52 -0700 |
commit | f5f099766816aab3ad805c63e85f12cb664dc9a8 (patch) | |
tree | 59ad3de64ac718849b60898ec3d20ef28277ba5e /libavcodec/bfin/hpeldsp_bfin.c | |
parent | 14efbe694ac5beff98f5c5e652c166603f1738cf (diff) | |
download | ffmpeg-f5f099766816aab3ad805c63e85f12cb664dc9a8.tar.gz |
bfin: hpeldsp: Drop broken put_pixels_*_xy2_nornd bits
They were marked as broken and disabled in 2009 and will never get fixed.
Diffstat (limited to 'libavcodec/bfin/hpeldsp_bfin.c')
-rw-r--r-- | libavcodec/bfin/hpeldsp_bfin.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/bfin/hpeldsp_bfin.c b/libavcodec/bfin/hpeldsp_bfin.c index 4fc66ed1b8..c75e6bc0e0 100644 --- a/libavcodec/bfin/hpeldsp_bfin.c +++ b/libavcodec/bfin/hpeldsp_bfin.c @@ -114,10 +114,8 @@ av_cold void ff_hpeldsp_init_bfin(HpelDSPContext *c, int flags) c->put_no_rnd_pixels_tab[1][0] = bfin_put_pixels8_nornd; c->put_no_rnd_pixels_tab[1][1] = bfin_put_pixels8_x2_nornd; c->put_no_rnd_pixels_tab[1][2] = bfin_put_pixels8_y2_nornd; -/* c->put_no_rnd_pixels_tab[1][3] = ff_bfin_put_pixels8_xy2_nornd; */ c->put_no_rnd_pixels_tab[0][0] = bfin_put_pixels16_nornd; c->put_no_rnd_pixels_tab[0][1] = bfin_put_pixels16_x2_nornd; c->put_no_rnd_pixels_tab[0][2] = bfin_put_pixels16_y2_nornd; -/* c->put_no_rnd_pixels_tab[0][3] = ff_bfin_put_pixels16_xy2_nornd; */ } |