WARNING: The online documentation has moved to https://docs.pjsip.org.

Visit the new documentation at https://docs.pjsip.org:

BLOG | DOCUMENTATION | GITHUB

Home --> Documentations --> PJMEDIA Reference

Transports.The media transport (pjmedia_transport) is the object to send and receive media packets over the network. The media transport interface allows the library to be extended to support different types of transports to send and receive packets. More...

Modules

 Sample Transport Adapter
 Example on how to create transport adapter.
 
 ICE Media Transport
 Interactive Connectivity Establishment (ICE) transport.
 
 Loopback Media Transport
 Loopback transport for testing.
 
 Secure RTP (SRTP) Media Transport
 Media transport adapter to add SRTP feature to existing transports.
 
 UDP Media Transport
 Implementation of media transport with UDP sockets.
 

Data Structures

struct  pjmedia_sock_info
 
struct  pjmedia_transport_op
 
struct  pjmedia_transport
 
struct  pjmedia_transport_specific_info
 
struct  pjmedia_transport_info
 
struct  pjmedia_tp_cb_param
 
struct  pjmedia_transport_attach_param
 

Enumerations

enum  pjmedia_tranport_media_option {
  PJMEDIA_TPMED_NO_TRANSPORT_CHECKING = 1 ,
  PJMEDIA_TPMED_RTCP_MUX = 2
}
 
enum  pjmedia_transport_type {
  PJMEDIA_TRANSPORT_TYPE_UDP ,
  PJMEDIA_TRANSPORT_TYPE_ICE ,
  PJMEDIA_TRANSPORT_TYPE_SRTP ,
  PJMEDIA_TRANSPORT_TYPE_LOOP ,
  PJMEDIA_TRANSPORT_TYPE_USER
}
 

Functions

void pjmedia_transport_info_init (pjmedia_transport_info *info)
 
pj_status_t pjmedia_transport_get_info (pjmedia_transport *tp, pjmedia_transport_info *info)
 
void * pjmedia_transport_info_get_spc_info (pjmedia_transport_info *info, pjmedia_transport_type type)
 
pjmedia_transportpjmedia_transport_info_get_transport (pjmedia_transport_info *info, pjmedia_transport_type type)
 
pj_status_t pjmedia_transport_attach2 (pjmedia_transport *tp, pjmedia_transport_attach_param *att_param)
 
pj_status_t pjmedia_transport_attach (pjmedia_transport *tp, void *user_data, const pj_sockaddr_t *rem_addr, const pj_sockaddr_t *rem_rtcp, unsigned addr_len, void(*rtp_cb)(void *user_data, void *pkt, pj_ssize_t), void(*rtcp_cb)(void *usr_data, void *pkt, pj_ssize_t))
 
void pjmedia_transport_detach (pjmedia_transport *tp, void *user_data)
 
pj_status_t pjmedia_transport_send_rtp (pjmedia_transport *tp, const void *pkt, pj_size_t size)
 
pj_status_t pjmedia_transport_send_rtcp (pjmedia_transport *tp, const void *pkt, pj_size_t size)
 
pj_status_t pjmedia_transport_send_rtcp2 (pjmedia_transport *tp, const pj_sockaddr_t *addr, unsigned addr_len, const void *pkt, pj_size_t size)
 
pj_status_t pjmedia_transport_media_create (pjmedia_transport *tp, pj_pool_t *sdp_pool, unsigned options, const pjmedia_sdp_session *rem_sdp, unsigned media_index)
 
pj_status_t pjmedia_transport_encode_sdp (pjmedia_transport *tp, pj_pool_t *sdp_pool, pjmedia_sdp_session *sdp, const pjmedia_sdp_session *rem_sdp, unsigned media_index)
 
pj_status_t pjmedia_transport_media_start (pjmedia_transport *tp, pj_pool_t *tmp_pool, const pjmedia_sdp_session *sdp_local, const pjmedia_sdp_session *sdp_remote, unsigned media_index)
 
pj_status_t pjmedia_transport_media_stop (pjmedia_transport *tp)
 
pj_status_t pjmedia_transport_close (pjmedia_transport *tp)
 
pj_status_t pjmedia_transport_simulate_lost (pjmedia_transport *tp, pjmedia_dir dir, unsigned pct_lost)
 

Detailed Description

The media transport is declared as pjmedia_transport "class", which declares "interfaces" to use the class in pjmedia_transport_op structure. For the user of the media transport (normally the user of media transport is media stream, see Streams), these transport "methods" are wrapped with API such as pjmedia_transport_attach(), so it should not need to call the function pointer inside pjmedia_transport_op directly.

