74#define DEFINE_DEDOTCRAWL(name, type, div) \
75static int dedotcrawl##name(AVFilterContext *ctx, void *arg, \
76 int jobnr, int nb_jobs) \
78 DedotContext *s = ctx->priv; \
80 int src_linesize = s->frames[2]->linesize[0] / div; \
81 int dst_linesize = out->linesize[0] / div; \
82 int p0_linesize = s->frames[0]->linesize[0] / div; \
83 int p1_linesize = s->frames[1]->linesize[0] / div; \
84 int p3_linesize = s->frames[3]->linesize[0] / div; \
85 int p4_linesize = s->frames[4]->linesize[0] / div; \
86 const int h = s->planeheight[0]; \
87 int slice_start = ff_slice_pos(h, jobnr, nb_jobs); \
88 int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs); \
89 type *p0 = (type *)s->frames[0]->data[0]; \
90 type *p1 = (type *)s->frames[1]->data[0]; \
91 type *p3 = (type *)s->frames[3]->data[0]; \
92 type *p4 = (type *)s->frames[4]->data[0]; \
93 type *src = (type *)s->frames[2]->data[0]; \
94 type *dst = (type *)out->data[0]; \
95 const int luma2d = s->luma2d; \
96 const int lumaT = s->lumaT; \
101 p0 += p0_linesize * slice_start; \
102 p1 += p1_linesize * slice_start; \
103 p3 += p3_linesize * slice_start; \
104 p4 += p4_linesize * slice_start; \
105 src += src_linesize * slice_start; \
106 dst += dst_linesize * slice_start; \
107 if (slice_end == h) { \
110 for (int y = slice_start; y < slice_end; y++) { \
111 for (int x = 1; x < s->planewidth[0] - 1; x++) { \
112 int above = src[x - src_linesize]; \
113 int below = src[x + src_linesize]; \
115 int left = src[x - 1]; \
116 int right = src[x + 1]; \
118 if (FFABS(above + below - 2 * cur) <= luma2d && \
119 FFABS(left + right - 2 * cur) <= luma2d) \
122 if (FFABS(cur - p0[x]) <= lumaT && \
123 FFABS(cur - p4[x]) <= lumaT && \
124 FFABS(p1[x] - p3[x]) <= lumaT) { \
125 int diff1 = FFABS(cur - p1[x]); \
126 int diff2 = FFABS(cur - p3[x]); \
129 dst[x] = (src[x] + p1[x] + 1) >> 1; \
131 dst[x] = (src[x] + p3[x] + 1) >> 1; \
135 dst += dst_linesize; \
136 src += src_linesize; \
153#define DEFINE_DERAINBOW(name, type, div) \
154static int derainbow##name(AVFilterContext *ctx, void *arg, \
155 int jobnr, int nb_jobs) \
157 DedotContext *s = ctx->priv; \
158 ThreadData *td = arg; \
159 AVFrame *out = td->out; \
160 const int plane = td->plane; \
161 const int h = s->planeheight[plane]; \
162 int slice_start = ff_slice_pos(h, jobnr, nb_jobs); \
163 int slice_end = ff_slice_pos(h, jobnr + 1, nb_jobs); \
164 int src_linesize = s->frames[2]->linesize[plane] / div; \
165 int dst_linesize = out->linesize[plane] / div; \
166 int p0_linesize = s->frames[0]->linesize[plane] / div; \
167 int p1_linesize = s->frames[1]->linesize[plane] / div; \
168 int p3_linesize = s->frames[3]->linesize[plane] / div; \
169 int p4_linesize = s->frames[4]->linesize[plane] / div; \
170 type *p0 = (type *)s->frames[0]->data[plane]; \
171 type *p1 = (type *)s->frames[1]->data[plane]; \
172 type *p3 = (type *)s->frames[3]->data[plane]; \
173 type *p4 = (type *)s->frames[4]->data[plane]; \
174 type *src = (type *)s->frames[2]->data[plane]; \
175 type *dst = (type *)out->data[plane]; \
176 const int chromaT1 = s->chromaT1; \
177 const int chromaT2 = s->chromaT2; \
179 p0 += slice_start * p0_linesize; \
180 p1 += slice_start * p1_linesize; \
181 p3 += slice_start * p3_linesize; \
182 p4 += slice_start * p4_linesize; \
183 src += slice_start * src_linesize; \
184 dst += slice_start * dst_linesize; \
185 for (int y = slice_start; y < slice_end; y++) { \
186 for (int x = 0; x < s->planewidth[plane]; x++) { \
189 if (FFABS(cur - p0[x]) <= chromaT1 && \
190 FFABS(cur - p4[x]) <= chromaT1 && \
191 FFABS(p1[x] - p3[x]) <= chromaT1 && \
192 FFABS(cur - p1[x]) > chromaT2 && \
193 FFABS(cur - p3[x]) > chromaT2) { \
194 int diff1 = FFABS(cur - p1[x]); \
195 int diff2 = FFABS(cur - p3[x]); \
198 dst[x] = (src[x] + p1[x] + 1) >> 1; \
200 dst[x] = (src[x] + p3[x] + 1) >> 1; \
204 dst += dst_linesize; \
205 src += src_linesize; \
227 s->depth =
s->desc->comp[0].depth;
228 s->max = (1 <<
s->depth) - 1;
229 s->luma2d =
s->lt *
s->max;
230 s->lumaT =
s->tl *
s->max;
231 s->chromaT1 =
s->tc *
s->max;
232 s->chromaT2 =
s->ct *
s->max;
234 s->planewidth[1] =
s->planewidth[2] =
AV_CEIL_RSHIFT(inlink->
w,
s->desc->log2_chroma_w);
235 s->planewidth[0] =
s->planewidth[3] = inlink->
w;
237 s->planeheight[1] =
s->planeheight[2] =
AV_CEIL_RSHIFT(inlink->
h,
s->desc->log2_chroma_h);
238 s->planeheight[0] =
s->planeheight[3] = inlink->
h;
241 s->dedotcrawl = dedotcrawl8;
242 s->derainbow = derainbow8;
244 s->dedotcrawl = dedotcrawl16;
245 s->derainbow = derainbow16;
268 if (
frame ||
s->eof_frames > 0) {
272 for (
int i = 2;
i < 5;
i++) {
277 }
else if (
s->frames[3]) {
288 if (
out && !
ctx->is_disabled) {
314 s->frames[0] =
s->frames[1];
315 s->frames[1] =
s->frames[2];
316 s->frames[2] =
s->frames[3];
317 s->frames[3] =
s->frames[4];
327 if (
s->eof_frames <= 0) {
338 s->eof_frames = !!
s->frames[0] + !!
s->frames[1];
339 if (
s->eof_frames <= 0) {
357 for (
int i = 0;
i < 5;
i++)
361#define OFFSET(x) offsetof(DedotContext, x)
362#define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
388 .p.priv_class = &dedot_class,
static const AVFilterPad outputs[]
const FFFilter ff_vf_dedot
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
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.
void ff_filter_set_ready(AVFilterContext *filter, unsigned priority)
Mark a filter ready and schedule it for activation.
int ff_inlink_make_frame_writable(AVFilterLink *link, AVFrame **rframe)
Make sure a frame is writable.
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
#define AV_CEIL_RSHIFT(a, b)
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
@ AV_OPT_TYPE_FLAGS
Underlying C type is unsigned int.
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
#define AVERROR_EOF
End of file.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FF_FILTER_FORWARD_WANTED(outlink, inlink)
Forward the frame_wanted_out flag from an output link to an input link.
#define FILTER_PIXFMTS_ARRAY(array)
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
#define FFERROR_NOT_READY
Filters implementation helper functions and internal structures.
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
#define AVFILTER_DEFINE_CLASS(fname)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
#define AV_PIX_FMT_YUV420P16
#define AV_PIX_FMT_YUV444P12
#define AV_PIX_FMT_YUV444P9
#define AV_PIX_FMT_YUV420P10
#define AV_PIX_FMT_YUV440P12
#define AV_PIX_FMT_YUV422P9
#define AV_PIX_FMT_YUVA444P10
#define AV_PIX_FMT_YUVA420P16
#define AV_PIX_FMT_YUV420P12
#define AV_PIX_FMT_YUVA420P10
#define AV_PIX_FMT_YUVA422P9
#define AV_PIX_FMT_YUV422P12
#define AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_YUV420P9
#define AV_PIX_FMT_YUVA420P9
#define AV_PIX_FMT_YUVA422P10
#define AV_PIX_FMT_YUV420P14
AVPixelFormat
Pixel format.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
@ AV_PIX_FMT_YUV440P
planar YUV 4:4:0 (1 Cr & Cb sample per 1x2 Y samples)
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
@ AV_PIX_FMT_YUVA420P
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
@ AV_PIX_FMT_YUVJ440P
planar YUV 4:4:0 full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV440P and setting color_range
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
@ AV_PIX_FMT_YUVA444P
planar YUV 4:4:4 32bpp, (1 Cr & Cb sample per 1x1 Y & A samples)
@ AV_PIX_FMT_YUVJ411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples) full scale (JPEG), deprecated in favor ...
@ AV_PIX_FMT_YUVJ422P
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
@ AV_PIX_FMT_YUVA422P
planar YUV 4:2:2 24bpp, (1 Cr & Cb sample per 2x1 Y & A samples)
@ AV_PIX_FMT_YUVJ444P
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
@ AV_PIX_FMT_YUVJ420P
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
#define AV_PIX_FMT_YUVA422P12
#define AV_PIX_FMT_YUV422P14
#define AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P10
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
A filter pad used for either input or output.
This structure describes decoded (raw) audio or video data.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
int(* derainbow)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
const AVPixFmtDescriptor * desc
int(* dedotcrawl)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
Used for passing data between threads.
static AVFormatContext * ctx
static enum AVPixelFormat pixel_fmts[]
#define DEFINE_DEDOTCRAWL(name, type, div)
#define DEFINE_DERAINBOW(name, type, div)
static int activate(AVFilterContext *ctx)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption dedot_options[]
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.