Changeset 3932 for common/trunk/src/rtp.h
- Timestamp:
- 11/15/06 18:11:13 (7 years ago)
- Files:
-
- 1 modified
-
common/trunk/src/rtp.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
common/trunk/src/rtp.h
r690 r3932 62 62 /* WARNING: Don't change the size of the first portion of the */ 63 63 /* struct without changing RTP_PACKET_HEADER_SIZE to match. */ 64 struct _meta {64 struct _meta { 65 65 uint32_t *csrc; 66 66 char *data; … … 69 69 uint16_t extn_len; /* Size of the extension in 32 bit words minus one */ 70 70 uint16_t extn_type; /* Extension type field in the RTP packet header */ 71 } meta;71 } meta; 72 72 73 73 struct _fields { … … 205 205 uint8_t *userdata); 206 206 207 int rtp_set_umtp_dest(struct rtp *session, 208 const char *addr, 209 uint16_t port, 210 uint16_t src_cookie, 211 uint16_t dst_cookie); 212 207 213 void rtp_send_bye(struct rtp *session); 208 214 void rtp_done(struct rtp *session); … … 250 256 uint8_t *rtp_get_userdata(struct rtp *session); 251 257 258 int rtp_get_ssrc_count(struct rtp *session); 259 252 260 #endif /* __RTP_H__ */
