summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-07-25 10:39:34 -0400
committerirungentoo <irungentoo@gmail.com>2014-07-25 10:39:34 -0400
commitd052bbc3ebb378c9a69bbd7e35f001da2e2782aa (patch)
treeb3ecd79c4f3145101bf8494ee5c6044b160eafeb /toxav/rtp.c
parent84c28337d248bad2319b5c001108b198dbd6bc5c (diff)
Start sequence number at zero instead of one.
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 17319f81..595c58cc 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -551,7 +551,7 @@ RTPSession *rtp_init_session ( int payload_type, Messenger *messenger, int frien
551 551
552 _retu->dest = friend_num; 552 _retu->dest = friend_num;
553 553
554 _retu->rsequnum = _retu->sequnum = 1; 554 _retu->rsequnum = _retu->sequnum = 0;
555 555
556 _retu->ext_header = NULL; /* When needed allocate */ 556 _retu->ext_header = NULL; /* When needed allocate */
557 557