Changes between Version 106 and Version 107 of FAQ


Ignore:
Timestamp:
Dec 6, 2010 9:32:20 AM (13 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v106 v107  
    691691=== Does PJSIP support video? === #video 
    692692 
    693 Currently no. But one can handle video oneself in the application layer (please see below). 
     693'''Update:''' Video support is planned to appear in version 2.0! 
     694 
     695~~~Currently no. But one can handle video oneself in the application layer (please see below).~~~ 
    694696 
    695697 
    696698=== How can I add video support in PJSIP? === 
     699 
     700'''Update:''' Video support is planned to appear in version 2.0! 
    697701 
    698702Since video stream is independent from audio stream, the simplest "integration" would be to not integrate video with pjmedia at all. In other words, the application would have to manage everything related to video (capture, render, codec, and RTP)  by itself, separate from audio stream which is managed by pjmedia. Maybe you can use the media transports supplied by pjmedia, and the RTP module to pack/unpack RTP packets, to help you up a little bit, but apart from these, basically you'll have to do everything on your own.