summaryrefslogtreecommitdiff
path: root/libavcodec/h264chroma.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-04-18 19:26:18 +0200
committerDiego Biurrun <diego@biurrun.de>2013-04-22 12:12:24 +0200
commit0c15a9aa7e1654a19144eb594f9639a57fd47482 (patch)
tree616797fa16e15731e59d5cb1b64905a163cb2253 /libavcodec/h264chroma.c
parentb4ad7c54c878dead7dfa4838b912a530c1debe85 (diff)
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/h264chroma.c')
-rw-r--r--libavcodec/h264chroma.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264chroma.c b/libavcodec/h264chroma.c
index 463d6c454f..6194c4d1bd 100644
--- a/libavcodec/h264chroma.c
+++ b/libavcodec/h264chroma.c
@@ -47,8 +47,6 @@ void ff_h264chroma_init(H264ChromaContext *c, int bit_depth)
ff_h264chroma_init_arm(c, bit_depth);
if (ARCH_PPC)
ff_h264chroma_init_ppc(c, bit_depth);
- if (ARCH_SH4)
- ff_h264chroma_init_sh4(c, bit_depth);
if (ARCH_X86)
ff_h264chroma_init_x86(c, bit_depth);
}