Le vendredi 09 décembre 2005 à 18:52 +0000, JGJones a écrit : > ...ok all that hassle... > > when going to a dir, I used =../<dir> but seeing that you used full > paths, so I did that and it found them... > > After all that hell of a hassle I now have OpenH323 installed with the > patched ffmpeg > > Lesson learned - use full paths next time! > > Now I need to compile and install GnomeMeeting. What do I do with this one? >
Simple and easy :) Edit src/endpoint.cpp, find AddVideoCapabilities, then follow "Modifying applications" in http://www.voxgratia.org/docs/h263_codec.html. It will be something like : if (videoSize == 1) { SetCapability(0, 1, new H323_RFC2190_H263Capability(0, 0, 2, 0, 0, maxbps)); SetCapability(0, 1, new H323_RFC2190_H263Capability(0, 1, 0, 0, 0, maxbps)); } else { SetCapability(0, 1, new H323_RFC2190_H263Capability(0, 1, 0, 0, 0, maxbps)); SetCapability(0, 1, new H323_RFC2190_H263Capability(0, 0, 2, 0, 0, maxbps)); } Of course, you will have to tweak it a bit :) -- _ Damien Sandras (o- //\ GnomeMeeting: http://www.gnomemeeting.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org SIP Phone : sip:[EMAIL PROTECTED] sip:[EMAIL PROTECTED] _______________________________________________ GnomeMeeting-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gnomemeeting-list
