On Sat, Jun 12, 2004 at 07:30:36PM -0400, Eric Buist wrote: > I cannot compile AVIFile under Mandrake Linux 10.0 Official. I tried > using the most recent CVS version and it still does not work. In the > file ffmpeg/libavcodec/ffv1.c, I receive an internal compiler error. > > I tried to submit a full bug report to MandrakeSoft, but the site is > really slow and does not tell me how to do it, how to submit a full
Last week there was this proposal to fix the problem for this compiler - but the compiler should be rather fixed really fast by Mandrake. Meanwhile try this advice: ------ but i find my reponse, and i must change the code: in ffv1.c by change the line 465 with : sample[p][i]=sample_buffer[p][(h+i-y)%ring_size]+3; by int tmp; tmp=(h+i-y)%ring_size; sample[p][i]=sample_buffer[p][tmp]+3; that works fine !! ------ > Since the last news on avifile.sourceforge.net dates back to July 2003, > is AVIFile still maintained? If not, is there some alternative I could > use to process AVI files with DivX from Linux, without using the Wine > emulator which does not work at all for me? Well it's maintained but just very not in a big way for now (as I'm being kept busy byu other projects/things :( But it should work and bugs are fixed. You bug however is a bug of your compiler. If you haven't yet heard of MPlayer - you really should install this player. Avifile is rather strictly oriented towards 'avi' playback with few extra features which other projects/players IMHO misses (Of course they have tons of other features ;)) -- .''`. Litigation: The Business Model of the Future! (TM) : :' : http://www.microsoft.com/mscorp/ip/tech/fat.asp `. `' Zdenek Kabelac [EMAIL PROTECTED], users.sf.net, fi.muni.cz} `- Debian GNU/Linux maintainer - www.debian.{org,cz} _______________________________________________ Avifile mailing list [EMAIL PROTECTED] http://prak.org/mailman/listinfo/avifile
