4#include "uvgrtp/export.hh"
11void UVGRTP_EXPORT uvgrtp_create_ctx(
void** uvgrtp_context);
13void UVGRTP_EXPORT uvgrtp_create_session(
void* uvgrtp_context,
void** uvgrtp_session,
char* remote_address);
15void UVGRTP_EXPORT uvgrtp_create_stream(
void* uvgrtp_session,
void** uvgrtp_stream, uint16_t local_port, uint16_t remote_port,
int rce_flags);
17void UVGRTP_EXPORT uvgrtp_destroy_ctx(
void* uvgrtp_context);
19void UVGRTP_EXPORT uvgrtp_destroy_session(
void* uvgrtp_context,
void* uvgrtp_session);
21void UVGRTP_EXPORT uvgrtp_destroy_stream(
void* uvgrtp_session,
void* uvgrtp_stream);
23void UVGRTP_EXPORT uvgrtp_push_frame(
void* uvgrtp_stream, uint8_t* data,
size_t data_len,
int rtp_flags);