~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/msmpeg4.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
240
240
        : "%eax", "%edx"
241
241
    );
242
242
#else
243
 
    /* #elif ARCH_ALPHA */
244
 
    /* Divisions are extremely costly on Alpha; optimize the most
245
 
       common case. But they are costly everywhere...
246
 
     */
 
243
    /* Divisions are costly everywhere; optimize the most common case. */
247
244
    if (scale == 8) {
248
245
        a = (a + (8 >> 1)) / 8;
249
246
        b = (b + (8 >> 1)) / 8;