Ignore:
Timestamp:
Mar 5, 2019 6:23:02 AM (5 years ago)
Author:
nanang
Message:

Re #2181: Initial version of video conference implementation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/vid_port.h

    r4168 r5939  
    154154 
    155155/** 
     156 * Subscribe media event notifications from the specified media port. 
     157 * Sample use case is that renderer video port needs to monitor stream port 
     158 * events so renderer can adjust its param whenever stream port detects 
     159 * format change. 
     160 * 
     161 * @param vid_port      The video port. 
     162 * @param port          The media port whose events to be monitored. 
     163 * 
     164 * @return              PJ_SUCCESS on success or the appropriate error code. 
     165 */ 
     166PJ_DECL(pj_status_t) pjmedia_vid_port_subscribe_event( 
     167                                                pjmedia_vid_port *vid_port, 
     168                                                pjmedia_port *port); 
     169 
     170/** 
    156171 * Connect the video port to a downstream (slave) media port. This operation 
    157172 * is only valid for video ports created with active interface selected. 
Note: See TracChangeset for help on using the changeset viewer.