2014-07-21 07:10:57 +08:00
|
|
|
/** rtp.h
|
2014-02-17 09:01:30 +08:00
|
|
|
*
|
2014-01-25 08:32:33 +08:00
|
|
|
* Copyright (C) 2013 Tox project All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This file is part of Tox.
|
|
|
|
*
|
|
|
|
* Tox is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Tox is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Tox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TOXRTP
|
|
|
|
#define __TOXRTP
|
|
|
|
|
|
|
|
#define RTP_VERSION 2
|
|
|
|
#include <inttypes.h>
|
2014-11-18 07:46:46 +08:00
|
|
|
// #include <pthread.h>
|
2014-02-16 03:44:33 +08:00
|
|
|
|
|
|
|
#include "../toxcore/Messenger.h"
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2014-01-25 21:41:04 +08:00
|
|
|
#define MAX_SEQU_NUM 65535
|
2014-02-16 03:44:33 +08:00
|
|
|
#define MAX_RTP_SIZE 65535
|
2014-01-27 04:02:11 +08:00
|
|
|
|
2014-11-29 20:42:19 +08:00
|
|
|
typedef enum {
|
|
|
|
rtp_ErrorSending = -40
|
|
|
|
} RTPError;
|
2014-01-25 08:32:33 +08:00
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Standard rtp header
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
|
|
|
typedef struct _RTPHeader {
|
2014-03-07 10:13:04 +08:00
|
|
|
uint8_t flags; /* Version(2),Padding(1), Ext(1), Cc(4) */
|
|
|
|
uint8_t marker_payloadt; /* Marker(1), PlayLoad Type(7) */
|
|
|
|
uint16_t sequnum; /* Sequence Number */
|
|
|
|
uint32_t timestamp; /* Timestamp */
|
|
|
|
uint32_t ssrc; /* SSRC */
|
|
|
|
uint32_t csrc[16]; /* CSRC's table */
|
|
|
|
uint32_t length; /* Length of the header in payload string. */
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
} RTPHeader;
|
|
|
|
|
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Standard rtp extension header.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
|
|
|
typedef struct _RTPExtHeader {
|
|
|
|
uint16_t type; /* Extension profile */
|
|
|
|
uint16_t length; /* Number of extensions */
|
2014-02-17 09:01:30 +08:00
|
|
|
uint32_t *table; /* Extension's table */
|
|
|
|
|
2014-01-25 08:32:33 +08:00
|
|
|
} RTPExtHeader;
|
|
|
|
|
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Standard rtp message.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
|
|
|
typedef struct _RTPMessage {
|
2014-02-17 09:01:30 +08:00
|
|
|
RTPHeader *header;
|
|
|
|
RTPExtHeader *ext_header;
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2014-02-01 19:52:48 +08:00
|
|
|
uint8_t data[MAX_RTP_SIZE];
|
2014-01-25 08:32:33 +08:00
|
|
|
uint32_t length;
|
|
|
|
|
2014-02-17 09:01:30 +08:00
|
|
|
struct _RTPMessage *next;
|
2014-01-25 08:32:33 +08:00
|
|
|
} RTPMessage;
|
|
|
|
|
|
|
|
/**
|
2014-11-29 20:42:19 +08:00
|
|
|
* RTP control session.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
|
|
|
typedef struct _RTPSession {
|
|
|
|
uint8_t version;
|
|
|
|
uint8_t padding;
|
|
|
|
uint8_t extension;
|
|
|
|
uint8_t cc;
|
|
|
|
uint8_t marker;
|
|
|
|
uint8_t payload_type;
|
|
|
|
uint16_t sequnum; /* Set when sending */
|
|
|
|
uint16_t rsequnum; /* Check when recving msg */
|
|
|
|
uint32_t timestamp;
|
|
|
|
uint32_t ssrc;
|
2014-02-17 09:01:30 +08:00
|
|
|
uint32_t *csrc;
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
/* If some additional data must be sent via message
|
|
|
|
* apply it here. Only by allocating this member you will be
|
|
|
|
* automatically placing it within a message.
|
|
|
|
*/
|
2014-02-17 09:01:30 +08:00
|
|
|
RTPExtHeader *ext_header;
|
|
|
|
|
2014-01-25 08:32:33 +08:00
|
|
|
/* Msg prefix for core to know when recving */
|
|
|
|
uint8_t prefix;
|
|
|
|
|
2014-02-16 03:44:33 +08:00
|
|
|
int dest;
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2014-11-18 07:46:46 +08:00
|
|
|
struct _CSSession *cs;
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
} RTPSession;
|
|
|
|
|
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Must be called before calling any other rtp function.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
2014-11-18 07:46:46 +08:00
|
|
|
RTPSession *rtp_new ( int payload_type, Messenger *messenger, int friend_num );
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2014-05-03 07:46:03 +08:00
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Terminate the session.
|
2014-05-03 07:46:03 +08:00
|
|
|
*/
|
2014-11-18 07:46:46 +08:00
|
|
|
void rtp_kill ( RTPSession *session, Messenger *messenger );
|
2014-05-03 07:46:03 +08:00
|
|
|
|
2014-01-25 08:32:33 +08:00
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Sends msg to _RTPSession::dest
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
2014-02-17 09:01:30 +08:00
|
|
|
int rtp_send_msg ( RTPSession *session, Messenger *messenger, const uint8_t *data, uint16_t length );
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
/**
|
2014-11-18 07:46:46 +08:00
|
|
|
* Dealloc msg.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
2014-02-17 09:01:30 +08:00
|
|
|
void rtp_free_msg ( RTPSession *session, RTPMessage *msg );
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __TOXRTP */
|