#include "avformat.h"#include "libavutil/avstring.h"#include "libavutil/mem.h"#include "url.h"Go to the source code of this file.
Data Structures | |
| struct | concat_nodes |
| struct | concat_data |
Defines | |
| #define | AV_CAT_SEPARATOR "|" |
Functions | |
| static av_cold int | concat_close (URLContext *h) |
| static av_cold int | concat_open (URLContext *h, const char *uri, int flags) |
| static int | concat_read (URLContext *h, unsigned char *buf, int size) |
| static int64_t | concat_seek (URLContext *h, int64_t pos, int whence) |
Variables | |
| URLProtocol | ff_concat_protocol |
| #define AV_CAT_SEPARATOR "|" |
| static av_cold int concat_close | ( | URLContext * | h | ) | [static] |
| static av_cold int concat_open | ( | URLContext * | h, | |
| const char * | uri, | |||
| int | flags | |||
| ) | [static] |
| static int concat_read | ( | URLContext * | h, | |
| unsigned char * | buf, | |||
| int | size | |||
| ) | [static] |
| static int64_t concat_seek | ( | URLContext * | h, | |
| int64_t | pos, | |||
| int | whence | |||
| ) | [static] |
Initial value:
{
.name = "concat",
.url_open = concat_open,
.url_read = concat_read,
.url_seek = concat_seek,
.url_close = concat_close,
.priv_data_size = sizeof(struct concat_data),
}
1.5.8