1. 02 Dec, 2017 1 commit
  2. 25 Nov, 2017 1 commit
  3. 23 Nov, 2017 1 commit
  4. 21 Nov, 2017 10 commits
  5. 20 Nov, 2017 1 commit
  6. 14 Nov, 2017 1 commit
  7. 13 Nov, 2017 1 commit
    • Thomas Köppe's avatar
      Fix missing used attribute for inline assembly variables · 43171a2a
      Thomas Köppe authored
      Variables used in inline assembly need to be marked with attribute((used)).
      Static constants already were, via the define of DECLARE_ASM_CONST.
      But DECLARE_ALIGNED does not add this attribute, and some of the variables
      defined with it are const only used in inline assembly, and therefore
      appeared dead. This change adds a macro DECLARE_ASM_ALIGNED that marks
      variables as used.
      
      This change makes FFMPEG work with Clang's ThinLTO.
      Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
      43171a2a
  8. 06 Nov, 2017 2 commits
  9. 30 Oct, 2017 1 commit
  10. 29 Oct, 2017 1 commit
  11. 05 Oct, 2017 1 commit
  12. 04 Oct, 2017 2 commits
  13. 03 Oct, 2017 1 commit
  14. 01 Oct, 2017 1 commit
  15. 19 Sep, 2017 1 commit
  16. 17 Sep, 2017 2 commits
  17. 21 Aug, 2017 1 commit
  18. 19 Aug, 2017 1 commit
  19. 18 Aug, 2017 4 commits
  20. 30 Jul, 2017 1 commit
    • Rostislav Pehlivanov's avatar
      mdct15: add inverse transform postrotation SIMD · 70eb77b3
      Rostislav Pehlivanov authored
      2.5ms frames:
      Before   (c):  2638 decicycles in postrotate, 2097040 runs,    112 skips
      After (sse3):  1467 decicycles in postrotate, 2097083 runs,     69 skips
      After (avx2):  1244 decicycles in postrotate, 2097085 runs,     67 skips
      
      5ms frames:
      Before   (c):  4987 decicycles in postrotate, 1048371 runs,    205 skips
      After (sse3):  2644 decicycles in postrotate, 1048509 runs,     67 skips
      After (avx2):  2031 decicycles in postrotate, 1048523 runs,     53 skips
      
      10ms frames:
      Before   (c):  9153 decicycles in postrotate,  523575 runs,    713 skips
      After (sse3):  5110 decicycles in postrotate,  523726 runs,    562 skips
      After (avx2):  3738 decicycles in postrotate,  524223 runs,     65 skips
      
      20ms frames:
      Before   (c): 17857 decicycles in postrotate,  261866 runs,    278 skips
      After (sse3): 10041 decicycles in postrotate,  261746 runs,    398 skips
      After (avx2):  7050 decicycles in postrotate,  262116 runs,     28 skips
      
      Improves total decoding performance for real world content by 9% with avx2.
      Signed-off-by: 's avatarRostislav Pehlivanov <atomnuker@gmail.com>
      70eb77b3
  21. 21 Jul, 2017 1 commit
  22. 05 Jul, 2017 4 commits