2020-08-20 08:32:31 +00:00
|
|
|
#include <uvgrtp/lib.hh>
|
|
|
|
|
|
|
|
#define PAYLOAD_MAXLEN 100
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
/* To use the library, one must create a global RTP context object */
|
|
|
|
uvg_rtp::context ctx;
|
|
|
|
|
|
|
|
/* Each new IP address requires a separate RTP session.
|
2020-10-06 03:45:04 +00:00
|
|
|
* This session object contains all media streams and an RTCP object (if enabled) */
|
2020-08-20 08:32:31 +00:00
|
|
|
uvg_rtp::session *sess = ctx.create_session("127.0.0.1");
|
|
|
|
|
|
|
|
/* Create MediaStream and RTCP for the session */
|
2020-09-08 05:19:38 +00:00
|
|
|
uvg_rtp::media_stream *hevc = sess->create_stream(8888, 8889, RTP_FORMAT_H265, RCE_RTCP);
|
2020-08-20 08:32:31 +00:00
|
|
|
|
|
|
|
uint8_t *buffer = new uint8_t[PAYLOAD_MAXLEN];
|
|
|
|
uint32_t clock_rate = 90000 / 30;
|
|
|
|
uint32_t timestamp = 0;
|
|
|
|
|
|
|
|
/* If you don't want uvgRTP to handle timestamping but wish to do that yourself
|
|
|
|
* AND you want to use RTCP, timestamping info must be provided for the RTCP so
|
|
|
|
* it is able calculate sensible values for synchronization info
|
|
|
|
*
|
|
|
|
* The first parameter is NTP time associated with the corresponding RTP timestamp,
|
|
|
|
* second parameter is clock rate and the third parameter is RTP timestamp for t = 0
|
|
|
|
* (it can be zero or some random number, does not matter)
|
|
|
|
*
|
|
|
|
* NOTE: dummy data passed as NTP timestamp */
|
|
|
|
hevc->get_rtcp()->set_ts_info(1337, clock_rate, timestamp);
|
|
|
|
|
2020-10-06 03:45:04 +00:00
|
|
|
/* You can also use uvgRTP's cross-platform clock interface to get current NTP timestamp */
|
|
|
|
if (0)
|
|
|
|
hevc->get_rtcp()->set_ts_info(uvg_rtp::clock::ntp::now(), clock_rate, timestamp);
|
|
|
|
|
2020-08-20 08:32:31 +00:00
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
|
|
/* If needed, custom timestamps can be given to push_frame().
|
|
|
|
*
|
|
|
|
* This overrides uvgRTP's own calculations and uses the given timestamp for all RTP packets of "buffer" */
|
|
|
|
if (hevc->push_frame(buffer, PAYLOAD_MAXLEN, clock_rate * timestamp++, RTP_NO_FLAGS) != RTP_OK)
|
|
|
|
fprintf(stderr, "Failed to send RTP frame!");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Session must be destroyed manually */
|
|
|
|
delete[] buffer;
|
|
|
|
ctx.destroy_session(sess);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|