Changeset 1114 for pjproject/trunk/pjmedia/include/pjmedia/rtp.h
- Timestamp:
- Mar 29, 2007 9:54:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia/rtp.h
r974 r1114 78 78 79 79 /** 80 * RTP packet header. 80 * RTP packet header. Note that all RTP functions here will work with this 81 * header in network byte order. 81 82 */ 82 83 #pragma pack(1) … … 230 231 * @param ses The session. 231 232 * @param default_pt Default payload type. 232 * @param sender_ssrc SSRC used for outgoing packets .233 * @param sender_ssrc SSRC used for outgoing packets, in host byte order. 233 234 * 234 235 * @return PJ_SUCCESS if successfull. … … 263 264 * position regardless of any options present in the RTP packet. 264 265 * 266 * Note that this function does not modify the returned RTP header to 267 * host byte order. 268 * 265 269 * @param ses The session. 266 270 * @param pkt The received RTP packet. 267 271 * @param pkt_len The length of the packet. 268 * @param hdr Upon return will point to the location of the RTP header 269 * inside the packet. 272 * @param hdr Upon return will point to the location of the RTP 273 * header inside the packet. Note that the RTP header 274 * will be given back as is, meaning that the fields 275 * will be in network byte order. 270 276 * @param payload Upon return will point to the location of the 271 277 * payload inside the packet. … … 286 292 * 287 293 * @param ses The session. 288 * @param hdr The RTP header of the incoming packet. 294 * @param hdr The RTP header of the incoming packet. The header must 295 * be given with fields in network byte order. 289 296 * @param seq_st Optional structure to receive the status of the RTP packet 290 297 * processing.
Note: See TracChangeset
for help on using the changeset viewer.