mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-15 19:40:07 +01:00
Remove all Alpha architecture optimizations
Alpha has been end-of-lifed and no more test machines are available.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user