Go to the documentation of this file.
24 #include "config_components.h"
34 #define AV_CAT_SEPARATOR "|"
55 for (
i = 0;
i !=
data->length;
i++)
60 return err < 0 ? -1 : 0;
63 #if CONFIG_CONCAT_PROTOCOL
66 char *node_uri =
NULL;
68 int64_t
size, total_size = 0;
79 for (
i = 0,
len = 1; uri[
i];
i++) {
93 for (
i = 0; *uri;
i++) {
103 &
h->interrupt_callback,
NULL,
h->protocol_whitelist,
h->protocol_blacklist,
h);
124 else if (!(nodes =
av_realloc(nodes,
data->length *
sizeof(*nodes)))) {
129 data->total_size = total_size;
139 size_t i =
data->current;
144 if (
i + 1 ==
data->length ||
150 return total ? total :
result;
156 return total ? total :
result;
167 return data->total_size;
175 for (
i = 0;
i !=
data->current;
i++)
197 #if CONFIG_CONCAT_PROTOCOL
200 .url_open = concat_open,
205 .default_whitelist =
"concat,file,subfile",
209 #if CONFIG_CONCATF_PROTOCOL
217 unsigned int nodes_size = 0;
231 NULL,
h->protocol_whitelist,
h->protocol_blacklist);
250 int leading_spaces = strspn(cursor,
" \n\t\r");
252 if (!cursor[leading_spaces])
263 if (++
len == SIZE_MAX /
sizeof(*nodes)) {
271 &
h->interrupt_callback,
NULL,
h->protocol_whitelist,
h->protocol_blacklist,
h);
302 data->total_size = total_size;
308 .url_open = concatf_open,
313 .default_whitelist =
"concatf,concat,file,subfile",
#define AV_BPRINT_SIZE_UNLIMITED
size_t length
number of cat'ed nodes
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_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
char * av_get_token(const char **buf, const char *term)
Unescape the given string until a non escaped terminating char, and return the token corresponding to...
int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
Change the position that will be used by the next read/write operation on the resource accessed by h.
#define AVERROR_EOF
End of file.
#define AVSEEK_SIZE
ORing this as the "whence" parameter to a seek function causes it to return the filesize without seek...
int ffio_open_whitelist(AVIOContext **s, const char *url, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist)
int ffurl_close(URLContext *h)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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.
void * av_fast_realloc(void *ptr, unsigned int *size, size_t min_size)
Reallocate the given buffer if it is not large enough, otherwise do nothing.
int avio_read_to_bprint(AVIOContext *h, struct AVBPrint *pb, size_t max_size)
Read contents of h into print buffer, up to max_size bytes, or up to EOF.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
const URLProtocol ff_concat_protocol
and forward the result(frame or status change) to the corresponding input. If nothing is possible
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
struct concat_nodes * nodes
list of nodes to concat
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
static int concat_read(URLContext *h, unsigned char *buf, int size)
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
const URLProtocol ff_concatf_protocol
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
#define i(width, name, range_min, range_max)
size_t current
index of currently read node
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
URLContext * uc
node's URLContext
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf.
#define AVIO_FLAG_READ
read-only
#define flags(name, subs,...)
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.
int64_t ffurl_size(URLContext *h)
Return the filesize of the resource accessed by h, AVERROR(ENOSYS) if the operation is not supported ...
static av_cold int concat_close(URLContext *h)