Hi Steven, > you can get by the ./configure step you're almost > home.
Yup, almost there. I am now getting errors due to a missing 'yuv4mpeg.h' file: (indicated near the top of the outpur I am posting below) --- BEGIN --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/include -DG_LOG_DOMAIN=\"lavtools\" -DLAVPLAY_VERSION=\"1.7.0\" -I/usr/include -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/local/include -I/usr/X11R6/include -I /usr/X11R6/include -I../utils -I/usr/include/avifile -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include -I/usr/src/sources/mjpeg/mjpeg_play/../jpeg-mmx -mcpu=i686 -march=i686 -g -O2 -Wall -Wunused -MT pgmtoy4m.o -MD -MP -MF ".deps/pgmtoy4m.Tpo" \ -c -o pgmtoy4m.o `test -f 'pgmtoy4m.c' || echo './'`pgmtoy4m.c; \ then mv ".deps/pgmtoy4m.Tpo" ".deps/pgmtoy4m.Po"; \ else rm -f ".deps/pgmtoy4m.Tpo"; exit 1; \ fi pgmtoy4m.c:38:33: mjpegtools/yuv4mpeg.h: No such file or directory pgmtoy4m.c:74: warning: return type defaults to `int' pgmtoy4m.c: In function `main': pgmtoy4m.c:78: `y4m_ratio_t' undeclared (first use in this function) pgmtoy4m.c:78: (Each undeclared identifier is reported only once pgmtoy4m.c:78: for each function it appears in.) pgmtoy4m.c:78: parse error before "rate_ratio" pgmtoy4m.c:80: `Y4M_ILACE_TOP_FIRST' undeclared (first use in this function) pgmtoy4m.c:81: `y4m_frame_info_t' undeclared (first use in this function) pgmtoy4m.c:81: parse error before "oframe" pgmtoy4m.c:82: `y4m_stream_info_t' undeclared (first use in this function) pgmtoy4m.c:96: `Y4M_ILACE_NONE' undeclared (first use in this function) pgmtoy4m.c:102: `Y4M_ILACE_BOTTOM_FIRST' undeclared (first use in this function) pgmtoy4m.c:111: warning: implicit declaration of function `mjpeg_error_exit1' pgmtoy4m.c:114: warning: implicit declaration of function `y4m_parse_ratio' pgmtoy4m.c:114: `aspect_ratio' undeclared (first use in this function) pgmtoy4m.c:115: `Y4M_OK' undeclared (first use in this function) pgmtoy4m.c:120: `rate_ratio' undeclared (first use in this function) pgmtoy4m.c:136: warning: implicit declaration of function `mjpeg_default_handler_verbosity' pgmtoy4m.c:149: warning: implicit declaration of function `mjpeg_log' pgmtoy4m.c:149: `LOG_INFO' undeclared (first use in this function) pgmtoy4m.c:178: warning: implicit declaration of function `Y4M_RATIO_EQL' pgmtoy4m.c:178: `y4m_sar_UNKNOWN' undeclared (first use in this function) pgmtoy4m.c:182: `y4m_sar_NTSC_CCIR601' undeclared (first use in this function) pgmtoy4m.c:183: `LOG_WARN' undeclared (first use in this function) pgmtoy4m.c:187: `y4m_sar_PAL_CCIR601' undeclared (first use in this function) pgmtoy4m.c:195: `y4m_fps_UNKNOWN' undeclared (first use in this function) pgmtoy4m.c:199: `y4m_fps_NTSC' undeclared (first use in this function) pgmtoy4m.c:204: `y4m_fps_PAL' undeclared (first use in this function) pgmtoy4m.c:213: warning: implicit declaration of function `y4m_init_stream_info' pgmtoy4m.c:213: `ostream' undeclared (first use in this function) pgmtoy4m.c:214: warning: implicit declaration of function `y4m_init_frame_info' pgmtoy4m.c:214: `oframe' undeclared (first use in this function) pgmtoy4m.c:215: warning: implicit declaration of function `y4m_si_set_interlace' pgmtoy4m.c:216: warning: implicit declaration of function `y4m_si_set_framerate' pgmtoy4m.c:217: warning: implicit declaration of function `y4m_si_set_sampleaspect' pgmtoy4m.c:218: warning: implicit declaration of function `y4m_si_set_width' pgmtoy4m.c:219: warning: implicit declaration of function `y4m_si_set_height' pgmtoy4m.c:221: warning: implicit declaration of function `y4m_write_stream_header' pgmtoy4m.c:240: warning: implicit declaration of function `y4m_write_frame' pgmtoy4m.c:245: `LOG_DEBUG' undeclared (first use in this function) pgmtoy4m.c:255: warning: implicit declaration of function `y4m_fini_frame_info' pgmtoy4m.c:256: warning: implicit declaration of function `y4m_fini_stream_info' make[2]: *** [pgmtoy4m.o] Error 1 make[2]: Leaving directory `/usr/src/sources/mjpeg/mjpeg_play/lavtools' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/sources/mjpeg/mjpeg_play' make: *** [all] Error 2 --- END --- I did a search on the mailing list archives, and nothing turned up. I also had a look at the confiigure options, and there was nothing there to specifically turn on 'yuv4mpeg'. If it helps, my configure line is: ./configure --prefix=/usr \ --with-mjpeg-mmx=/usr/src/sources/mjpeg/jpeg-mmx/ \ --with-quicktime=no \ --enable-large-file which gives the following configuration (summarized) output: --- BEGIN --- MJPEG tools 1.7.0 build configuration : - X86 Optimizations: - MMX/3DNow!/SSE enabled : true - cmov support enabled : true **************************************************************************** * NOTE: * * The resultant binaries will ***NOT*** run on a K6 or Pentium CPU * **************************************************************************** - video4linux recording/playback: true - software MJPEG playback : true - movtar playback/recording : true - Quicktime playback/recording : false - PNG input support : true - AVI MJPEG playback/recording : true (always) - libDV (digital video) support : true - libDV PAL YV12 read support : false - AVIFILE divx encoding support : true - Gtk+ support for glav : true - glibc support for >2GB files : true --- END --- I hope this helps? Alan ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca ------------------------------------------------------- This SF.net email is sponsored by: eBay Get office equipment for less on eBay! http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 _______________________________________________ Mjpeg-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mjpeg-users