diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-18 19:26:18 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-22 12:12:24 +0200 |
commit | 0c15a9aa7e1654a19144eb594f9639a57fd47482 (patch) | |
tree | 616797fa16e15731e59d5cb1b64905a163cb2253 /libavcodec/sh4/dsputil_sh4.c | |
parent | b4ad7c54c878dead7dfa4838b912a530c1debe85 (diff) | |
download | ffmpeg-0c15a9aa7e1654a19144eb594f9639a57fd47482.tar.gz |
sh4: Remove dubious aligned dsputil code
The code represents a considerable maintenance burden and it is not
clear that it gives a noticeable benefit to outweigh this after 10
years of improvements in compiler technology since its creation.
Diffstat (limited to 'libavcodec/sh4/dsputil_sh4.c')
-rw-r--r-- | libavcodec/sh4/dsputil_sh4.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/sh4/dsputil_sh4.c b/libavcodec/sh4/dsputil_sh4.c index 2538945791..6fd287ddfb 100644 --- a/libavcodec/sh4/dsputil_sh4.c +++ b/libavcodec/sh4/dsputil_sh4.c @@ -94,7 +94,6 @@ av_cold void ff_dsputil_init_sh4(DSPContext *c, AVCodecContext *avctx) { const int idct_algo= avctx->idct_algo; const int high_bit_depth = avctx->bits_per_raw_sample > 8; - ff_dsputil_init_align(c,avctx); if (!high_bit_depth) c->clear_blocks = clear_blocks_sh4; |