Mercurial > mplayer.hg
diff configure @ 7058:2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
- multithreaded audio/video buffering (I know mplayer crew hates threads
but it seems to me as the only way of doing reliable a/v capture)
- a/v timebase synchronization (sample count vs. gettimeofday)
- "immediate" mode support for mplayer
- fixed colorspace stuff - RGB?? and YUY2 modes now work as expected
- native ALSA audio capture
- separated audio input layer
author | arpi |
---|---|
date | Wed, 21 Aug 2002 21:31:20 +0000 |
parents | e5f7dba0d628 |
children | ee5e9d11dc46 |
line wrap: on
line diff
--- a/configure Wed Aug 21 21:24:23 2002 +0000 +++ b/configure Wed Aug 21 21:31:20 2002 +0000 @@ -1975,6 +1975,25 @@ fi echores "$_vsscanf" +echocheck "sys/sysinfo.h" +cat > $TMPC << EOF +#include <sys/sysinfo.h> +int main(void) { + struct sysinfo s_info; + sysinfo(&s_info); + return 0; +} +EOF +_sys_sysinfo=no +cc_check && _sys_sysinfo=yes +if test "$_sys_sysinfo" = yes ; then + _def_sys_sysinfo='#define HAVE_SYS_SYSINFO_H 1' + _inc_sysinfo='#include <sys/sysinfo.h>' +else + _def_sys_sysinfo='#undef HAVE_SYS_SYSINFO_H' +fi +echores "$_sys_sysinfo" + ######### # VIDEO # @@ -4420,6 +4439,9 @@ * in /usr/include */ $_def_soundcard +/* Define this if your system has the sysinfo header */ +$_def_sys_sysinfo + /* Define this if your system uses ftello() for off_t seeking */ $_def_ftello