FFmpeg
|
receive commands through libzeromq and broker them to filters More...
#include <zmq.h>
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "internal.h"
#include "audio.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | ZMQContext |
struct | Command |
Macros | |
#define | OFFSET(x) offsetof(ZMQContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
#define | SPACES " \f\t\n\r" |
Functions | |
static av_cold int | init (AVFilterContext *ctx) |
static void av_cold | uninit (AVFilterContext *ctx) |
static int | parse_command (Command *cmd, const char *command_str, void *log_ctx) |
static int | recv_msg (AVFilterContext *ctx, char **buf, int *buf_size) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *ref) |
Variables | |
static const AVOption | options [] |
receive commands through libzeromq and broker them to filters
Definition in file f_zmq.c.
#define OFFSET | ( | x | ) | offsetof(ZMQContext, x) |
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM |
#define SPACES " \f\t\n\r" |
Definition at line 92 of file f_zmq.c.
Referenced by parse_command().
|
static |
|
static |
Definition at line 94 of file f_zmq.c.
Referenced by filter_frame().
|
static |
Definition at line 116 of file f_zmq.c.
Referenced by filter_frame().
|
static |
|
static |