mpv/postproc
rathann e7db4ccf1a Patch by Stefan Huehner / stefan % huehner ! org \
patch replaces '()' for the correct '(void)' in function
declarations/prototypes which have no parameters. The '()' syntax tell
thats there is a variable list of arguments, so that the compiler cannot
check this. The extra CFLAG '-Wstrict-declarations' shows those cases.

Comments about a similar patch applied to ffmpeg:

That in C++ these mean the same, but in ANSI C the semantics are
different; function() is an (obsolete) K&R C style forward declaration,
it basically means that the function can have any number and any types
of parameters, effectively completely preventing the compiler from doing
any sort of type checking. -- Erik Slagter

Defining functions with unspecified arguments is allowed but bad.
With arguments unspecified the compiler can't report an error/warning
if the function is called with incorrect arguments. -- Måns Rullgård


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-02-09 14:08:03 +00:00
..
.cvsignore
Makefile Make clean/distclean behave uniformly in all directories. 2006-01-27 00:06:42 +00:00
cs_test.c Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
rgb2rgb.c Unify include paths, -I.. is in CFLAGS. 2005-11-14 00:30:37 +00:00
rgb2rgb.h Change unsigned->signed and int->long, this fits the asm code better on 64 2005-10-12 12:11:27 +00:00
rgb2rgb_template.c Change unsigned->signed and int->long, this fits the asm code better on 64 2005-10-12 12:11:27 +00:00
swscale-example.c Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
swscale.c Patch by Stefan Huehner / stefan % huehner ! org \ 2006-02-09 14:08:03 +00:00
swscale.h Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
swscale_altivec_template.c Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
swscale_internal.h Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
swscale_template.c Update licensing information: The FSF changed postal address. 2006-01-13 00:23:32 +00:00
yuv2rgb.c Unify include paths, -I.. is in CFLAGS. 2005-11-14 00:30:37 +00:00
yuv2rgb_altivec.c Correct RGB vs. BGR confusion, the macros vec_mstrgb24 and vec_mstbgr24 each 2006-02-09 00:29:35 +00:00
yuv2rgb_mlib.c Unify include paths, -I.. is in CFLAGS. 2005-11-14 00:30:37 +00:00
yuv2rgb_template.c