FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/time.h"
#include "avformat.h"
#include "internal.h"
#include "network.h"
#include "os_support.h"
#include "url.h"
#include <librist/librist.h>
#include <librist/version.h>
Go to the source code of this file.
Data Structures | |
struct | RISTContext |
Macros | |
#define | MAX_PAYLOAD_SIZE (10000-28) |
#define | FF_LIBRIST_MAKE_VERSION(major, minor, patch) ((patch) + ((minor)* 0x100) + ((major) *0x10000)) |
#define | FF_LIBRIST_VERSION FF_LIBRIST_MAKE_VERSION(LIBRIST_API_VERSION_MAJOR, LIBRIST_API_VERSION_MINOR, LIBRIST_API_VERSION_PATCH) |
#define | FF_LIBRIST_VERSION_41 FF_LIBRIST_MAKE_VERSION(4, 1, 0) |
#define | D AV_OPT_FLAG_DECODING_PARAM |
#define | E AV_OPT_FLAG_ENCODING_PARAM |
#define | OFFSET(x) offsetof(RISTContext, x) |
Functions | |
static int | risterr2ret (int err) |
static int | log_cb (void *arg, enum rist_log_level log_level, const char *msg) |
static int | librist_close (URLContext *h) |
static int | librist_open (URLContext *h, const char *uri, int flags) |
static int | librist_read (URLContext *h, uint8_t *buf, int size) |
static int | librist_write (URLContext *h, const uint8_t *buf, int size) |
Variables | |
static const AVOption | librist_options [] |
static const AVClass | librist_class |
const URLProtocol | ff_librist_protocol |
Reliable Internet Streaming Transport protocol
Definition in file librist.c.
#define FF_LIBRIST_MAKE_VERSION | ( | major, | |
minor, | |||
patch | |||
) | ((patch) + ((minor)* 0x100) + ((major) *0x10000)) |
#define FF_LIBRIST_VERSION FF_LIBRIST_MAKE_VERSION(LIBRIST_API_VERSION_MAJOR, LIBRIST_API_VERSION_MINOR, LIBRIST_API_VERSION_PATCH) |
#define FF_LIBRIST_VERSION_41 FF_LIBRIST_MAKE_VERSION(4, 1, 0) |
#define D AV_OPT_FLAG_DECODING_PARAM |
#define E AV_OPT_FLAG_ENCODING_PARAM |
#define OFFSET | ( | x | ) | offsetof(RISTContext, x) |
Definition at line 80 of file librist.c.
Referenced by librist_close(), librist_open(), librist_read(), and librist_write().
|
static |
Definition at line 90 of file librist.c.
Referenced by libplacebo_init(), and librist_open().
|
static |
Definition at line 109 of file librist.c.
Referenced by librist_open().
|
static |
|
static |
|
static |
|
static |
|
static |
const URLProtocol ff_librist_protocol |