FFmpeg
|
#include "config_components.h"
#include <float.h>
#include "libavutil/avassert.h"
#include "libavutil/common.h"
#include "libavutil/ffmath.h"
#include "libavutil/opt.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/parseutils.h"
#include "libavutil/xga_font_data.h"
#include "avfilter.h"
#include "drawutils.h"
#include "filters.h"
#include "formats.h"
#include "internal.h"
#include "video.h"
Go to the source code of this file.
Data Structures | |
struct | TestSourceContext |
Macros | |
#define | OFFSET(x) offsetof(TestSourceContext, x) |
#define | FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | FLAGSR AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
#define | SIZE_OPTIONS |
#define | COMMON_OPTIONS_NOSIZE |
#define | COMMON_OPTIONS SIZE_OPTIONS COMMON_OPTIONS_NOSIZE |
#define | NOSIZE_OPTIONS_OFFSET 2 |
Functions | |
static av_cold int | init (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *outlink) |
static int | activate (AVFilterContext *ctx) |
AVFILTER_DEFINE_CLASS_EXT (nullsrc_yuvtestsrc, "nullsrc/yuvtestsrc", options) | |
AVFILTER_DEFINE_CLASS_EXT (allyuv_allrgb, "allyuv/allrgb", &options[NOSIZE_OPTIONS_OFFSET]) | |
Variables | |
static const AVOption | options [] |
static const AVFilterPad | outputs [] |
Misc test sources.
testsrc is based on the test pattern generator demuxer by Nicolas George: http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2007-October/037845.html
rgbtestsrc is ported from MPlayer libmpcodecs/vf_rgbtest.c by Michael Niedermayer.
allyuv, smptebars and smptehdbars are by Paul B Mahol.
Definition in file vsrc_testsrc.c.
#define OFFSET | ( | x | ) | offsetof(TestSourceContext, x) |
Definition at line 102 of file vsrc_testsrc.c.
#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 103 of file vsrc_testsrc.c.
Definition at line 104 of file vsrc_testsrc.c.
#define SIZE_OPTIONS |
Definition at line 106 of file vsrc_testsrc.c.
#define COMMON_OPTIONS_NOSIZE |
Definition at line 110 of file vsrc_testsrc.c.
#define COMMON_OPTIONS SIZE_OPTIONS COMMON_OPTIONS_NOSIZE |
Definition at line 117 of file vsrc_testsrc.c.
#define NOSIZE_OPTIONS_OFFSET 2 |
Definition at line 119 of file vsrc_testsrc.c.
|
static |
Definition at line 127 of file vsrc_testsrc.c.
|
static |
Definition at line 142 of file vsrc_testsrc.c.
|
static |
Definition at line 150 of file vsrc_testsrc.c.
|
static |
Definition at line 171 of file vsrc_testsrc.c.
AVFILTER_DEFINE_CLASS_EXT | ( | nullsrc_yuvtestsrc | , |
"nullsrc/yuvtestsrc" | , | ||
options | |||
) |
AVFILTER_DEFINE_CLASS_EXT | ( | allyuv_allrgb | , |
"allyuv/allrgb" | , | ||
& | options[NOSIZE_OPTIONS_OFFSET] | ||
) |
|
static |
Definition at line 122 of file vsrc_testsrc.c.
|
static |
Definition at line 163 of file vsrc_testsrc.c.