~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavutil/utils.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:
40
40
    av_assert0(LIBAVUTIL_VERSION_MICRO >= 100);
41
41
    av_assert0(HAVE_MMX2 == HAVE_MMXEXT);
42
42
 
 
43
    av_assert0(((size_t)-1) > 0); // C gurantees this but if false on a platform we care about revert at least b284e1ffe343d6697fb950d1ee517bafda8a9844
 
44
 
43
45
    if (av_sat_dadd32(1, 2) != 5) {
44
46
        av_log(NULL, AV_LOG_FATAL, "Libavutil has been build with a broken binutils, please upgrade binutils and rebuild\n");
45
47
        abort();
49
51
        av_log(NULL, AV_LOG_ERROR, "Libavutil has been linked to a broken llrint()\n");
50
52
    }
51
53
 
 
54
#if defined(ASSERT_LEVEL) && ASSERT_LEVEL > 0
52
55
    ff_check_pixfmt_descriptors();
 
56
#endif
53
57
    checks_done = 1;
54
58
    return LIBAVUTIL_VERSION_INT;
55
59
}