1. 09 Nov, 2011 1 commit
  2. 29 May, 2011 1 commit
  3. 28 May, 2011 1 commit
  4. 25 May, 2011 3 commits
    • Michael Niedermayer's avatar
    • Michael Niedermayer's avatar
    • Michael Niedermayer's avatar
      Merge swscale bloatup · d1adad3c
      Michael Niedermayer authored
      This will be cleaned up in the next merge
      
      Authorship / merged commits:
      commit f668afd4
      Author: Janne Grunau <janne-libav@jannau.net>
      Date:   Fri Apr 15 09:12:34 2011 +0200
      
          swscale: fix "ISO C90 forbids mixed declarations and code" warning
      
          only hit with --enable-runtime-cpudetect
      
      commit 7f2ae5c7
      Author: Janne Grunau <janne-libav@jannau.net>
      Date:   Fri Apr 15 02:09:44 2011 +0200
      
          swscale: fix compilation with --enable-runtime-cpudetect
      
      commit b6cad3df
      Author: Janne Grunau <janne-libav@jannau.net>
      Date:   Fri Apr 15 00:31:04 2011 +0200
      
          swscale: correct include path to fix ppc altivec build
      
      commit 6216fc70
      Author: Luca Barbato <lu_zero@gentoo.org>
      Date:   Thu Apr 14 22:03:45 2011 +0200
      
          swscale: simplify rgb2rgb templating
      
          MMX is always built. Drop the ifdefs
      
      commit 33a0421b
      Author: Josh Allmann <joshua.allmann@gmail.com>
      Date:   Wed Apr 13 20:57:32 2011 +0200
      
          swscale: simplify initialization code
      
          Simplify the fallthrough case when no accelerated functions
          can be initialized.
      
      commit 735bf195
      Author: Josh Allmann <joshua.allmann@gmail.com>
      Date:   Wed Apr 13 20:57:31 2011 +0200
      
          swscale: further cleanup swscale.c
      
          Move x86-specific constants out of swscale.c
      
      commit 86330b4c
      Author: Luca Barbato <lu_zero@gentoo.org>
      Date:   Wed Apr 13 20:57:30 2011 +0200
      
          swscale: partially move the arch specific code left
      
          PPC and x86 code is split off from swscale_template.c. Lots of code is
          still duplicated and should be removed later.
      
          Again uniformize the init system to be more similar to the dsputil one.
      
          Unset h*scale_fast in the x86 init in order to make the output
          consistent with the previous status. Thanks to Josh for spotting it.
      
      commit c0038328
      Author: Luca Barbato <lu_zero@gentoo.org>
      Date:   Wed Apr 13 20:57:29 2011 +0200
      
          swscale: move away x86 specific code from rgb2rgb
      
          Keep only the plain C code in the main rgb2rgb.c and move the x86
          specific optimizations to x86/rgb2rgb.c
          Change the initialization pattern a little so some of it can be
          factorized to behave more like dsputils.
      
      Conflicts:
      	libswscale/rgb2rgb.c
      	libswscale/swscale_template.c
      d1adad3c
  5. 24 May, 2011 1 commit
  6. 05 May, 2011 1 commit
  7. 14 Apr, 2011 1 commit
    • Luca Barbato's avatar
      swscale: move away x86 specific code from rgb2rgb · c0038328
      Luca Barbato authored
      Keep only the plain C code in the main rgb2rgb.c and move the x86
      specific optimizations to x86/rgb2rgb.c
      Change the initialization pattern a little so some of it can be
      factorized to behave more like dsputils.
      c0038328
  8. 19 Mar, 2011 1 commit
  9. 18 Jan, 2011 1 commit
  10. 14 Sep, 2010 1 commit
  11. 13 Sep, 2010 2 commits
  12. 12 Sep, 2010 1 commit
  13. 11 Sep, 2010 1 commit
  14. 31 Mar, 2010 1 commit
  15. 27 Mar, 2010 1 commit
  16. 15 Jan, 2010 1 commit
  17. 09 Jan, 2010 1 commit
  18. 07 Sep, 2009 1 commit
  19. 16 Aug, 2009 2 commits
    • Ramiro Polla's avatar
      Cosmetics: · dd68318c
      Ramiro Polla authored
      - Place curly brackets in the same line as while/for/if/switch/else/do;
      - Place curly brackets at column 0 in the next line starting a function.
      
      Originally committed as revision 29523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
      dd68318c
    • Ramiro Polla's avatar
      Indent libswscale: · 9b734d44
      Ramiro Polla authored
      - Use 4 spaces throughout for indentation;
      - Fix inconsistent indentation;
      - Indent function calls and declarations aligning arguments on multiple lines
        to the column after the opening parentheses;
      - Align asm code to the column 4 spaces after the call to __asm__();
      - Align cases in switch statements to the same column as "switch".
      
      Originally committed as revision 29522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
      9b734d44
  20. 08 Aug, 2009 1 commit
  21. 26 Jul, 2009 1 commit
  22. 18 Apr, 2009 1 commit
  23. 21 Mar, 2009 2 commits
  24. 19 Mar, 2009 2 commits
  25. 18 Mar, 2009 2 commits
  26. 04 Mar, 2009 1 commit
  27. 28 Feb, 2009 1 commit
  28. 25 Jan, 2009 1 commit
  29. 14 Jan, 2009 1 commit
  30. 12 Dec, 2008 1 commit
  31. 23 Oct, 2008 1 commit
  32. 16 Oct, 2008 1 commit
    • Diego Pettenò's avatar
      Convert asm keyword into __asm__. · 7ad6469e
      Diego Pettenò authored
      Neither the asm() nor the __asm__() keyword is not part of the C99
      standard, but while GCC accepts the former in C89 syntax, it is not
      accepted in C99 unless GNU extensions are turned on (with -fasm). The
      latter form is accepted in any syntax as an extension (without
      requiring further command-line options).
      
      Sun Studio C99 compiler also does not accept asm() while accepting
      __asm__(), albeit reporting warnings that it's not valid C99 synta.
      
      Originally committed as revision 27778 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
      7ad6469e
  33. 09 Oct, 2008 1 commit