|
FFmpeg
|
#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/opt.h"#include "avfilter.h"#include "filters.h"#include "formats.h"#include "internal.h"#include "video.h"#include "audio.h"Go to the source code of this file.
Data Structures | |
| struct | ConcatContext |
| struct | ConcatContext::concat_in |
Macros | |
| #define | TYPE_ALL 2 |
| #define | OFFSET(x) offsetof(ConcatContext, x) |
| #define | A AV_OPT_FLAG_AUDIO_PARAM |
| #define | F AV_OPT_FLAG_FILTERING_PARAM |
| #define | V AV_OPT_FLAG_VIDEO_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (concat) | |
| static int | query_formats (AVFilterContext *ctx) |
| static int | config_output (AVFilterLink *outlink) |
| static int | push_frame (AVFilterContext *ctx, unsigned in_no, AVFrame *buf) |
| static AVFrame * | get_video_buffer (AVFilterLink *inlink, int w, int h) |
| static AVFrame * | get_audio_buffer (AVFilterLink *inlink, int nb_samples) |
| static void | close_input (AVFilterContext *ctx, unsigned in_no) |
| static void | find_next_delta_ts (AVFilterContext *ctx, int64_t *seg_delta) |
| static int | send_silence (AVFilterContext *ctx, unsigned in_no, unsigned out_no, int64_t seg_delta) |
| static int | flush_segment (AVFilterContext *ctx) |
| static av_cold int | init (AVFilterContext *ctx) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | activate (AVFilterContext *ctx) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
Variables | |
| static const AVOption | concat_options [] |
| const AVFilter | ff_avf_concat |
concat audio-video filter
Definition in file avf_concat.c.
| #define TYPE_ALL 2 |
Definition at line 36 of file avf_concat.c.
| #define OFFSET | ( | x | ) | offsetof(ConcatContext, x) |
Definition at line 53 of file avf_concat.c.
| #define A AV_OPT_FLAG_AUDIO_PARAM |
Definition at line 54 of file avf_concat.c.
| #define F AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 55 of file avf_concat.c.
| #define V AV_OPT_FLAG_VIDEO_PARAM |
Definition at line 56 of file avf_concat.c.
| AVFILTER_DEFINE_CLASS | ( | concat | ) |
|
static |
Definition at line 75 of file avf_concat.c.
|
static |
Definition at line 120 of file avf_concat.c.
Referenced by init().
|
static |
Definition at line 174 of file avf_concat.c.
Referenced by activate().
|
static |
Definition at line 200 of file avf_concat.c.
Referenced by ff_get_video_buffer(), and init().
|
static |
Definition at line 209 of file avf_concat.c.
Referenced by init().
|
static |
Definition at line 218 of file avf_concat.c.
Referenced by activate().
|
static |
Definition at line 228 of file avf_concat.c.
Referenced by flush_segment().
|
static |
Definition at line 242 of file avf_concat.c.
Referenced by flush_segment().
|
static |
Definition at line 279 of file avf_concat.c.
Referenced by activate(), and process_command().
|
static |
Definition at line 306 of file avf_concat.c.
|
static |
Definition at line 349 of file avf_concat.c.
|
static |
Definition at line 356 of file avf_concat.c.
|
static |
Definition at line 436 of file avf_concat.c.
|
static |
Definition at line 58 of file avf_concat.c.
| const AVFilter ff_avf_concat |
Definition at line 449 of file avf_concat.c.
1.8.17