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;
211 outlink->
w = inlink->
w *
s->n;
212 outlink->
h = inlink->
h *
s->n;
273 .p.priv_class = &epx_class,
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
@ 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...
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define E2(a, b)
Expand a pair of delta values (a,b) into two/four delta entries.
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
static int ff_slice_pos(int total, int jobnr, int nb_jobs)
Compute the boundary index for a slice when work of size total is split into nb_jobs slices.
#define FILTER_PIXFMTS_ARRAY(array)
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static enum AVPixelFormat pix_fmts[]
static int slice_end(AVCodecContext *avctx, AVFrame *pict, int *got_output)
Handle slice ends.
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_ARGB
packed ARGB 8:8:8:8, 32bpp, ARGBARGB...
@ AV_PIX_FMT_BGRA
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
@ AV_PIX_FMT_ABGR
packed ABGR 8:8:8:8, 32bpp, ABGRABGR...
@ AV_PIX_FMT_RGBA
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Describe the class of an AVClass context structure.
A link between two filters.
int w
agreed upon image width
int h
agreed upon image height
AVFilterContext * src
source filter
AVFilterContext * dst
dest filter
int format
agreed upon media format
A filter pad used for either input or output.
This structure describes decoded (raw) audio or video data.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
int(* epx_slice)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Used for passing data between threads.
static AVFormatContext * ctx
static int epx3_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int epx2_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int config_output(AVFilterLink *outlink)
static const AVOption epx_options[]
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
static int slice_start(SliceContext *sc, VVCContext *s, VVCFrameContext *fc, const CodedBitstreamUnit *unit, const int is_first_slice)