[Mjpeg-users] Bug in yuv2lav 1.9.0

2009-04-19 Thread Graham Murphy
As distributed, lines 245-250 in yuv2lav.c are: #ifdef HAVE_LIBQUICKTIME dotptr = strrchr(param_output, '.'); if ( (!strcasecmp(dotptr+1, "mov")) && (param_format == 'x') ) param_format = 'q'; #endif if ( (!strcasecmp(dotptr+1, "avi")) && (param_format

Re: [Mjpeg-users] Bug in yuv2lav 1.9.0

2009-04-19 Thread Steven M. Schultz
On Sun, 19 Apr 2009, Graham Murphy wrote: > As distributed, lines 245-250 in yuv2lav.c are: > > #ifdef HAVE_LIBQUICKTIME > dotptr = strrchr(param_output, '.'); > if ( (!strcasecmp(dotptr+1, "mov")) && (param_format == 'x') ) > param_format = 'q'; > #endif >