The connection between Streams and media transport is shown in the diagram below:

Basic Media Transport Usage

The media transport's life-cycle normally follows the following stages.

Creating the Media Transport

Application creates the media transport when it needs to establish media session to remote peer. The media transport is created using specific function to create that particular transport; for example, for UDP media transport, it is created with pjmedia_transport_udp_create() or pjmedia_transport_udp_create2() functions. Different media transports will provide different API to create those transports.

Alternatively, application may create pool of media transports when it is first started up. Using this approach probably is better, since application has to specify the RTP port when sending the initial session establishment request (e.g. SIP INVITE request), thus if application only creates the media transport later when media is to be established (normally when 200/OK is received, or when 18x is received for early media), there is a possibility that the particular RTP port might have been occupied by other programs. Also it is more efficient since sockets don't need to be closed and re-opened between calls.

Attaching and Using the Media Transport.

Application specifies the media transport instance when creating the media session (pjmedia_session_create()). Alternatively, it may create the media stream directly with pjmedia_stream_create() and specify the transport instance in the argument. (Note: media session is a high-level abstraction for media communications between two endpoints, and it may contain more than one media streams, for example, an audio stream and a video stream).

When stream is created, it will "attach" itself to the media transport by calling pjmedia_transport_attach(), which is a thin wrapper which calls "attach()" method of the media transport's "virtual function pointer" (pjmedia_transport_op). Among other things, the stream specifies two callback functions to the transport: one callback function will be called by transport when it receives RTP packet, and another callback for incoming RTCP packet. The pjmedia_transport_attach() function also establish the destination of the outgoing RTP and RTCP packets.

When the stream needs to send outgoing RTP/RTCP packets, it will call pjmedia_transport_send_rtp() and pjmedia_transport_send_rtcp() of the media transport API, which is a thin wrapper to call send_rtp() and send_rtcp() methods in the media transport's "virtual function pointer" (pjmedia_transport_op).

When the stream is destroyed, it will "detach" itself from the media transport by calling pjmedia_transport_detach(), which is a thin wrapper which calls "detach()" method of the media transport's "virtual function pointer" (pjmedia_transport_op). After the transport is detached from its user (the stream), it will no longer report incoming RTP/RTCP packets to the stream, and it will refuse to send outgoing packets since the destination has been cleared.

Reusing the Media Transport.

