1. 20 Sep, 2012 3 commits
    • Mans Rullgard's avatar
      configure: update tms470 detection for latest version · 0122118e
      Mans Rullgard authored
      v5.0 of the TI ARM compiler changes the version string.
      This updates the detection to check for both the old and
      the new strings.
      Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
      0122118e
    • Janne Grunau's avatar
      lavf probe: prevent codec probe with no data at all seen · 6746cd7f
      Janne Grunau authored
      This occurs with fuzzed mpeg-ts files. set_codec_from_probe_data() is
      called with a zeroed AVProbeData since no packet made through for
      specific stream.
      6746cd7f
    • Mans Rullgard's avatar
      motion_est: fix use of inline on extern functions · a34a609f
      Mans Rullgard authored
      Inline functions declared without extern do not provide an external
      definition in standard C99.  This code only works because most
      compilers do not implement the inline semantics correctly.  With a
      stricter compiler, linking fails with unresolved references to these
      functions.
      
      Declaring the functions extern inline works correctly with some
      compilers while some others still fail to create external definitions.
      
      For maximum portability, create a static inline version with an
      externally visible wrapper for ff_get_mb_score.  ff_epzs_motion_search
      is so large that no sane compiler inlines it anyway, so there the
      inline keyword can simply be dropped with no effect.
      Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
      a34a609f
  2. 19 Sep, 2012 25 commits
  3. 18 Sep, 2012 9 commits
  4. 17 Sep, 2012 3 commits