summaryrefslogtreecommitdiffstats
path: root/tinyRTP/src/rtcp/trtp_rtcp_rblock.c
blob: 9a85b4b213b6f79145788fe0f92d479e2c7027f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (C) 2012 Doubango Telecom <http://www.doubango.org>
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
*	
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO 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.
*	
* DOUBANGO 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 DOUBANGO.
*
*/
#include "tinyrtp/rtcp/trtp_rtcp_rblock.h"

#include "tnet_endianness.h"
#include "tsk_debug.h"

/* 6.4.1 SR: Sender Report RTCP Packet

	   +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
report |                 SSRC_1 (SSRC of first source)                 |
block  +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1    | fraction lost |       cumulative number of packets lost       |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |           extended highest sequence number received           |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |                      interarrival jitter                      |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |                         last SR (LSR)                         |
       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
       |                   delay since last SR (DLSR)                  |
       +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*/
static tsk_object_t* trtp_rtcp_rblock_ctor(tsk_object_t * self, va_list * app)
{
	trtp_rtcp_rblock_t *block = self;
	if(block){
	}
	return self;
}
static tsk_object_t* trtp_rtcp_rblock_dtor(tsk_object_t * self)
{ 
	trtp_rtcp_rblock_t *block = self;
	if(block){
	}

	return self;
}
static const tsk_object_def_t trtp_rtcp_rblock_def_s = 
{
	sizeof(trtp_rtcp_rblock_t),
	trtp_rtcp_rblock_ctor, 
	trtp_rtcp_rblock_dtor,
	tsk_null, 
};
const tsk_object_def_t *trtp_rtcp_rblock_def_t = &trtp_rtcp_rblock_def_s;

trtp_rtcp_rblock_t* trtp_rtcp_rblock_create_null()
{
	return tsk_object_new(trtp_rtcp_rblock_def_t);
}

trtp_rtcp_rblock_t* trtp_rtcp_rblock_deserialize(const void* data, tsk_size_t size)
{
	trtp_rtcp_rblock_t* rblock = tsk_null;
	const uint8_t* pdata = (const uint8_t*)data;
	if(!data || size < TRTP_RTCP_RBLOCK_SIZE){
		TSK_DEBUG_ERROR("Invalid parameter");
		return tsk_null;
	}
	if((rblock = trtp_rtcp_rblock_create_null())){
		rblock->ssrc = (uint32_t)tnet_ntohl_2(pdata);
		rblock->fraction = pdata[4];
		rblock->cumulative_no_lost = (tnet_ntohl_2(&pdata[5]) >> 8) & 0xFFFFFF;
		rblock->last_seq = (uint32_t)tnet_ntohl_2(&pdata[8]);
		rblock->jitter = (uint32_t)tnet_ntohl_2(&pdata[12]);
		rblock->lsr = (uint32_t)tnet_ntohl_2(&pdata[16]);
		rblock->dlsr = (uint32_t)tnet_ntohl_2(&pdata[20]);
	}
	else{
		TSK_DEBUG_ERROR("Failed to create report block object");
	}

	return rblock;
}

// Up to the
int trtp_rtcp_rblock_deserialize_list(const void* data, tsk_size_t _size, trtp_rtcp_rblocks_L_t* dest_list)
{
	int32_t size = (int32_t)_size;
	const uint8_t* pdata = (const uint8_t*)data;
	trtp_rtcp_rblock_t* rblock;

	if(!data || !size || !dest_list){
		TSK_DEBUG_ERROR("Invalid parameter");
		return -1;
	}

	while(size >= TRTP_RTCP_RBLOCK_SIZE){
		if((rblock = trtp_rtcp_rblock_deserialize(pdata, size))){
			tsk_list_push_back_data(dest_list, (void**)&rblock);
		}
		if((size -= TRTP_RTCP_RBLOCK_SIZE) > 0){
			pdata += TRTP_RTCP_RBLOCK_SIZE;
		}
	}
	return 0;
}

int trtp_rtcp_rblock_serialize_to(const trtp_rtcp_rblock_t* self, void* data, tsk_size_t size)
{
	uint8_t* pdata = (uint8_t*)data;
	if(!self || !data || size < TRTP_RTCP_RBLOCK_SIZE){
		TSK_DEBUG_ERROR("Invalid parameter");
		return -1;
	}

	pdata[0] = self->ssrc >> 24;
	pdata[1] = (self->ssrc >> 16) & 0xFF;
	pdata[2] = (self->ssrc >> 8) & 0xFF;
	pdata[3] = (self->ssrc & 0xFF);
	pdata[4] = self->fraction;
	pdata[5] = (self->cumulative_no_lost >> 16) & 0xFF;
	pdata[6] = (self->cumulative_no_lost >> 8) & 0xFF;
	pdata[7] = (self->cumulative_no_lost & 0xFF);
	pdata[8] = self->last_seq >> 24;
	pdata[9] = (self->last_seq >> 16) & 0xFF;
	pdata[10] = (self->last_seq >> 8) & 0xFF;
	pdata[11] = (self->last_seq & 0xFF);
	pdata[12] = self->jitter >> 24;
	pdata[13] = (self->jitter >> 16) & 0xFF;
	pdata[14] = (self->jitter >> 8) & 0xFF;
	pdata[15] = (self->jitter & 0xFF);
	pdata[16] = self->lsr >> 24;
	pdata[17] = (self->lsr >> 16) & 0xFF;
	pdata[18] = (self->lsr >> 8) & 0xFF;
	pdata[19] = (self->lsr & 0xFF);
	pdata[20] = self->dlsr >> 24;
	pdata[21] = (self->dlsr >> 16) & 0xFF;
	pdata[22] = (self->dlsr >> 8) & 0xFF;
	pdata[23] = (self->dlsr & 0xFF);

	return 0;
}
OpenPOWER on IntegriCloud