1. 25 7月, 2013 3 次提交
  2. 24 7月, 2013 5 次提交
  3. 22 7月, 2013 13 次提交
  4. 21 7月, 2013 1 次提交
    • D
      libx264: Define X264_API_IMPORTS on MSVC/ICL · 4719040c
      Derek Buitenhuis 提交于
      libx264 has a few data exports which require X264_API_IMPORTS
      to be defined if we link to libx264 dynamically on Windows.
      
      In a similar fashion to how we handle our compat snprintf
      implementation, if we define it all the time, the compiler
      will first try and link to __imp_x264_symbol_name, and failing
      that, as in the case of a static libx264, will attempt to link
      to the non-prefixed symbol, which has already been pulled in by
      other x264 functions' object files.
      Signed-off-by: NDerek Buitenhuis <derek.buitenhuis@gmail.com>
      4719040c
  5. 20 7月, 2013 3 次提交
  6. 19 7月, 2013 6 次提交
  7. 18 7月, 2013 2 次提交
  8. 17 7月, 2013 2 次提交
  9. 16 7月, 2013 4 次提交
  10. 15 7月, 2013 1 次提交
    • L
      indeo: Reject impossible FRAMETYPE_NULL · 5b2a2955
      Luca Barbato 提交于
      A frame marked FRAMETYPE_NULL cannot be scalable and requires a
      previous frame successfully decoded.
      
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      5b2a2955