FFmpeg
|
#include "libavutil/avutil.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | TeeContext |
Macros | |
#define | MAX_SLAVES 16 |
Functions | |
static int | parse_slave_options (void *log, char *slave, AVDictionary **options, char **filename) |
static int | open_slave (AVFormatContext *avf, char *slave, AVFormatContext **ravf) |
static void | close_slaves (AVFormatContext *avf) |
static int | tee_write_header (AVFormatContext *avf) |
static int | tee_write_trailer (AVFormatContext *avf) |
static int | tee_write_packet (AVFormatContext *avf, AVPacket *pkt) |
Variables | |
static const char *const | slave_delim = "|" |
static const char *const | slave_opt_open = "[" |
static const char *const | slave_opt_close = "]" |
static const char *const | slave_opt_delim = ":]" |
static const AVClass | tee_muxer_class |
AVOutputFormat | ff_tee_muxer |
#define MAX_SLAVES 16 |
Definition at line 28 of file tee.c.
Referenced by tee_write_header().
|
static |
Definition at line 47 of file tee.c.
Referenced by open_slave().
|
static |
Definition at line 85 of file tee.c.
Referenced by tee_write_header().
|
static |
Definition at line 157 of file tee.c.
Referenced by tee_write_header(), and tee_write_trailer().
|
static |
|
static |
|
static |
|
static |
Definition at line 36 of file tee.c.
Referenced by tee_write_header().
|
static |
Definition at line 37 of file tee.c.
Referenced by parse_slave_options().
|
static |
Definition at line 38 of file tee.c.
Referenced by parse_slave_options().
|
static |
Definition at line 39 of file tee.c.
Referenced by parse_slave_options().
|
static |
AVOutputFormat ff_tee_muxer |