]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/msmpeg4.c
vc1: Factorize out chroma MC
[ffmpeg] / libavcodec / msmpeg4.c
index f844850c4010c70715ce6176c7ce30b523ac34ed..c76a14b6bea6fb2e12157adb717d373f047496fe 100644 (file)
@@ -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;