mirror of
https://github.com/pikvm/ustreamer.git
synced 2026-02-27 12:16:31 +00:00
52 lines
2.1 KiB
C
52 lines
2.1 KiB
C
/*****************************************************************************
|
|
# #
|
|
# uStreamer - Lightweight and fast MJPEG-HTTP streamer. #
|
|
# #
|
|
# Copyright (C) 2018-2023 Maxim Devaev <mdevaev@gmail.com> #
|
|
# #
|
|
# This program 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. #
|
|
# #
|
|
# This program 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 this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
# #
|
|
*****************************************************************************/
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "uslibs/types.h"
|
|
|
|
|
|
// https://stackoverflow.com/questions/47635545/why-webrtc-chose-rtp-max-packet-size-to-1200-bytes
|
|
#define US_RTP_DATAGRAM_SIZE 1200
|
|
#define US_RTP_HEADER_SIZE 12
|
|
|
|
|
|
typedef struct {
|
|
uint payload;
|
|
bool video;
|
|
u32 ssrc;
|
|
|
|
u16 seq;
|
|
u8 datagram[US_RTP_DATAGRAM_SIZE];
|
|
uz used;
|
|
bool zero_playout_delay;
|
|
} us_rtp_s;
|
|
|
|
typedef void (*us_rtp_callback_f)(const us_rtp_s *rtp);
|
|
|
|
|
|
us_rtp_s *us_rtp_init(void);
|
|
void us_rtp_destroy(us_rtp_s *rtp);
|
|
|
|
void us_rtp_assign(us_rtp_s *rtp, uint payload, bool video);
|
|
void us_rtp_write_header(us_rtp_s *rtp, u32 pts, bool marked);
|