summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-11-13 20:39:56 +0100
committerDiego Biurrun <diego@biurrun.de>2013-11-13 20:45:49 +0100
commitc7f7bfc9e3a3150ba72bc34366c13fb2210c66ac (patch)
tree4857540a20b55136121e14403a9cb86d4369955d /libavcodec/msmpeg4.c
parent16381923fb7b9087ce559fb1cd3594469ac6788b (diff)
Remove all Alpha architecture optimizations
Alpha has been end-of-lifed and no more test machines are available.
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index f844850c40..c76a14b6be 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -242,10 +242,7 @@ int ff_msmpeg4_pred_dc(MpegEncContext *s, int n,
: "%eax", "%edx"
);
#else
- /* #elif ARCH_ALPHA */
- /* Divisions are extremely costly on Alpha; optimize the most
- common case. But they are costly everywhere...
- */
+ /* Divisions are costly everywhere; optimize the most common case. */
if (scale == 8) {
a = (a + (8 >> 1)) / 8;
b = (b + (8 >> 1)) / 8;