]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/msmpeg4.c
avcodec/pcm-dvd: print actual block size values in block size changed warning
[ffmpeg] / libavcodec / msmpeg4.c
index f2110e7f3ea135569f66ca7a02a9074a5031dc7c..b071d74c9209fb1ed1002ac000020d1ec5bd0bd1 100644 (file)
@@ -240,10 +240,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;