[Mplayer-cvslog] CVS: main/libmpcodecs ve_x264.c, NONE, 1.1 ve.c, 1.10, 1.11 Makefile, 1.133, 1.134
Reimar Döffinger
Reimar.Doeffinger at stud.uni-karlsruhe.de
Sat Sep 18 11:23:22 CEST 2004
Hi,
>>Log Message:
>>x264 encoder support. Original patch send by Bernhard Rosenkraenzer <bero at arklinux dot org>, modifications by Loren Merritt <lorenm at u.washington dot edu>, Jeff Clagg <snacky at ikaruga.co dot uk> and me
>
>>#include <stdint.h>
>
> 100l !
> Won't compile if there's no stdint.h on the system!
Right.
I guess you should use
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#else
#include <stdint.h>
#endif
Same applies to loader/com.h, which currently checks for HAVE_STDINT_H,
although that _never_ is defined...
Greetings,
Reimar Döffinger
More information about the MPlayer-cvslog
mailing list