Go to the documentation of this file.
37 #define OFFSET(x) offsetof(EPXContext, x)
38 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
54 for (
int p = 0; p < 1; p++) {
57 const int src_linesize = in->
linesize[p] / 4;
58 const int dst_linesize =
out->linesize[p] / 4;
59 const uint32_t *
src = (
const uint32_t *)in->
data[p];
60 uint32_t *
dst = (uint32_t *)
out->data[p];
61 const uint32_t *src_line[3];
68 uint32_t *dst_line[2];
70 dst_line[0] =
dst + dst_linesize*2*y;
71 dst_line[1] =
dst + dst_linesize*(2*y+1);
73 for (
int x = 0; x <
width; x++) {
74 uint32_t E0,
E1,
E2, E3;
75 uint32_t
B,
D,
E,
F,
H;
78 D = src_line[1][
FFMAX(x-1, 0)];
83 if (
B !=
H &&
D !=
F) {
95 dst_line[0][x*2] = E0;
96 dst_line[0][x*2+1] =
E1;
97 dst_line[1][x*2] =
E2;
98 dst_line[1][x*2+1] = E3;
101 src_line[0] = src_line[1];
102 src_line[1] = src_line[2];
103 src_line[2] = src_line[1];
106 src_line[2] += src_linesize;
121 for (
int p = 0; p < 1; p++) {
124 const int src_linesize = in->
linesize[p] / 4;
125 const int dst_linesize =
out->linesize[p] / 4;
126 const uint32_t *
src = (
const uint32_t *)in->
data[p];
127 uint32_t *
dst = (uint32_t *)
out->data[p];
128 const uint32_t *src_line[3];
135 uint32_t *dst_line[3];
137 dst_line[0] =
dst + dst_linesize*3*y;
138 dst_line[1] =
dst + dst_linesize*(3*y+1);
139 dst_line[2] =
dst + dst_linesize*(3*y+2);
141 for (
int x = 0; x <
width; x++) {
142 uint32_t E0,
E1,
E2, E3,
E4, E5, E6, E7, E8;
145 A = src_line[0][
FFMAX(x-1, 0)];
148 D = src_line[1][
FFMAX(x-1, 0)];
151 G = src_line[2][
FFMAX(x-1, 0)];
155 if (
B !=
H &&
D !=
F) {
159 E3 = (
D ==
B &&
E !=
G) || (
D ==
H &&
E !=
A) ?
D :
E;
161 E5 = (
B ==
F &&
E != I) || (
H ==
F &&
E !=
C) ?
F :
E;
163 E7 = (
D ==
H &&
E != I) || (
H ==
F &&
E !=
G) ?
H :
E;
177 dst_line[0][x*3] = E0;
178 dst_line[0][x*3+1] =
E1;
179 dst_line[0][x*3+2] =
E2;
180 dst_line[1][x*3] = E3;
181 dst_line[1][x*3+1] =
E4;
182 dst_line[1][x*3+2] = E5;
183 dst_line[2][x*3] = E6;
184 dst_line[2][x*3+1] = E7;
185 dst_line[2][x*3+2] = E8;
188 src_line[0] = src_line[1];
189 src_line[1] = src_line[2];
190 src_line[2] = src_line[1];
193 src_line[2] += src_linesize;
277 .priv_class = &epx_class,
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
AVPixelFormat
Pixel format.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
#define FILTER_PIXFMTS_ARRAY(array)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define FILTER_INPUTS(array)
This structure describes decoded (raw) audio or video data.
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
const char * name
Filter name.
A link between two filters.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static int epx3_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static const AVOption epx_options[]
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
static const AVFilterPad outputs[]
static enum AVPixelFormat pix_fmts[]
A filter pad used for either input or output.
s EdgeDetect Foobar g libavfilter vf_edgedetect c libavfilter vf_foobar c edit libavfilter and add an entry for foobar following the pattern of the other filters edit libavfilter allfilters and add an entry for foobar following the pattern of the other filters configure make j< whatever > ffmpeg ffmpeg i you should get a foobar png with Lena edge detected That s your new playground is ready Some little details about what s going which in turn will define variables for the build system and the C
#define FILTER_OUTPUTS(array)
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Describe the class of an AVClass context structure.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
int format
agreed upon media format
AVFilterContext * src
source filter
static int config_output(AVFilterLink *outlink)
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
AVFILTER_DEFINE_CLASS(epx)
static int epx2_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
int w
agreed upon image width
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Used for passing data between threads.
const char * name
Pad name.
#define E2(a, b)
Expand a pair of delta values (a,b) into two/four delta entries.
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)
static const AVFilterPad inputs[]
int h
agreed upon image height
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
@ AV_OPT_TYPE_INT
Underlying C type is int.
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
#define flags(name, subs,...)
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
int(* epx_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)