2014-07-21 07:10:57 +08:00
|
|
|
/** rtp.h
|
2014-02-17 09:01:30 +08:00
|
|
|
*
|
2015-02-18 06:34:40 +08:00
|
|
|
* Copyright (C) 2013-2015 Tox project All Rights Reserved.
|
2014-01-25 08:32:33 +08:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-02-17 06:30:20 +08:00
|
|
|
#ifndef RTP_H
|
|
|
|
#define RTP_H
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2016-09-01 07:33:20 +08:00
|
|
|
#include "bwcontroller.h"
|
2016-09-11 22:47:51 +08:00
|
|
|
|
|
|
|
#include "../toxcore/Messenger.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2014-01-27 04:02:11 +08:00
|
|
|
|
2015-02-18 06:34:40 +08:00
|
|
|
/**
|
2015-10-11 05:54:23 +08:00
|
|
|
* Payload type identifier. Also used as rtp callback prefix.
|
2015-02-18 06:34:40 +08:00
|
|
|
*/
|
2015-04-16 08:00:34 +08:00
|
|
|
enum {
|
2015-02-18 06:34:40 +08:00
|
|
|
rtp_TypeAudio = 192,
|
2015-04-22 08:09:37 +08:00
|
|
|
rtp_TypeVideo,
|
2015-04-16 08:00:34 +08:00
|
|
|
};
|
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
struct RTPHeader {
|
|
|
|
/* Standard RTP header */
|
|
|
|
#ifndef WORDS_BIGENDIAN
|
2016-09-08 07:29:44 +08:00
|
|
|
uint16_t cc: 4; /* Contributing sources count */
|
|
|
|
uint16_t xe: 1; /* Extra header */
|
|
|
|
uint16_t pe: 1; /* Padding */
|
|
|
|
uint16_t ve: 2; /* Version */
|
2015-10-11 05:54:23 +08:00
|
|
|
|
2016-09-08 07:29:44 +08:00
|
|
|
uint16_t pt: 7; /* Payload type */
|
|
|
|
uint16_t ma: 1; /* Marker */
|
2015-10-11 05:54:23 +08:00
|
|
|
#else
|
2016-09-08 07:29:44 +08:00
|
|
|
uint16_t ve: 2; /* Version */
|
|
|
|
uint16_t pe: 1; /* Padding */
|
|
|
|
uint16_t xe: 1; /* Extra header */
|
|
|
|
uint16_t cc: 4; /* Contributing sources count */
|
2015-10-11 05:54:23 +08:00
|
|
|
|
2016-09-08 07:29:44 +08:00
|
|
|
uint16_t ma: 1; /* Marker */
|
|
|
|
uint16_t pt: 7; /* Payload type */
|
2015-10-11 05:54:23 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
uint16_t sequnum;
|
|
|
|
uint32_t timestamp;
|
|
|
|
uint32_t ssrc;
|
|
|
|
uint32_t csrc[16];
|
2015-02-18 06:34:40 +08:00
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
/* Non-standard TOX-specific fields */
|
|
|
|
uint16_t cpart;/* Data offset of the current part */
|
|
|
|
uint16_t tlen; /* Total message lenght */
|
|
|
|
} __attribute__ ((packed));
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
/* Check alignment */
|
2016-01-14 06:14:51 +08:00
|
|
|
typedef char __fail_if_misaligned_1 [ sizeof(struct RTPHeader) == 80 ? 1 : -1 ];
|
2015-10-11 05:54:23 +08:00
|
|
|
|
|
|
|
struct RTPMessage {
|
|
|
|
uint16_t len;
|
|
|
|
|
|
|
|
struct RTPHeader header;
|
|
|
|
uint8_t data[];
|
|
|
|
} __attribute__ ((packed));
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
/* Check alignment */
|
2016-01-14 06:14:51 +08:00
|
|
|
typedef char __fail_if_misaligned_2 [ sizeof(struct RTPMessage) == 82 ? 1 : -1 ];
|
2014-01-25 08:32:33 +08:00
|
|
|
|
|
|
|
/**
|
2014-11-29 20:42:19 +08:00
|
|
|
* RTP control session.
|
2014-01-25 08:32:33 +08:00
|
|
|
*/
|
2015-02-18 06:34:40 +08:00
|
|
|
typedef struct {
|
2015-04-22 08:09:37 +08:00
|
|
|
uint8_t payload_type;
|
2015-10-11 05:54:23 +08:00
|
|
|
uint16_t sequnum; /* Sending sequence number */
|
|
|
|
uint16_t rsequnum; /* Receiving sequence number */
|
2015-04-22 08:09:37 +08:00
|
|
|
uint32_t rtimestamp;
|
|
|
|
uint32_t ssrc;
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2015-10-11 05:54:23 +08:00
|
|
|
struct RTPMessage *mp; /* Expected parted message */
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2015-04-22 08:09:37 +08:00
|
|
|
Messenger *m;
|
2015-10-11 05:54:23 +08:00
|
|
|
uint32_t friend_number;
|
2015-04-22 08:09:37 +08:00
|
|
|
|
2015-11-11 17:33:03 +08:00
|
|
|
BWController *bwc;
|
2015-04-22 08:09:37 +08:00
|
|
|
void *cs;
|
2015-10-11 05:54:23 +08:00
|
|
|
int (*mcb) (void *, struct RTPMessage *msg);
|
2014-01-25 08:32:33 +08:00
|
|
|
} RTPSession;
|
|
|
|
|
|
|
|
|
2016-09-01 07:38:58 +08:00
|
|
|
RTPSession *rtp_new (int payload_type, Messenger *m, uint32_t friendnumber,
|
2015-11-11 17:33:03 +08:00
|
|
|
BWController *bwc, void *cs,
|
2015-10-11 05:54:23 +08:00
|
|
|
int (*mcb) (void *, struct RTPMessage *));
|
|
|
|
void rtp_kill (RTPSession *session);
|
|
|
|
int rtp_allow_receiving (RTPSession *session);
|
|
|
|
int rtp_stop_receiving (RTPSession *session);
|
|
|
|
int rtp_send_data (RTPSession *session, const uint8_t *data, uint16_t length);
|
2014-01-25 08:32:33 +08:00
|
|
|
|
2015-02-17 06:30:20 +08:00
|
|
|
#endif /* RTP_H */
|