Also, for > video.SetPayloadType(StaticPayload(sptH263)); // cheating on MPEG4 type
you can use dynamic payload types. For example: video.setPayloadType(DynamicPayload(100,90000)) Where 100 is the dynamic payload type and 90000 is the RTP clock rate for MPEG4. sendImmediate will most probably work for your application, but if you do not want any additional thread, you can create your own RTP session class as ccRTP creates SingleThreadRTPSession and SingleThreadRTPSessionIPV6. That would require that you replace the usual run method with your own code (that would also be responsible for sending/receiving RTCP packets) _______________________________________________ Ccrtp-devel mailing list [email protected] http://lists.gnu.org/mailman/listinfo/ccrtp-devel