After transport has been detached, application may re-attach the transport to another stream if it wants to. Detaching and re-attaching media transport may be preferable than closing and re-opening the transport, since it is more efficient (sockets don't need to be closed and re-opened). However it is up to the application to choose which method is most suitable for its uses.

Destroying the Media Transport.

Finally if application no longer needs the media transport, it will call pjmedia_transport_close() function, which is thin wrapper which calls "destroy()" method of the media transport's "virtual function pointer" (pjmedia_transport_op). This function releases all resources used by the transport, such as sockets and memory.

Interaction with SDP Offer/Answer

For basic UDP transport, the Basic Media Transport Usage above is sufficient to use the media transport. However, more complex media transports such as Secure RTP (SRTP) Media Transport and ICE Media Transport requires closer interactions with SDP offer and answer negotiation.

The media transports can interact with the SDP offer/answer via these APIs:

The usage of these API in the context of SDP offer answer will be described below.

Initializing Transport for New Session

Application must call pjmedia_transport_media_create() before using the transport for a new session.

Creating SDP Offer and Answer

The pjmedia_transport_encode_sdp() is used to put additional information from the transport to the local SDP, before the SDP is sent and negotiated with remote SDP.

When creating an offer, call pjmedia_transport_encode_sdp() with local SDP (and NULL as rem_sdp). The media transport will add the relevant attributes in the local SDP. Application then gives the local SDP to the invite session to be sent to remote agent.

When creating an answer, also call pjmedia_transport_encode_sdp(), but this time specify both local and remote SDP to the function. The media transport will once again modify the local SDP and add relevant attributes to the local SDP, if the appropriate attributes related to the transport functionality are present in remote offer. The remote SDP does not contain the relevant attributes, then the specific transport functionality will not be activated for the session.

The pjmedia_transport_encode_sdp() should also be called when application sends subsequent SDP offer or answer. The media transport will encode the appropriate attributes based on the state of the session.

Offer/Answer Completion

Once both local and remote SDP have been negotiated by the SDP Negotiation State Machine (Offer/Answer Model, RFC 3264) (normally this is part of PJSIP invite session), application should give both local and remote SDP to pjmedia_transport_media_start() so that the settings are activated for the session. This function should be called for both initial and subsequent SDP negotiation.

Stopping Transport

Once session is stop application must call pjmedia_transport_media_stop() to deactivate the transport feature. Application may reuse the transport for subsequent media session by repeating the pjmedia_transport_media_create(), pjmedia_transport_encode_sdp(), pjmedia_transport_media_start(), and pjmedia_transport_media_stop() above.

Implementing Media Transport

To implement a new type of media transport, one needs to "subclass" the media transport "class" (pjmedia_transport) by providing the "methods" in the media transport "interface" (pjmedia_transport_op), and provides a function to create this new type of transport (similar to pjmedia_transport_udp_create() function).

The media transport is expected to run indepently, that is there should be no polling like function to poll the transport for incoming RTP/RTCP packets. This normally can be done by registering the media sockets to the media endpoint's IOQueue, which allows the transport to be notified when incoming packet has arrived.

Alternatively, media transport may utilize thread(s) internally to wait for incoming packets. The thread then will call the appropriate RTP or RTCP callback provided by its user (stream) whenever packet is received. If the transport's user is a stream, then the callbacks provided by the stream will be thread-safe, so the transport may call these callbacks without having to serialize the access with some mutex protection. But the media transport may still have to protect its internal data with mutex protection, since it may be called by application's thread (for example, to send RTP/RTCP packets).

Enumeration Type Documentation

◆ pjmedia_tranport_media_option

This enumeration specifies the general behaviour of media processing

Enumerator
PJMEDIA_TPMED_NO_TRANSPORT_CHECKING 

When this flag is specified, the transport will not perform media transport validation, this is useful when transport is stacked with other transport, for example when transport UDP is stacked under transport SRTP, media transport validation only need to be done by transport SRTP.

PJMEDIA_TPMED_RTCP_MUX 

When this flag is specified, the transport will allow multiplexing RTP and RTCP, i.e. if the remote agrees, RTCP will be sent using the same socket for RTP.

◆ pjmedia_transport_type

Media transport type.

Enumerator
PJMEDIA_TRANSPORT_TYPE_UDP 

Media transport using standard UDP

PJMEDIA_TRANSPORT_TYPE_ICE 

Media transport using ICE

PJMEDIA_TRANSPORT_TYPE_SRTP 

Media transport SRTP, this transport is actually security adapter to be stacked with other transport to enable encryption on the underlying transport.

PJMEDIA_TRANSPORT_TYPE_LOOP 

Loopback media transport

PJMEDIA_TRANSPORT_TYPE_USER 

Start of user defined transport.

Function Documentation

◆ pjmedia_transport_info_init()

void pjmedia_transport_info_init ( pjmedia_transport_info info)

Initialize transport info.

Parameters
infoTransport info to be initialized.

References pj_bzero(), PJ_INLINE, PJ_INVALID_SOCKET, pjmedia_sock_info::rtcp_sock, pjmedia_sock_info::rtp_sock, and pjmedia_transport_info::sock_info.

◆ pjmedia_transport_get_info()

pj_status_t pjmedia_transport_get_info ( pjmedia_transport tp,
pjmedia_transport_info info 
)

Get media transport info from the specified transport and all underlying transports if any. The transport also contains information about socket info which describes the local address of the transport, and would be needed for example to fill in the "c=" and "m=" line of local SDP.

Parameters
tpThe transport.
infoMedia transport info to be initialized.
Returns
PJ_SUCCESS on success.

References pjmedia_transport_op::get_info, pjmedia_transport::op, PJ_ENOTSUP, and PJ_INLINE.

◆ pjmedia_transport_info_get_spc_info()

void * pjmedia_transport_info_get_spc_info ( pjmedia_transport_info info,
pjmedia_transport_type  type 
)

Utility API to get transport type specific info from the specified media transport info.

Parameters
infoMedia transport info.
typeMedia transport type.
Returns
Pointer to media transport specific info, or NULL if specific info for the transport type is not found.

References pjmedia_transport_specific_info::buffer, PJ_INLINE, pjmedia_transport_info::spc_info, pjmedia_transport_info::specific_info_cnt, and pjmedia_transport_specific_info::type.

◆ pjmedia_transport_info_get_transport()

pjmedia_transport * pjmedia_transport_info_get_transport ( pjmedia_transport_info info,
pjmedia_transport_type  type 
)

Utility API to get the transport instance from the specified media transport info.

Parameters
infoMedia transport info.
typeMedia transport type.
Returns
The media transport instance, or NULL if the transport type is not found.

References PJ_INLINE, pjmedia_transport_info::spc_info, pjmedia_transport_info::specific_info_cnt, pjmedia_transport_specific_info::tp, and pjmedia_transport_specific_info::type.

◆ pjmedia_transport_attach2()

pj_status_t pjmedia_transport_attach2 ( pjmedia_transport tp,
pjmedia_transport_attach_param att_param 
)

Attach callbacks to be called on receipt of incoming RTP/RTCP packets. This is just a simple wrapper which calls attach2() member of the transport if it is implemented, otherwise it calls attach() member of the transport.

Parameters
tpThe media transport.
att_paramThe transport attach param.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_attach_param::addr_len, pjmedia_transport_op::attach, pjmedia_transport_op::attach2, pjmedia_transport::op, PJ_INLINE, pjmedia_transport_attach_param::rem_addr, pjmedia_transport_attach_param::rem_rtcp, pjmedia_transport_attach_param::rtcp_cb, pjmedia_transport_attach_param::rtp_cb, and pjmedia_transport_attach_param::user_data.

◆ pjmedia_transport_attach()

pj_status_t pjmedia_transport_attach ( pjmedia_transport tp,
void *  user_data,
const pj_sockaddr_t rem_addr,
const pj_sockaddr_t rem_rtcp,
unsigned  addr_len,
void(*)(void *user_data, void *pkt, pj_ssize_t rtp_cb,
void(*)(void *usr_data, void *pkt, pj_ssize_t rtcp_cb 
)

Attach callbacks to be called on receipt of incoming RTP/RTCP packets. This is just a simple wrapper which calls attach() member of the transport.

Parameters
tpThe media transport.
user_dataArbitrary user data to be set when the callbacks are called.
rem_addrRemote RTP address to send RTP packet to.
rem_rtcpOptional remote RTCP address. If the argument is NULL or if the address is zero, the RTCP address will be calculated from the RTP address (which is RTP port plus one).
addr_lenLength of the remote address.
rtp_cbCallback to be called when RTP packet is received on the transport.
rtcp_cbCallback to be called when RTCP packet is received on the transport.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_attach_param::addr_len, pjmedia_transport_op::attach, pjmedia_transport_op::attach2, pjmedia_transport::op, pj_bzero(), PJ_INLINE, pj_memcpy(), pj_sockaddr_cp(), pj_sockaddr_get_port(), pj_sockaddr_has_addr(), pj_sockaddr_set_port(), pjmedia_transport_attach_param::rem_addr, pjmedia_transport_attach_param::rem_rtcp, pjmedia_transport_attach_param::rtcp_cb, pjmedia_transport_attach_param::rtp_cb, and pjmedia_transport_attach_param::user_data.

◆ pjmedia_transport_detach()

void pjmedia_transport_detach ( pjmedia_transport tp,
void *  user_data 
)

Detach callbacks from the transport. This is just a simple wrapper which calls detach() member of the transport. After the transport is detached, it will ignore incoming RTP/RTCP packets, and will refuse to send outgoing RTP/RTCP packets. Application may re-attach the media transport to another transport user (e.g. stream) after the transport has been detached.

Parameters
tpThe media transport.
user_dataUser data which must match the previously set value on attachment.

References pjmedia_transport_op::detach, pjmedia_transport::op, and PJ_INLINE.

◆ pjmedia_transport_send_rtp()

pj_status_t pjmedia_transport_send_rtp ( pjmedia_transport tp,
const void *  pkt,
pj_size_t  size 
)

Send RTP packet with the specified media transport. This is just a simple wrapper which calls send_rtp() member of the transport. The RTP packet will be delivered to the destination address specified in pjmedia_transport_attach() function.

Parameters
tpThe media transport.
pktThe packet to send.
sizeSize of the packet.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport::op, PJ_INLINE, and pjmedia_transport_op::send_rtp.

◆ pjmedia_transport_send_rtcp()

pj_status_t pjmedia_transport_send_rtcp ( pjmedia_transport tp,
const void *  pkt,
pj_size_t  size 
)

Send RTCP packet with the specified media transport. This is just a simple wrapper which calls send_rtcp() member of the transport. The RTCP packet will be delivered to the destination address specified in pjmedia_transport_attach() function.

Parameters
tpThe media transport.
pktThe packet to send.
sizeSize of the packet.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport::op, PJ_INLINE, and pjmedia_transport_op::send_rtcp.

◆ pjmedia_transport_send_rtcp2()

pj_status_t pjmedia_transport_send_rtcp2 ( pjmedia_transport tp,
const pj_sockaddr_t addr,
unsigned  addr_len,
const void *  pkt,
pj_size_t  size 
)

Send RTCP packet with the specified media transport. This is just a simple wrapper which calls send_rtcp2() member of the transport. The RTCP packet will be delivered to the destination address specified in param addr, if addr is NULL, RTCP packet will be delivered to destination address specified in pjmedia_transport_attach() function.

Parameters
tpThe media transport.
addrThe destination address.
addr_lenLength of destination address.
pktThe packet to send.
sizeSize of the packet.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport::op, PJ_INLINE, and pjmedia_transport_op::send_rtcp2.

◆ pjmedia_transport_media_create()

pj_status_t pjmedia_transport_media_create ( pjmedia_transport tp,
pj_pool_t sdp_pool,
unsigned  options,
const pjmedia_sdp_session rem_sdp,
unsigned  media_index 
)

Prepare the media transport for a new media session, Application must call this function before starting a new media session using this transport.

This is just a simple wrapper which calls media_create() member of the transport.

Parameters
tpThe media transport.
sdp_poolPool object to allocate memory related to SDP messaging components.
optionsOption flags, from pjmedia_tranport_media_option
rem_sdpRemote SDP if local SDP is an answer, otherwise specify NULL if SDP is an offer.
media_indexMedia index in SDP.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_op::media_create, pjmedia_transport::op, and PJ_INLINE.

◆ pjmedia_transport_encode_sdp()

pj_status_t pjmedia_transport_encode_sdp ( pjmedia_transport tp,
pj_pool_t sdp_pool,
pjmedia_sdp_session sdp,
const pjmedia_sdp_session rem_sdp,
unsigned  media_index 
)

Put transport specific information into the SDP. This function can be called to put transport specific information in the initial or subsequent SDP offer or answer.

This is just a simple wrapper which calls encode_sdp() member of the transport.

Parameters
tpThe media transport.
sdp_poolPool object to allocate memory related to SDP messaging components.
sdpThe local SDP to be filled in information from the media transport.
rem_sdpRemote SDP if local SDP is an answer, otherwise specify NULL if SDP is an offer.
media_indexMedia index in SDP.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_op::encode_sdp, pjmedia_transport::op, and PJ_INLINE.

◆ pjmedia_transport_media_start()

pj_status_t pjmedia_transport_media_start ( pjmedia_transport tp,
pj_pool_t tmp_pool,
const pjmedia_sdp_session sdp_local,
const pjmedia_sdp_session sdp_remote,
unsigned  media_index 
)

Start the transport session with the settings in both local and remote SDP. The actual work that is done by this function depends on the underlying transport type. For SRTP, this will activate the encryption and decryption based on the keys found the SDPs. For ICE, this will start ICE negotiation according to the information found in the SDPs.

This is just a simple wrapper which calls media_start() member of the transport.

Parameters
tpThe media transport.
tmp_poolThe memory pool for allocating temporary objects.
sdp_localLocal SDP.
sdp_remoteRemote SDP.
media_indexMedia index in the SDP.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_op::media_start, pjmedia_transport::op, and PJ_INLINE.

◆ pjmedia_transport_media_stop()

pj_status_t pjmedia_transport_media_stop ( pjmedia_transport tp)

This API should be called when the session is stopped, to allow the media transport to release its resources used for the session.

This is just a simple wrapper which calls media_stop() member of the transport.

Parameters
tpThe media transport.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_op::media_stop, pjmedia_transport::op, and PJ_INLINE.

◆ pjmedia_transport_close()

pj_status_t pjmedia_transport_close ( pjmedia_transport tp)

Close media transport. This is just a simple wrapper which calls destroy() member of the transport. This function will free all resources created by this transport (such as sockets, memory, etc.).

Parameters
tpThe media transport.
Returns
PJ_SUCCESS on success, or the appropriate error code.

References pjmedia_transport_op::destroy, pjmedia_transport::op, PJ_INLINE, and PJ_SUCCESS.

◆ pjmedia_transport_simulate_lost()

pj_status_t pjmedia_transport_simulate_lost ( pjmedia_transport tp,
pjmedia_dir  dir,
unsigned  pct_lost 
)

Simulate packet lost in the specified direction (for testing purposes). When enabled, the transport will randomly drop packets to the specified direction.

Parameters
tpThe media transport.
dirMedia direction to which packets will be randomly dropped.
pct_lostPercent lost (0-100). Set to zero to disable packet lost simulation.
Returns
PJ_SUCCESS on success.

References pjmedia_transport::op, PJ_INLINE, and pjmedia_transport_op::simulate_lost.

 


PJMEDIA small footprint Open Source media stack
Copyright (C) 2006-2008 Teluu Inc.