~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/x86/dsputilenc_mmx.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:
992
992
        c->ssd_int8_vs_int16 = ssd_int8_vs_int16_mmx;
993
993
    }
994
994
 
 
995
    if (INLINE_AMD3DNOW(cpu_flags)) {
 
996
        if (!(avctx->flags & CODEC_FLAG_BITEXACT)) {
 
997
            c->try_8x8basis = try_8x8basis_3dnow;
 
998
        }
 
999
        c->add_8x8basis = add_8x8basis_3dnow;
 
1000
    }
 
1001
 
995
1002
    if (INLINE_MMXEXT(cpu_flags)) {
996
1003
        if (avctx->bits_per_raw_sample <= 8 &&
997
1004
            (dct_algo == FF_DCT_AUTO || dct_algo == FF_DCT_MMX))
1024
1031
        c->sum_abs_dctelem = sum_abs_dctelem_ssse3;
1025
1032
    }
1026
1033
#endif
1027
 
 
1028
 
    if (INLINE_AMD3DNOW(cpu_flags)) {
1029
 
        if (!(avctx->flags & CODEC_FLAG_BITEXACT)) {
1030
 
            c->try_8x8basis = try_8x8basis_3dnow;
1031
 
        }
1032
 
        c->add_8x8basis = add_8x8basis_3dnow;
1033
 
    }
1034
1034
#endif /* HAVE_INLINE_ASM */
1035
1035
 
1036
1036
    if (EXTERNAL_MMX(cpu_flags)) {