- 03 Nov, 2008 1 commit
-
-
mru authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27887 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 27 Oct, 2008 3 commits
-
-
vitor authored
ibswscale/swscale.c: In function ‘sws_scale’: libswscale/swscale.c:2678: warning: ‘b’ may be used uninitialized in this function libswscale/swscale.c:2678: warning: ‘g’ may be used uninitialized in this function libswscale/swscale.c:2678: warning: ‘r’ may be used uninitialized in this function git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27837 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27836 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27835 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 26 Oct, 2008 1 commit
-
-
vitor authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27834 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 25 Oct, 2008 2 commits
-
-
cehoyos authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27827 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
it will overflow the buffer by 1 line. This might have been exploitable. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27826 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 23 Oct, 2008 3 commits
-
-
vitor authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27818 b3059339-0415-0410-9bf9-f77b7e298cf2
-
vitor authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27817 b3059339-0415-0410-9bf9-f77b7e298cf2
-
diego authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27816 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 19 Oct, 2008 1 commit
-
-
conrad authored
Convert typeof keyword into __typeof__; this is a gcc extension and the former is not accepted in C99 without GNU extensions enabled (e.g. via -fasm). This fixes compilation on PPC. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27805 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 16 Oct, 2008 1 commit
-
-
flameeyes 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. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27778 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 09 Oct, 2008 5 commits
-
-
flameeyes authored
These are only used in swscale_template.c (and thus don't need to be made extern), and can be declared as ASM constants. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27737 b3059339-0415-0410-9bf9-f77b7e298cf2
-
flameeyes authored
These two tables are not used outside swscale.c even though they are declared also in yuv2rgb.c. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27736 b3059339-0415-0410-9bf9-f77b7e298cf2
-
flameeyes authored
These functions are never called by themselves, the alias interleaveBytes is used instead. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27735 b3059339-0415-0410-9bf9-f77b7e298cf2
-
flameeyes authored
Instead of having a firstTime variable defaulting to 1, have a warnedAlready defaulting to 0. While this should make no difference in code speed at runtime, it allows to aggregate the four bytes of that variable with clip_table in .bss section, rather than issuing a .data section just for that. As it is, libswscale require no .data section but .data.rel.ro (that can be mitigated by prelinking), so the change might actually save one page of memory at runtime (per process). git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27734 b3059339-0415-0410-9bf9-f77b7e298cf2
-
cehoyos authored
Fixes icc warning #188: enumerated type mixed with another type git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27733 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 08 Oct, 2008 3 commits
-
-
vitor authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27731 b3059339-0415-0410-9bf9-f77b7e298cf2
-
vitor authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27730 b3059339-0415-0410-9bf9-f77b7e298cf2
-
aurel authored
This one was missing from r27727. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27728 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 07 Oct, 2008 1 commit
-
-
cehoyos authored
Fixes icc warning #188: enumerated type mixed with another type git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27727 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 05 Oct, 2008 2 commits
-
-
lu_zero authored
gcc-apple specific fallback not necessary anymore (btw no apple hardware is less than a Intel core, thus it won't come there w/out disabling all the optimizations) git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27722 b3059339-0415-0410-9bf9-f77b7e298cf2
-
diego authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27720 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 04 Oct, 2008 3 commits
-
-
cehoyos authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27718 b3059339-0415-0410-9bf9-f77b7e298cf2
-
cehoyos authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27715 b3059339-0415-0410-9bf9-f77b7e298cf2
-
diego authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27698 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 29 Sep, 2008 5 commits
-
-
diego authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27673 b3059339-0415-0410-9bf9-f77b7e298cf2
-
diego authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27672 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27671 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27670 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27669 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 18 Sep, 2008 3 commits
-
-
lu_zero authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27636 b3059339-0415-0410-9bf9-f77b7e298cf2
-
lu_zero authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27635 b3059339-0415-0410-9bf9-f77b7e298cf2
-
lu_zero authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27634 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 16 Sep, 2008 1 commit
-
-
michael authored
byte being written after the array. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27628 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 15 Sep, 2008 1 commit
-
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27612 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 14 Sep, 2008 3 commits
-
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27611 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27610 b3059339-0415-0410-9bf9-f77b7e298cf2
-
michael authored
can be used under LGPL. git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27609 b3059339-0415-0410-9bf9-f77b7e298cf2
-
- 13 Sep, 2008 1 commit
-
-
ben authored
git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@27602 b3059339-0415-0410-9bf9-f77b7e298cf2
-