Go to the documentation of this file.
47 for (
i = 0;
i <
s->nb_streams;
i++) {
54 s->streams[
i]->priv_data =
NULL;
71 char host[1024], path[1024], url[1024], announce_addr[50] =
"";
73 int port = 9875, base_port = 5004,
i,
pos = 0, same_port = 0, ttl = 255;
77 socklen_t addrlen =
sizeof(localaddr);
86 path,
sizeof(path),
s->url);
91 option_list = strrchr(path,
'?');
95 port = strtol(buf,
NULL, 10);
98 same_port = strtol(buf,
NULL, 10);
101 ttl = strtol(buf,
NULL, 10);
104 av_strlcpy(announce_addr, buf,
sizeof(announce_addr));
108 if (!announce_addr[0]) {
116 if (ai->ai_family == AF_INET) {
118 av_strlcpy(announce_addr,
"224.2.127.254",
sizeof(announce_addr));
119 #if HAVE_STRUCT_SOCKADDR_IN6
120 }
else if (ai->ai_family == AF_INET6) {
124 av_strlcpy(announce_addr,
"ff0e::2:7ffe",
sizeof(announce_addr));
129 "address family\n", host);
142 if (
s->start_time_realtime == 0 ||
s->start_time_realtime ==
AV_NOPTS_VALUE)
144 for (
i = 0;
i <
s->nb_streams;
i++) {
153 &
s->interrupt_callback,
NULL,
154 s->protocol_whitelist,
s->protocol_blacklist,
NULL);
162 s->streams[
i]->priv_data = contexts[
i];
172 if (
s->nb_streams > 0 && title)
176 "?ttl=%d&connect=1", ttl);
178 &
s->interrupt_callback,
NULL,
179 s->protocol_whitelist,
s->protocol_blacklist,
NULL);
186 if (getsockname(udp_fd, (
struct sockaddr*) &localaddr, &addrlen)) {
190 if (localaddr.ss_family != AF_INET
191 #
if HAVE_STRUCT_SOCKADDR_IN6
192 && localaddr.ss_family != AF_INET6
206 #if HAVE_STRUCT_SOCKADDR_IN6
207 if (localaddr.ss_family == AF_INET6)
214 if (localaddr.ss_family == AF_INET) {
215 memcpy(&sap->
ann[
pos], &((
struct sockaddr_in*)&localaddr)->sin_addr,
216 sizeof(
struct in_addr));
217 pos +=
sizeof(
struct in_addr);
218 #if HAVE_STRUCT_SOCKADDR_IN6
220 memcpy(&sap->
ann[
pos], &((
struct sockaddr_in6*)&localaddr)->sin6_addr,
221 sizeof(
struct in6_addr));
222 pos +=
sizeof(
struct in6_addr);
273 .priv_data_size =
sizeof(
struct SAPState),
int64_t av_gettime_relative(void)
Get the current time in microseconds since some unspecified starting point.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
int av_find_info_tag(char *arg, int arg_size, const char *tag1, const char *info)
Attempt to find a specific tag in a URL.
static int sap_write_packet(AVFormatContext *s, AVPacket *pkt)
AVStream ** streams
A list of all streams in the file.
int max_packet_size
if non zero, the stream is packetized with this max packet size
void * av_mallocz_array(size_t nmemb, size_t size)
#define AV_LOG_VERBOSE
Detailed information.
void ff_network_close(void)
int ff_network_init(void)
uint32_t av_get_random_seed(void)
Get a seed to use in conjunction with random functions.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
#define AVIO_FLAG_WRITE
write-only
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
AVIOContext * pb
I/O context.
AVOutputFormat ff_sap_muxer
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
#define AV_NOPTS_VALUE
Undefined timestamp value.
int av_sdp_create(AVFormatContext *ac[], int n_files, char *buf, int size)
Generate an SDP for an RTP session.
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
int av_write_trailer(AVFormatContext *s)
Write the stream trailer to an output media file and free the file private data.
#define i(width, name, range_min, range_max)
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
int ff_rtp_chain_mux_open(AVFormatContext **out, AVFormatContext *s, AVStream *st, URLContext *handle, int packet_size, int idx)
static int sap_write_header(AVFormatContext *s)
void avformat_free_context(AVFormatContext *s)
Free an AVFormatContext and all its streams.
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
int64_t av_gettime(void)
Get the current time in microseconds.
char * av_strdup(const char *s)
Duplicate a string.
static int sap_write_close(AVFormatContext *s)
This structure stores compressed data.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.