2021-06-04 11:21:18 +00:00
|
|
|
#include "h26x.hh"
|
2021-06-01 07:54:23 +00:00
|
|
|
|
2021-06-04 11:21:18 +00:00
|
|
|
#include "../rtp.hh"
|
|
|
|
#include "../queue.hh"
|
2021-06-02 07:25:40 +00:00
|
|
|
#include "socket.hh"
|
2021-06-01 07:54:23 +00:00
|
|
|
#include "debug.hh"
|
2019-09-05 07:16:48 +00:00
|
|
|
|
2021-06-02 07:25:40 +00:00
|
|
|
|
2019-03-30 10:22:57 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <cstring>
|
2019-08-12 06:25:17 +00:00
|
|
|
#include <iostream>
|
2019-09-05 07:16:48 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <queue>
|
2019-03-30 10:22:57 +00:00
|
|
|
|
|
|
|
|
2021-06-01 07:54:23 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
|
2019-09-11 08:12:10 +00:00
|
|
|
|
2019-09-11 07:06:52 +00:00
|
|
|
#define PTR_DIFF(a, b) ((ptrdiff_t)((char *)(a) - (char *)(b)))
|
|
|
|
|
|
|
|
#define haszero64_le(v) (((v) - 0x0101010101010101) & ~(v) & 0x8080808080808080UL)
|
|
|
|
#define haszero32_le(v) (((v) - 0x01010101) & ~(v) & 0x80808080UL)
|
|
|
|
|
|
|
|
#define haszero64_be(v) (((v) - 0x1010101010101010) & ~(v) & 0x0808080808080808UL)
|
|
|
|
#define haszero32_be(v) (((v) - 0x10101010) & ~(v) & 0x08080808UL)
|
|
|
|
|
2020-01-09 08:10:58 +00:00
|
|
|
#ifndef __LITTLE_ENDIAN
|
|
|
|
#define __LITTLE_ENDIAN 1337
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __BYTE_ORDER
|
|
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
|
|
#endif
|
|
|
|
|
2020-12-01 07:31:20 +00:00
|
|
|
static inline unsigned __find_h26x_start(uint32_t value)
|
2019-09-11 07:06:52 +00:00
|
|
|
{
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
uint16_t u = (value >> 16) & 0xffff;
|
|
|
|
uint16_t l = (value >> 0) & 0xffff;
|
|
|
|
|
|
|
|
bool t1 = (l == 0);
|
|
|
|
bool t2 = ((u & 0xff) == 0x01);
|
|
|
|
bool t3 = (u == 0x0100);
|
|
|
|
bool t4 = (((l >> 8) & 0xff) == 0);
|
|
|
|
#else
|
|
|
|
uint16_t u = (value >> 0) & 0xffff;
|
|
|
|
uint16_t l = (value >> 16) & 0xffff;
|
|
|
|
|
|
|
|
bool t1 = (l == 0);
|
|
|
|
bool t2 = (((u >> 8) & 0xff) == 0x01);
|
|
|
|
bool t3 = (u == 0x0001);
|
|
|
|
bool t4 = ((l & 0xff) == 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (t1) {
|
|
|
|
/* 0x00000001 */
|
|
|
|
if (t3)
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
/* "value" definitely has a start code (0x000001XX), but at this
|
|
|
|
* point we can't know for sure whether it's 3 or 4 bytes long.
|
|
|
|
*
|
|
|
|
* Return 5 to indicate that start length could not be determined
|
|
|
|
* and that caller must check previous dword's last byte for 0x00 */
|
|
|
|
if (t2)
|
|
|
|
return 5;
|
|
|
|
} else if (t4 && t3) {
|
|
|
|
/* 0xXX000001 */
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-14 09:31:37 +00:00
|
|
|
uvgrtp::formats::h26x::h26x(uvgrtp::socket* socket, uvgrtp::rtp* rtp, int flags) :
|
2021-09-09 09:26:57 +00:00
|
|
|
media(socket, rtp, flags), finfo_{}
|
2021-06-14 09:31:37 +00:00
|
|
|
{
|
2021-09-09 09:26:57 +00:00
|
|
|
finfo_.rtp_ctx = rtp;
|
2021-06-14 09:31:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uvgrtp::formats::h26x::~h26x()
|
|
|
|
{
|
|
|
|
delete fqueue_;
|
|
|
|
}
|
|
|
|
|
2020-01-07 07:54:33 +00:00
|
|
|
/* NOTE: the area 0 - len (ie data[0] - data[len - 1]) must be addressable
|
2020-10-06 03:20:22 +00:00
|
|
|
* Do not add offset to "data" ptr before passing it to find_h26x_start_code()! */
|
2021-02-19 01:13:43 +00:00
|
|
|
ssize_t uvgrtp::formats::h26x::find_h26x_start_code(
|
2020-09-08 05:19:38 +00:00
|
|
|
uint8_t *data,
|
|
|
|
size_t len,
|
|
|
|
size_t offset,
|
|
|
|
uint8_t& start_len
|
|
|
|
)
|
2019-03-30 10:22:57 +00:00
|
|
|
{
|
2019-09-11 07:06:52 +00:00
|
|
|
bool prev_z = false;
|
|
|
|
bool cur_z = false;
|
|
|
|
size_t pos = offset;
|
2020-02-04 10:07:05 +00:00
|
|
|
size_t rpos = len - (len % 8) - 1;
|
2019-09-11 07:06:52 +00:00
|
|
|
uint8_t *ptr = data + offset;
|
|
|
|
uint8_t *tmp = nullptr;
|
|
|
|
uint8_t lb = 0;
|
|
|
|
uint32_t prev = UINT32_MAX;
|
|
|
|
|
|
|
|
uint64_t prefetch = UINT64_MAX;
|
|
|
|
uint32_t value = UINT32_MAX;
|
|
|
|
unsigned ret = 0;
|
|
|
|
|
|
|
|
/* We can get rid of the bounds check when looping through
|
|
|
|
* non-zero 8 byte chunks by setting the last byte to zero.
|
|
|
|
*
|
|
|
|
* This added zero will make the last 8 byte zero check to fail
|
2020-02-04 10:07:05 +00:00
|
|
|
* and when we get out of the loop we can check if we've reached the end */
|
|
|
|
lb = data[rpos];
|
|
|
|
data[rpos] = 0;
|
2019-09-11 07:06:52 +00:00
|
|
|
|
2020-02-04 10:07:05 +00:00
|
|
|
while (pos + 8 < len) {
|
2019-09-11 07:06:52 +00:00
|
|
|
prefetch = *(uint64_t *)ptr;
|
|
|
|
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
if (!prev_z && !(cur_z = haszero64_le(prefetch))) {
|
|
|
|
#else
|
|
|
|
if (!prev_z && !(cur_z = haszero64_be(prefetch))) {
|
|
|
|
#endif
|
|
|
|
/* pos is not used in the following loop so it makes little sense to
|
|
|
|
* update it on every iteration. Faster way to do the loop is to save
|
|
|
|
* ptr's current value before loop, update only ptr in the loop and when
|
|
|
|
* the loop is exited, calculate the difference between tmp and ptr to get
|
|
|
|
* the number of iterations done * 8 */
|
|
|
|
tmp = ptr;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ptr += 8;
|
|
|
|
prefetch = *(uint64_t *)ptr;
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
cur_z = haszero64_le(prefetch);
|
|
|
|
#else
|
|
|
|
cur_z = haszero64_be(prefetch);
|
|
|
|
#endif
|
|
|
|
} while (!cur_z);
|
|
|
|
|
|
|
|
pos += PTR_DIFF(ptr, tmp);
|
2019-03-30 10:22:57 +00:00
|
|
|
|
2020-02-04 10:07:05 +00:00
|
|
|
if (pos + 8 >= len)
|
2019-09-11 07:06:52 +00:00
|
|
|
break;
|
2019-03-30 10:22:57 +00:00
|
|
|
}
|
|
|
|
|
2019-09-11 07:06:52 +00:00
|
|
|
value = *(uint32_t *)ptr;
|
|
|
|
|
|
|
|
if (cur_z)
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
cur_z = haszero32_le(value);
|
|
|
|
#else
|
|
|
|
cur_z = haszero32_be(value);
|
|
|
|
#endif
|
2019-03-30 10:22:57 +00:00
|
|
|
|
2019-09-11 07:06:52 +00:00
|
|
|
if (!prev_z && !cur_z)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
/* Previous dword had zeros but this doesn't. The only way there might be a start code
|
|
|
|
* is if the most significant byte of current dword is 0x01 */
|
|
|
|
if (prev_z && !cur_z) {
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
/* previous dword: 0xXX000000 or 0xXXXX0000 and current dword 0x01XXXXXX */
|
|
|
|
if (((value >> 0) & 0xff) == 0x01 && ((prev >> 16) & 0xffff) == 0) {
|
|
|
|
start_len = (((prev >> 8) & 0xffffff) == 0) ? 4 : 3;
|
|
|
|
#else
|
|
|
|
if (((value >> 24) & 0xff) == 0x01 && ((prev >> 0) & 0xffff) == 0) {
|
|
|
|
start_len = (((prev >> 0) & 0xffffff) == 0) ? 4 : 3;
|
|
|
|
#endif
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-09-11 07:06:52 +00:00
|
|
|
return pos + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
{
|
2020-12-01 07:31:20 +00:00
|
|
|
if ((ret = start_len = __find_h26x_start(value)) > 0) {
|
2019-09-11 07:06:52 +00:00
|
|
|
if (ret == 5) {
|
|
|
|
ret = 3;
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
start_len = (((prev >> 24) & 0xff) == 0) ? 4 : 3;
|
|
|
|
#else
|
|
|
|
start_len = (((prev >> 0) & 0xff) == 0) ? 4 : 3;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-09-11 07:06:52 +00:00
|
|
|
return pos + ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
|
|
uint16_t u = (value >> 16) & 0xffff;
|
|
|
|
uint16_t l = (value >> 0) & 0xffff;
|
|
|
|
uint16_t p = (prev >> 16) & 0xffff;
|
|
|
|
|
|
|
|
bool t1 = ((p & 0xffff) == 0);
|
|
|
|
bool t2 = (((p >> 8) & 0xff) == 0);
|
|
|
|
bool t4 = (l == 0x0100);
|
|
|
|
bool t5 = (l == 0x0000 && u == 0x01);
|
|
|
|
#else
|
|
|
|
uint16_t u = (value >> 0) & 0xffff;
|
|
|
|
uint16_t l = (value >> 16) & 0xffff;
|
|
|
|
uint16_t p = (prev >> 0) & 0xffff;
|
|
|
|
|
|
|
|
bool t1 = ((p & 0xffff) == 0);
|
|
|
|
bool t2 = ((p & 0xff) == 0);
|
|
|
|
bool t4 = (l == 0x0001);
|
|
|
|
bool t5 = (l == 0x0000 && u == 0x01);
|
|
|
|
#endif
|
|
|
|
if (t1 && t4) {
|
|
|
|
/* previous dword 0xxxxx0000 and current dword is 0x0001XXXX */
|
|
|
|
if (t4) {
|
|
|
|
start_len = 4;
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-09-11 07:06:52 +00:00
|
|
|
return pos + 2;
|
|
|
|
}
|
|
|
|
/* Previous dwod was 0xXXXXXX00 */
|
|
|
|
} else if (t2) {
|
|
|
|
/* Current dword is 0x000001XX */
|
|
|
|
if (t5) {
|
|
|
|
start_len = 4;
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-09-11 07:06:52 +00:00
|
|
|
return pos + 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Current dword is 0x0001XXXX */
|
|
|
|
else if (t4) {
|
|
|
|
start_len = 3;
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-09-11 07:06:52 +00:00
|
|
|
return pos + 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
end:
|
|
|
|
prev_z = cur_z;
|
|
|
|
pos += 4;
|
|
|
|
ptr += 4;
|
|
|
|
prev = value;
|
2019-03-30 10:22:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 10:07:05 +00:00
|
|
|
data[rpos] = lb;
|
2019-03-30 10:22:57 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
rtp_error_t uvgrtp::formats::h26x::frame_getter(uvgrtp::frame::rtp_frame** frame)
|
2021-09-09 09:26:57 +00:00
|
|
|
{
|
2021-09-15 08:02:26 +00:00
|
|
|
if (finfo_.queued.size()) {
|
|
|
|
*frame = finfo_.queued.front();
|
|
|
|
finfo_.queued.pop_front();
|
2021-09-09 09:26:57 +00:00
|
|
|
return RTP_PKT_READY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RTP_NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
2021-02-19 01:13:43 +00:00
|
|
|
rtp_error_t uvgrtp::formats::h26x::push_h26x_frame(uint8_t *data, size_t data_len, int flags)
|
2019-03-30 10:22:57 +00:00
|
|
|
{
|
2019-09-11 07:06:52 +00:00
|
|
|
/* find first start code */
|
2020-07-30 10:40:16 +00:00
|
|
|
uint8_t start_len = 0;
|
2021-06-04 10:06:41 +00:00
|
|
|
ssize_t offset = find_h26x_start_code(data, data_len, 0, start_len);
|
|
|
|
ssize_t prev_offset = offset;
|
2020-07-30 10:40:16 +00:00
|
|
|
size_t r_off = 0;
|
|
|
|
rtp_error_t ret = RTP_GENERIC_ERROR;
|
2020-08-04 05:37:40 +00:00
|
|
|
size_t payload_size = rtp_ctx_->get_payload_size();
|
2020-07-30 10:40:16 +00:00
|
|
|
|
2020-10-22 11:38:59 +00:00
|
|
|
if (data_len < payload_size || flags & RTP_SLICE) {
|
2020-08-04 05:37:40 +00:00
|
|
|
r_off = (offset < 0) ? 0 : offset;
|
2020-10-07 08:50:20 +00:00
|
|
|
|
2020-10-22 11:38:59 +00:00
|
|
|
if (data_len > payload_size) {
|
|
|
|
return push_nal_unit(data + r_off, data_len, false);
|
|
|
|
} else {
|
|
|
|
if ((ret = fqueue_->enqueue_message(data + r_off, data_len - r_off)) != RTP_OK) {
|
2021-06-15 07:12:43 +00:00
|
|
|
LOG_ERROR("Failed to enqueue Single h26x NAL Unit packet!");
|
2020-10-22 11:38:59 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2020-10-07 08:50:20 +00:00
|
|
|
|
2020-10-22 11:38:59 +00:00
|
|
|
return fqueue_->flush_queue();
|
|
|
|
}
|
2019-08-30 06:03:35 +00:00
|
|
|
}
|
2019-08-26 05:49:22 +00:00
|
|
|
|
|
|
|
while (offset != -1) {
|
2020-09-08 05:19:38 +00:00
|
|
|
offset = find_h26x_start_code(data, data_len, offset, start_len);
|
2019-08-26 05:49:22 +00:00
|
|
|
|
2019-09-11 07:06:52 +00:00
|
|
|
if (offset != -1) {
|
2020-09-08 05:19:38 +00:00
|
|
|
ret = push_nal_unit(&data[prev_offset], offset - prev_offset - start_len, true);
|
2019-08-26 05:49:22 +00:00
|
|
|
|
|
|
|
if (ret != RTP_NOT_READY)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
prev_offset = offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 11:23:32 +00:00
|
|
|
if (prev_offset == -1)
|
|
|
|
prev_offset = 0;
|
|
|
|
|
2020-09-08 05:19:38 +00:00
|
|
|
if ((ret = push_nal_unit(&data[prev_offset], data_len - prev_offset, false)) == RTP_OK)
|
2019-08-26 05:49:22 +00:00
|
|
|
return RTP_OK;
|
|
|
|
|
|
|
|
error:
|
2020-08-04 05:37:40 +00:00
|
|
|
fqueue_->deinit_transaction();
|
2019-08-26 05:49:22 +00:00
|
|
|
return ret;
|
2019-06-03 08:58:53 +00:00
|
|
|
}
|
2019-07-30 05:33:21 +00:00
|
|
|
|
2021-02-19 01:13:43 +00:00
|
|
|
rtp_error_t uvgrtp::formats::h26x::push_nal_unit(uint8_t *data, size_t data_len, bool more)
|
2020-09-08 05:19:38 +00:00
|
|
|
{
|
2021-06-14 09:31:37 +00:00
|
|
|
if (data_len <= 3)
|
|
|
|
return RTP_INVALID_VALUE;
|
2020-09-08 05:19:38 +00:00
|
|
|
|
2021-06-14 09:31:37 +00:00
|
|
|
rtp_error_t ret = RTP_OK;
|
2020-09-08 05:19:38 +00:00
|
|
|
|
2021-06-14 09:31:37 +00:00
|
|
|
size_t payload_size = rtp_ctx_->get_payload_size();
|
2020-09-08 05:19:38 +00:00
|
|
|
|
2021-06-14 09:31:37 +00:00
|
|
|
if (data_len - 3 <= payload_size) {
|
|
|
|
if ((ret = handle_small_packet(data, data_len, more)) != RTP_OK)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* If smaller NALUs were queued before this NALU,
|
|
|
|
* send them in an aggregation packet before proceeding with fragmentation */
|
|
|
|
(void)make_aggregation_pkt();
|
|
|
|
}
|
2019-10-11 06:11:21 +00:00
|
|
|
|
2021-06-14 09:31:37 +00:00
|
|
|
size_t data_left = data_len;
|
|
|
|
size_t data_pos = 0;
|
|
|
|
|
|
|
|
/* The payload is larger than MTU (1500 bytes) so we must split it into smaller RTP frames
|
|
|
|
* Because we don't if the SCD is enabled and thus cannot make any assumptions about the life time
|
|
|
|
* of current stack, we need to store NAL and FU headers to the frame queue transaction.
|
|
|
|
*
|
|
|
|
* This can be done by asking a handle to current transaction's buffer vectors.
|
|
|
|
*
|
|
|
|
* During Connection initialization, the frame queue was given the payload format so the
|
|
|
|
* transaction also contains our media-specific headers [get_media_headers()]. */
|
|
|
|
uvgrtp::buf_vec buffers = fqueue_->get_buffer_vector();
|
|
|
|
|
2021-06-14 11:14:18 +00:00
|
|
|
if ((ret = construct_format_header_divide_fus(data, data_left, data_pos, payload_size, buffers)) != RTP_OK)
|
2021-06-14 09:31:37 +00:00
|
|
|
return ret;
|
|
|
|
|
|
|
|
if ((ret = fqueue_->enqueue_message(buffers)) != RTP_OK) {
|
|
|
|
LOG_ERROR("Failed to send HEVC frame!");
|
|
|
|
clear_aggregation_info();
|
|
|
|
fqueue_->deinit_transaction();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (more)
|
|
|
|
return RTP_NOT_READY;
|
|
|
|
|
|
|
|
clear_aggregation_info();
|
|
|
|
return fqueue_->flush_queue();
|
2019-10-11 06:11:21 +00:00
|
|
|
}
|
|
|
|
|
2021-02-19 01:13:43 +00:00
|
|
|
rtp_error_t uvgrtp::formats::h26x::push_media_frame(uint8_t *data, size_t data_len, int flags)
|
2019-10-11 06:11:21 +00:00
|
|
|
{
|
2020-08-04 05:37:40 +00:00
|
|
|
rtp_error_t ret;
|
2019-10-11 06:11:21 +00:00
|
|
|
|
2020-08-04 05:37:40 +00:00
|
|
|
if (!data || !data_len)
|
|
|
|
return RTP_INVALID_VALUE;
|
2019-10-11 06:11:21 +00:00
|
|
|
|
2020-08-04 05:37:40 +00:00
|
|
|
if ((ret = fqueue_->init_transaction(data)) != RTP_OK) {
|
2019-10-11 06:11:21 +00:00
|
|
|
LOG_ERROR("Invalid frame queue or failed to initialize transaction!");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-10-22 11:38:59 +00:00
|
|
|
return push_h26x_frame(data, data_len, flags);
|
2019-10-11 06:11:21 +00:00
|
|
|
}
|
2021-06-14 09:31:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
rtp_error_t uvgrtp::formats::h26x::make_aggregation_pkt()
|
|
|
|
{
|
|
|
|
return RTP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uvgrtp::formats::h26x::clear_aggregation_info()
|
2021-06-14 10:29:35 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
rtp_error_t uvgrtp::formats::h26x::divide_frame_to_fus(uint8_t* data, size_t& data_left, size_t& data_pos, size_t payload_size,
|
|
|
|
uvgrtp::buf_vec& buffers, uint8_t fu_headers[])
|
|
|
|
{
|
|
|
|
rtp_error_t ret = RTP_OK;
|
|
|
|
|
|
|
|
while (data_left > payload_size) {
|
|
|
|
buffers.at(2).first = payload_size;
|
|
|
|
buffers.at(2).second = &data[data_pos];
|
|
|
|
|
|
|
|
if ((ret = fqueue_->enqueue_message(buffers)) != RTP_OK) {
|
|
|
|
LOG_ERROR("Queueing the message failed!");
|
|
|
|
clear_aggregation_info();
|
|
|
|
fqueue_->deinit_transaction();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
data_pos += payload_size;
|
|
|
|
data_left -= payload_size;
|
|
|
|
|
|
|
|
/* from now on, use the FU header meant for middle fragments */
|
|
|
|
buffers.at(1).second = &fu_headers[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* use the FU header meant for the last fragment */
|
|
|
|
buffers.at(1).second = &fu_headers[2];
|
|
|
|
|
|
|
|
buffers.at(2).first = data_left;
|
|
|
|
buffers.at(2).second = &data[data_pos];
|
|
|
|
|
|
|
|
return ret;
|
2021-06-14 11:14:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void uvgrtp::formats::h26x::initialize_fu_headers(uint8_t nal_type, uint8_t fu_headers[])
|
|
|
|
{
|
|
|
|
fu_headers[0] = (uint8_t)((1 << 7) | nal_type);
|
|
|
|
fu_headers[1] = nal_type;
|
|
|
|
fu_headers[2] = (uint8_t)((1 << 6) | nal_type);
|
2021-06-15 07:12:43 +00:00
|
|
|
}
|
2021-06-24 09:41:53 +00:00
|
|
|
|
|
|
|
void uvgrtp::formats::h26x::prepend_start_code(int flags, uvgrtp::frame::rtp_frame** out)
|
|
|
|
{
|
|
|
|
if (flags & RCE_H26X_PREPEND_SC) {
|
|
|
|
uint8_t* pl = new uint8_t[(*out)->payload_len + 4];
|
|
|
|
|
|
|
|
pl[0] = 0;
|
|
|
|
pl[1] = 0;
|
|
|
|
pl[2] = 0;
|
|
|
|
pl[3] = 1;
|
|
|
|
|
|
|
|
std::memcpy(pl + 4, (*out)->payload, (*out)->payload_len);
|
|
|
|
delete[](*out)->payload;
|
|
|
|
|
|
|
|
(*out)->payload = pl;
|
|
|
|
(*out)->payload_len += 4;
|
|
|
|
}
|
2021-09-09 07:41:08 +00:00
|
|
|
}
|
|
|
|
|
2021-09-14 07:47:25 +00:00
|
|
|
bool uvgrtp::formats::h26x::is_frame_late(uvgrtp::formats::h26x_info_t& hinfo, size_t max_delay)
|
2021-09-09 07:41:08 +00:00
|
|
|
{
|
|
|
|
return (uvgrtp::clock::hrc::diff_now(hinfo.sframe_time) >= max_delay);
|
2021-09-09 09:26:57 +00:00
|
|
|
}
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
void uvgrtp::formats::h26x::drop_frame(uint32_t ts)
|
2021-09-09 09:26:57 +00:00
|
|
|
{
|
2021-09-15 08:02:26 +00:00
|
|
|
uint16_t s_seq = finfo_.frames.at(ts).s_seq;
|
|
|
|
uint16_t e_seq = finfo_.frames.at(ts).e_seq;
|
2021-09-09 09:26:57 +00:00
|
|
|
|
|
|
|
LOG_INFO("Dropping frame %u, %u - %u", ts, s_seq, e_seq);
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
for (auto& fragment : finfo_.frames.at(ts).fragments)
|
2021-09-09 09:26:57 +00:00
|
|
|
(void)uvgrtp::frame::dealloc_frame(fragment.second);
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
finfo_.frames.erase(ts);
|
2021-09-09 10:03:27 +00:00
|
|
|
}
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
rtp_error_t uvgrtp::formats::h26x::handle_aggregation_packet(uvgrtp::frame::rtp_frame** out, uint8_t nal_header_size)
|
2021-09-09 10:03:27 +00:00
|
|
|
{
|
|
|
|
uvgrtp::buf_vec nalus;
|
|
|
|
|
|
|
|
size_t size = 0;
|
|
|
|
auto* frame = *out;
|
|
|
|
|
|
|
|
for (size_t i = nal_header_size; i < frame->payload_len; i += ntohs(*(uint16_t*)&frame->payload[i]) + sizeof(uint16_t)) {
|
|
|
|
nalus.push_back(
|
|
|
|
std::make_pair(
|
|
|
|
ntohs(*(uint16_t*)&frame->payload[i]),
|
|
|
|
&frame->payload[i] + sizeof(uint16_t)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
size += ntohs(*(uint16_t*)&frame->payload[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < nalus.size(); ++i) {
|
|
|
|
auto retframe = uvgrtp::frame::alloc_rtp_frame(nalus[i].first);
|
|
|
|
|
|
|
|
std::memcpy(
|
|
|
|
retframe->payload,
|
|
|
|
nalus[i].second,
|
|
|
|
nalus[i].first
|
|
|
|
);
|
|
|
|
|
2021-09-15 08:02:26 +00:00
|
|
|
finfo_.queued.push_back(retframe);
|
2021-09-09 10:03:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return RTP_MULTIPLE_PKTS_READY;
|
2021-09-15 08:02:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rtp_error_t uvgrtp::formats::h26x::packet_handler(int flags, uvgrtp::frame::rtp_frame** out)
|
|
|
|
{
|
|
|
|
uvgrtp::frame::rtp_frame* frame;
|
|
|
|
bool enable_idelay = !(flags & RCE_NO_H26X_INTRA_DELAY);
|
|
|
|
|
|
|
|
/* Use "intra" to keep track of intra frames
|
|
|
|
*
|
|
|
|
* If uvgRTP is in the process of receiving fragments of an incomplete intra frame,
|
|
|
|
* "intra" shall be the timestamp value of that intra frame.
|
|
|
|
* This means that when we're receiving packets out of order and an inter frame is complete
|
|
|
|
* while "intra" contains value other than INVALID_TS, we drop the inter frame and wait for
|
|
|
|
* the intra frame to complete.
|
|
|
|
*
|
|
|
|
* If "intra" contains INVALID_TS and all packets of an inter frame have been received,
|
|
|
|
* the inter frame is returned to user. If intra contains a value other than INVALID_TS
|
|
|
|
* (meaning an intra frame is in progress) and a new intra frame is received, the old intra frame
|
|
|
|
* pointed to by "intra" and new intra frame shall take the place of active intra frame */
|
|
|
|
uint32_t intra = INVALID_TS;
|
|
|
|
|
|
|
|
const size_t format_header_size = get_nal_header_size() + get_fu_header_size();
|
|
|
|
|
|
|
|
frame = *out;
|
|
|
|
|
|
|
|
uint32_t c_ts = frame->header.timestamp;
|
|
|
|
uint32_t c_seq = frame->header.seq;
|
|
|
|
int frag_type = get_fragment_type(frame);
|
|
|
|
uint8_t nal_type = get_nal_type(frame);
|
|
|
|
|
|
|
|
if (frag_type == FT_AGGR)
|
|
|
|
return handle_aggregation_packet(out, get_nal_header_size());
|
|
|
|
|
|
|
|
if (frag_type == FT_NOT_FRAG) {
|
|
|
|
prepend_start_code(flags, out);
|
|
|
|
return RTP_PKT_READY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frag_type == FT_INVALID) {
|
|
|
|
LOG_WARN("invalid frame received!");
|
|
|
|
(void)uvgrtp::frame::dealloc_frame(*out);
|
|
|
|
*out = nullptr;
|
|
|
|
return RTP_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize new frame */
|
|
|
|
if (finfo_.frames.find(c_ts) == finfo_.frames.end()) {
|
|
|
|
|
|
|
|
/* make sure we haven't discarded the frame "c_ts" before */
|
|
|
|
if (finfo_.dropped.find(c_ts) != finfo_.dropped.end()) {
|
|
|
|
LOG_WARN("packet belonging to a dropped frame was received!");
|
|
|
|
return RTP_GENERIC_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drop old intra if a new one is received */
|
|
|
|
if (nal_type == NT_INTRA) {
|
|
|
|
if (intra != INVALID_TS && enable_idelay) {
|
|
|
|
drop_frame(intra);
|
|
|
|
finfo_.dropped.insert(intra);
|
|
|
|
}
|
|
|
|
intra = c_ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
finfo_.frames[c_ts].s_seq = INVALID_SEQ;
|
|
|
|
finfo_.frames[c_ts].e_seq = INVALID_SEQ;
|
|
|
|
|
|
|
|
if (frag_type == FT_START) finfo_.frames[c_ts].s_seq = c_seq;
|
|
|
|
if (frag_type == FT_END) finfo_.frames[c_ts].e_seq = c_seq;
|
|
|
|
|
|
|
|
finfo_.frames[c_ts].sframe_time = uvgrtp::clock::hrc::now();
|
|
|
|
finfo_.frames[c_ts].total_size = frame->payload_len - format_header_size;
|
|
|
|
finfo_.frames[c_ts].pkts_received = 1;
|
|
|
|
|
|
|
|
finfo_.frames[c_ts].fragments[c_seq] = frame;
|
|
|
|
return RTP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
finfo_.frames[c_ts].pkts_received += 1;
|
|
|
|
finfo_.frames[c_ts].total_size += (frame->payload_len - format_header_size);
|
|
|
|
|
|
|
|
if (frag_type == FT_START) {
|
|
|
|
finfo_.frames[c_ts].s_seq = c_seq;
|
|
|
|
finfo_.frames[c_ts].fragments[c_seq] = frame;
|
|
|
|
|
|
|
|
for (auto& fragment : finfo_.frames[c_ts].temporary) {
|
|
|
|
uint16_t fseq = fragment->header.seq;
|
|
|
|
uint32_t seq = (c_seq > fseq) ? 0x10000 + fseq : fseq;
|
|
|
|
|
|
|
|
finfo_.frames[c_ts].fragments[seq] = fragment;
|
|
|
|
}
|
|
|
|
finfo_.frames[c_ts].temporary.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (frag_type == FT_END)
|
|
|
|
finfo_.frames[c_ts].e_seq = c_seq;
|
|
|
|
|
|
|
|
/* Out-of-order nature poses an interesting problem when reconstructing the frame:
|
|
|
|
* how to store the fragments such that we mustn't shuffle them around when frame reconstruction takes place?
|
|
|
|
*
|
|
|
|
* std::map is an option but the overflow of 16-bit sequence number counter makes that a little harder because
|
|
|
|
* if the first few fragments of a frame are near 65535, the rest of the fragments are going to have sequence
|
|
|
|
* numbers less than that and thus our frame reconstruction breaks.
|
|
|
|
*
|
|
|
|
* This can be solved by checking if current fragment's sequence is less than start fragment's sequence number
|
|
|
|
* (overflow has occurred) and correcting the current sequence by adding 0x10000 to its value so it appears
|
|
|
|
* in order with other fragments */
|
|
|
|
if (frag_type != FT_START) {
|
|
|
|
if (finfo_.frames[c_ts].s_seq != INVALID_SEQ) {
|
|
|
|
/* overflow has occurred, adjust the sequence number of current
|
|
|
|
* fragment so it appears in order with other fragments of the frame
|
|
|
|
*
|
|
|
|
* Note: if the frame is huge (~94 MB), this will not work but it's not a realistic scenario */
|
|
|
|
finfo_.frames[c_ts].fragments[((finfo_.frames[c_ts].s_seq > c_seq) ? 0x10000 + c_seq : c_seq)] = frame;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* position for the fragment cannot be calculated so move the fragment to a temporary storage */
|
|
|
|
finfo_.frames[c_ts].temporary.push_back(frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (finfo_.frames[c_ts].s_seq != INVALID_SEQ && finfo_.frames[c_ts].e_seq != INVALID_SEQ) {
|
|
|
|
size_t received = 0;
|
|
|
|
size_t fptr = 0;
|
|
|
|
size_t s_seq = finfo_.frames[c_ts].s_seq;
|
|
|
|
size_t e_seq = finfo_.frames[c_ts].e_seq;
|
|
|
|
|
|
|
|
if (s_seq > e_seq)
|
|
|
|
received = 0xffff - s_seq + e_seq + 2;
|
|
|
|
else
|
|
|
|
received = e_seq - s_seq + 1;
|
|
|
|
|
|
|
|
/* we've received every fragment and the frame can be reconstructed */
|
|
|
|
if (received == finfo_.frames[c_ts].pkts_received) {
|
|
|
|
|
|
|
|
/* intra is still in progress, do not return the inter */
|
|
|
|
if (nal_type == NT_INTER && intra != INVALID_TS && enable_idelay) {
|
|
|
|
drop_frame(c_ts);
|
|
|
|
finfo_.dropped.insert(c_ts);
|
|
|
|
return RTP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
uvgrtp::frame::rtp_frame* complete = uvgrtp::frame::alloc_rtp_frame();
|
|
|
|
|
|
|
|
complete->payload_len =
|
|
|
|
finfo_.frames[c_ts].total_size
|
|
|
|
+ get_nal_header_size() +
|
|
|
|
+((flags & RCE_H26X_PREPEND_SC) ? 4 : 0);
|
|
|
|
|
|
|
|
complete->payload = new uint8_t[complete->payload_len];
|
|
|
|
|
|
|
|
if (flags & RCE_H26X_PREPEND_SC) {
|
|
|
|
complete->payload[0] = 0;
|
|
|
|
complete->payload[1] = 0;
|
|
|
|
complete->payload[2] = 0;
|
|
|
|
complete->payload[3] = 1;
|
|
|
|
fptr += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::memcpy(&complete->header, &(*out)->header, RTP_HDR_SIZE); // RTP header
|
|
|
|
|
|
|
|
copy_nal_header(fptr, frame->payload, complete->payload); // NAL header
|
|
|
|
fptr += get_nal_header_size();
|
|
|
|
|
|
|
|
for (auto& fragment : finfo_.frames.at(c_ts).fragments) {
|
|
|
|
std::memcpy(
|
|
|
|
&complete->payload[fptr],
|
|
|
|
&fragment.second->payload[format_header_size],
|
|
|
|
fragment.second->payload_len - format_header_size
|
|
|
|
);
|
|
|
|
fptr += fragment.second->payload_len - format_header_size;
|
|
|
|
(void)uvgrtp::frame::dealloc_frame(fragment.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (nal_type == NT_INTRA)
|
|
|
|
intra = INVALID_TS;
|
|
|
|
|
|
|
|
*out = complete;
|
|
|
|
finfo_.frames.erase(c_ts);
|
|
|
|
return RTP_PKT_READY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_frame_late(finfo_.frames.at(c_ts), finfo_.rtp_ctx->get_pkt_max_delay())) {
|
|
|
|
if (nal_type != NT_INTRA || (nal_type == NT_INTRA && !enable_idelay)) {
|
|
|
|
drop_frame(c_ts);
|
|
|
|
finfo_.dropped.insert(c_ts);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return RTP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uvgrtp::formats::h26x::copy_nal_header(size_t fptr, uint8_t* frame_payload, uint8_t* complete_payload)
|
|
|
|
{
|
|
|
|
uint8_t nal_header[2] = {
|
|
|
|
(uint8_t)((frame_payload[0] & 0x81) | ((frame_payload[2] & 0x3f) << 1)),
|
|
|
|
(uint8_t)frame_payload[1]
|
|
|
|
};
|
|
|
|
|
|
|
|
std::memcpy(&complete_payload[fptr], nal_header, get_nal_header_size());
|
2021-06-24 09:41:53 +00:00
|
|
|
}
|