Ignore:
Timestamp:
Feb 21, 2008 10:08:27 AM (16 years ago)
Author:
bennylp
Message:

Ticket #467: fixed issues with RTP/AVP vs RTP/SAVP negotiation

File:
1 edited

Legend:

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

    r974 r1810  
    494494 
    495495 
     496/** 
     497 * Compare two media transports for compatibility. 
     498 * 
     499 * @param t1        The first media transport to compare. 
     500 * @param t2        The second media transport to compare. 
     501 * 
     502 * @return          PJ_SUCCESS when both media transports are compatible, 
     503 *                  otherwise returns PJMEDIA_SDP_ETPORTNOTEQUAL. 
     504 */ 
     505PJ_DECL(pj_status_t) pjmedia_sdp_transport_cmp(const pj_str_t *t1, 
     506                                               const pj_str_t *t2); 
     507 
     508 
     509/** 
     510 * Deactivate SDP media. 
     511 * 
     512 * @param m         The SDP media to deactivate. 
     513 * 
     514 * @return          PJ_SUCCESS when SDP media successfully deactivated, 
     515 *                  otherwise appropriate status code returned. 
     516 */ 
     517PJ_DECL(pj_status_t) pjmedia_sdp_media_deactivate(pj_pool_t *pool, 
     518                                                  pjmedia_sdp_media *m); 
     519 
    496520 
    497521/* ************************************************************************** 
Note: See TracChangeset for help on using the changeset viewer.