Jure Petrovic a écrit : > I am really sorry to be such a bore with that, but now I see > Damien is back and Craig maybe also :-) > > > unsigned int recommendedFramesPerPacket; // = 2 > unsigned int maxFramesPerPacket; // = 2 > > Why ekiga still sends only 1 frame per packet? Where can I set that?
Notice that "//" means the "= 2" is a comment. You may want to try : unsigned int recommendedFramesPerPacket = 2; unsigned int maxFramesPerPacket = 2; Snark _______________________________________________ ekiga-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/ekiga-list
