summaryrefslogtreecommitdiff
path: root/toxav/rtp.h
diff options
context:
space:
mode:
authormannol <eniz_vukovic@hotmail.com>2014-03-07 03:13:04 +0100
committermannol <eniz_vukovic@hotmail.com>2014-03-07 03:13:04 +0100
commit6a78e2e71c1471b89646a71a1adeb0529cfb73d4 (patch)
tree1d4a05504f63efe64339155ae30e31799bafda57 /toxav/rtp.h
parent71284fabf881604ace3167830a0b1667832e971f (diff)
Fixed several bugs and added some features
Diffstat (limited to 'toxav/rtp.h')
-rwxr-xr-x[-rw-r--r--]toxav/rtp.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/toxav/rtp.h b/toxav/rtp.h
index c2b68b01..58b16ab1 100644..100755
--- a/toxav/rtp.h
+++ b/toxav/rtp.h
@@ -42,13 +42,13 @@
42 */ 42 */
43 43
44typedef struct _RTPHeader { 44typedef struct _RTPHeader {
45 uint8_t flags; /* Version(2),Padding(1), Ext(1), Cc(4) */ 45 uint8_t flags; /* Version(2),Padding(1), Ext(1), Cc(4) */
46 uint8_t marker_payloadt; /* Marker(1), PlayLoad Type(7) */ 46 uint8_t marker_payloadt; /* Marker(1), PlayLoad Type(7) */
47 uint16_t sequnum; /* Sequence Number */ 47 uint16_t sequnum; /* Sequence Number */
48 uint32_t timestamp; /* Timestamp */ 48 uint32_t timestamp; /* Timestamp */
49 uint32_t ssrc; /* SSRC */ 49 uint32_t ssrc; /* SSRC */
50 uint32_t *csrc; /* CSRC's table */ 50 uint32_t csrc[16]; /* CSRC's table */
51 uint32_t length; /* Length of the header in payload string. */ 51 uint32_t length; /* Length of the header in payload string. */
52 52
53} RTPHeader; 53} RTPHeader;
54 54