65 int end,
int x,
int k,
int depth);
68 const uint16_t *
const next,
69 const uint16_t *
const prev2,
70 const uint16_t *
const next2,
71 const uint16_t *
const prev3,
72 const uint16_t *
const next3,
73 int end,
int x,
int k,
int depth);
77 #define S (MAX_R * 2 + 1)
79 #define OFFSET(x) offsetof(ESTDIFContext, x)
80 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
81 #define CONST(name, help, val, unit) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, unit }
85 CONST(
"frame",
"send one frame for each frame", 0,
"mode"),
86 CONST(
"field",
"send one frame for each field", 1,
"mode"),
88 CONST(
"tff",
"assume top field first", 0,
"parity"),
89 CONST(
"bff",
"assume bottom field first", 1,
"parity"),
90 CONST(
"auto",
"auto detect parity", -1,
"parity"),
92 CONST(
"all",
"deinterlace all frames", 0,
"deint"),
93 CONST(
"interlaced",
"only deinterlace frames marked as interlaced", 1,
"deint"),
97 CONST(
"2p",
"two-point interpolation", 0,
"interp"),
98 CONST(
"4p",
"four-point interpolation", 1,
"interp"),
99 CONST(
"6p",
"six-point interpolation", 2,
"interp"),
156 #define MIDL(type, ss) \
157 static unsigned midl_##ss(const type *const prev, \
158 const type *const next, \
159 int end, int x, int k) \
161 return (prev[av_clip(x + k, 0, end)] + \
162 next[av_clip(x - k, 0, end)] + 1) >> 1; \
168 #define MID2(type, ss) \
169 static unsigned mid2_##ss(const type *const prev, \
170 const type *const next, \
171 const type *const prev2, \
172 const type *const next2, \
173 const type *const prev3, \
174 const type *const next3, \
175 int end, int x, int k, int depth) \
177 return (prev[av_clip(x + k, 0, end)] + \
178 next[av_clip(x - k, 0, end)] + 1) >> 1; \
184 #define MID4(type, ss) \
185 static unsigned mid4_##ss(const type *const prev, \
186 const type *const next, \
187 const type *const prev2, \
188 const type *const next2, \
189 const type *const prev3, \
190 const type *const next3, \
191 int end, int x, int k, int depth) \
193 return av_clip_uintp2_c(( \
194 9 * (prev[av_clip(x + k, 0, end)] + \
195 next[av_clip(x - k, 0, end)]) - \
196 1 * (prev2[av_clip(x + k*3, 0, end)] + \
197 next2[av_clip(x - k*3, 0, end)]) + 8) >> 4, \
204 #define MID6(type, ss) \
205 static unsigned mid6_##ss(const type *const prev, \
206 const type *const next, \
207 const type *const prev2, \
208 const type *const next2, \
209 const type *const prev3, \
210 const type *const next3, \
211 int end, int x, int k, int depth) \
213 return av_clip_uintp2_c(( \
214 20 * (prev[av_clip(x + k, 0, end)] + \
215 next[av_clip(x - k, 0, end)]) - \
216 5 * (prev2[av_clip(x + k*3, 0, end)] + \
217 next2[av_clip(x - k*3, 0, end)]) + \
218 1 * (prev3[av_clip(x + k*5, 0, end)] + \
219 next3[av_clip(x - k*5, 0, end)]) + 16) >> 5, \
226 #define DIFF(type, ss) \
227 static unsigned diff_##ss(const type *const prev, \
228 const type *const next, \
229 int end, int x, int k, int j) \
231 return FFABS(prev[av_clip(x + k + j, 0, end)] - \
232 next[av_clip(x - k + j, 0, end)]); \
238 #define COST(type, ss) \
239 static unsigned cost_##ss(const type *const prev, \
240 const type *const next, \
241 int end, int x, int k) \
243 const int m = midl_##ss(prev, next, end, x, k); \
244 const int p = prev[x]; \
245 const int n = next[x]; \
247 return FFABS(p - m) + FFABS(n - m); \
253 #define INTERPOLATE(type, atype, max, ss) \
254 static void interpolate_##ss(ESTDIFContext *s, uint8_t *ddst, \
255 const uint8_t *const pprev_line, \
256 const uint8_t *const nnext_line, \
257 const uint8_t *const pprev2_line, \
258 const uint8_t *const nnext2_line, \
259 const uint8_t *const pprev3_line, \
260 const uint8_t *const nnext3_line, \
261 int x, int width, int rslope, \
262 int redge, unsigned h, int depth, \
265 type *dst = (type *)ddst; \
266 const type *const prev_line = (const type *const)pprev_line; \
267 const type *const prev2_line = (const type *const)pprev2_line; \
268 const type *const prev3_line = (const type *const)pprev3_line; \
269 const type *const next_line = (const type *const)nnext_line; \
270 const type *const next2_line = (const type *const)nnext2_line; \
271 const type *const next3_line = (const type *const)nnext3_line; \
272 const int interp = s->interp; \
273 const int end = width - 1; \
274 const atype f = redge + 2; \
275 atype sd[S], sD[S], di = 0; \
279 for (int i = -rslope; i <= rslope && abs(k) > rslope; i++) { \
282 for (int j = -redge; j <= redge; j++) { \
283 sum += diff_##ss(prev_line, next_line, end, x, i, j); \
284 sum += diff_##ss(prev2_line, prev_line, end, x, i, j); \
285 sum += diff_##ss(next_line, next2_line, end, x, i, j); \
288 sD[i + rslope] = sum; \
289 sD[i + rslope] += f * cost_##ss(prev_line, next_line, end, x, i); \
290 sD[i + rslope] += h * abs(i); \
292 dmin = FFMIN(sD[i + rslope], dmin); \
295 for (int i = -rslope; i <= rslope; i++) { \
298 for (int j = -redge; j <= redge; j++) { \
299 sum += diff_##ss(prev_line, next_line, end, x, k + i, j); \
300 sum += diff_##ss(prev2_line, prev_line, end, x, k + i, j); \
301 sum += diff_##ss(next_line, next2_line, end, x, k + i, j); \
304 sd[i + rslope] = sum; \
305 sd[i + rslope] += f * cost_##ss(prev_line, next_line, end, x, k + i); \
306 sd[i + rslope] += h * abs(k + i); \
308 dmin = FFMIN(sd[i + rslope], dmin); \
311 for (int i = -rslope; i <= rslope && abs(k) > rslope; i++) { \
312 if (dmin == sD[i + rslope]) { \
319 for (int i = -rslope; i <= rslope && !di; i++) { \
320 if (dmin == sd[i + rslope]) { \
326 dst[x] = s->mid_##ss[interp](prev_line, next_line, \
327 prev2_line, next2_line, \
328 prev3_line, next3_line, \
338 int jobnr,
int nb_jobs)
344 const int rslope =
s->rslope;
345 const int redge =
s->redge;
346 const int half =
s->half;
347 const int depth =
s->depth;
349 const int tff = (
s->field == (
s->parity == -1 ?
interlaced ?
in->top_field_first : 1 :
352 for (
int plane = 0; plane <
s->nb_planes; plane++) {
353 const uint8_t *src_data =
in->data[plane];
355 const int linesize =
s->linesize[plane];
356 const int width =
s->planewidth[plane];
357 const int height =
s->planeheight[plane];
358 const int src_linesize =
in->linesize[plane];
359 const int dst_linesize =
out->linesize[plane];
362 const uint8_t *prev_line, *prev2_line, *next_line, *next2_line, *in_line;
363 const uint8_t *prev3_line, *next3_line;
367 y_out = start + (tff ^ (start & 1));
369 in_line = src_data + (y_out * src_linesize);
370 out_line = dst_data + (y_out * dst_linesize);
372 while (y_out < end) {
373 memcpy(out_line, in_line, linesize);
375 in_line += src_linesize * 2;
376 out_line += dst_linesize * 2;
379 y_out = start + ((!tff) ^ (start & 1));
380 out_line = dst_data + (y_out * dst_linesize);
382 for (
int y = y_out; y < end; y += 2) {
383 int y_prev3_in = y - 5;
384 int y_next3_in = y + 5;
385 int y_prev2_in = y - 3;
386 int y_next2_in = y + 3;
387 int y_prev_in = y - 1;
388 int y_next_in = y + 1;
391 while (y_prev3_in < 0)
394 while (y_next3_in >=
height)
397 while (y_prev2_in < 0)
400 while (y_next2_in >=
height)
403 while (y_prev_in < 0)
406 while (y_next_in >=
height)
409 prev3_line = src_data + (y_prev3_in * src_linesize);
410 next3_line = src_data + (y_next3_in * src_linesize);
412 prev2_line = src_data + (y_prev2_in * src_linesize);
413 next2_line = src_data + (y_next2_in * src_linesize);
415 prev_line = src_data + (y_prev_in * src_linesize);
416 next_line = src_data + (y_next_in * src_linesize);
420 for (
int x = 0; x <
width; x++) {
421 s->interpolate(
s, out_line,
422 prev_line, next_line,
423 prev2_line, next2_line,
424 prev3_line, next3_line,
425 x,
width, rslope, redge,
half, depth, &k);
428 out_line += 2 * dst_linesize;
446 out->interlaced_frame = 0;
451 FFMIN(
s->planeheight[1] / 2,
s->nb_threads));
454 s->field = !
s->field;
470 s->planeheight[0] =
s->planeheight[3] = inlink->
h;
472 s->planewidth[0] =
s->planewidth[3] = inlink->
w;
481 s->depth =
desc->comp[0].depth;
482 s->interpolate =
s->depth <= 8 ? interpolate_8 : interpolate_16;
483 s->mid_8[0] = mid2_8;
484 s->mid_8[1] = mid4_8;
485 s->mid_8[2] = mid6_8;
486 s->mid_16[0] = mid2_16;
487 s->mid_16[1] = mid4_16;
488 s->mid_16[2] = mid6_16;
489 s->half = 1 << (
s->depth - 1);
504 if ((
s->deint && !
in->interlaced_frame) ||
ctx->is_disabled) {
511 s->pts =
s->prev->pts * 2;
513 if (ret < 0 || s->
mode == 0) {
519 s->pts =
s->prev->pts +
in->pts;
544 ctx->outputs[0]->time_base);
547 }
else if (ret < 0) {
585 .priv_class = &estdif_class,
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
Main libavfilter public API header.
#define flags(name, subs,...)
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
mode
Use these values in ebur128_init (or'ed).
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 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_EOF
End of file.
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
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 AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static enum AVPixelFormat pix_fmts[]
static uint8_t half(int a, int b)
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_GBRAP12
#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_GBRAP16
#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_GBRP10
#define AV_PIX_FMT_YUV422P10
#define AV_PIX_FMT_GRAY12
#define AV_PIX_FMT_GBRP12
#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_GRAY8
Y , 8bpp.
@ 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_GBRAP
planar GBRA 4:4:4:4 32bpp
@ 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_GBRP
planar GBR 4:4:4 24bpp
@ 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_GRAY10
#define AV_PIX_FMT_GRAY14
#define AV_PIX_FMT_YUV422P16
#define AV_PIX_FMT_YUV440P10
#define AV_PIX_FMT_GRAY16
#define AV_PIX_FMT_GBRAP10
#define AV_PIX_FMT_YUVA444P16
#define AV_PIX_FMT_YUVA422P16
#define AV_PIX_FMT_GBRP16
#define AV_PIX_FMT_YUV444P14
#define AV_PIX_FMT_YUVA444P9
#define AV_PIX_FMT_GBRP14
#define AV_PIX_FMT_YUVA444P12
#define AV_PIX_FMT_YUV444P16
#define AV_PIX_FMT_YUV444P10
typedef void(RENAME(mix_any_func_type))
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
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable; if left to 0/0,...
AVFilterContext * dst
dest filter
int format
agreed upon media format
A filter pad used for either input or output.
const char * name
Pad name.
const char * name
Filter name.
AVFormatInternal * internal
An opaque field for libavformat internal usage.
This structure describes decoded (raw) audio or video data.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
int planewidth[4]
width of each plane
int interp
type of interpolation
void(* interpolate)(struct ESTDIFContext *s, uint8_t *dst, const uint8_t *prev_line, const uint8_t *next_line, const uint8_t *prev2_line, const uint8_t *next2_line, const uint8_t *prev3_line, const uint8_t *next3_line, int x, int width, int rslope, int redge, unsigned half, int depth, int *K)
unsigned(* mid_16[3])(const uint16_t *const prev, const uint16_t *const next, const uint16_t *const prev2, const uint16_t *const next2, const uint16_t *const prev3, const uint16_t *const next3, int end, int x, int k, int depth)
int mode
0 is frame, 1 is field
int parity
frame field parity
int field
which field are we on, 0 or 1
int redge
best edge match search radius
unsigned(* mid_8[3])(const uint8_t *const prev, const uint8_t *const next, const uint8_t *const prev2, const uint8_t *const next2, const uint8_t *const prev3, const uint8_t *const next3, int end, int x, int k, int depth)
int linesize[4]
bytes of pixel data per line for each plane
int rslope
best edge slope search radius
int deint
which frames to deinterlace
int planeheight[4]
height of each plane
Used for passing data between threads.
static int deinterlace_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static const AVFilterPad estdif_outputs[]
#define CONST(name, help, val, unit)
AVFILTER_DEFINE_CLASS(estdif)
static int query_formats(AVFilterContext *ctx)
static int config_input(AVFilterLink *inlink)
static int request_frame(AVFilterLink *link)
#define INTERPOLATE(type, atype, max, ss)
static const AVOption estdif_options[]
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static av_cold void uninit(AVFilterContext *ctx)
static int config_output(AVFilterLink *outlink)
static const AVFilterPad estdif_inputs[]
static int filter(AVFilterContext *ctx, int is_second, AVFrame *in)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.