53#define OFFSET(x) offsetof(W3FDIFContext, x)
54#define FLAGS AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
55#define CONST(name, help, val, u) { name, help, 0, AV_OPT_TYPE_CONST, {.i64=val}, 0, 0, FLAGS, .unit = u }
62 CONST(
"frame",
"send one frame for each frame", 0,
"mode"),
63 CONST(
"field",
"send one frame for each field", 1,
"mode"),
65 CONST(
"tff",
"assume top field first", 0,
"parity"),
66 CONST(
"bff",
"assume bottom field first", 1,
"parity"),
67 CONST(
"auto",
"auto detect parity", -1,
"parity"),
69 CONST(
"all",
"deinterlace all frames", 0,
"deint"),
70 CONST(
"interlaced",
"only deinterlace frames marked as interlaced", 1,
"deint"),
103 uint8_t *in_lines_cur[2],
104 const int16_t *coef,
int linesize)
108 for (
i = 0;
i < linesize;
i++) {
109 *work_line = *in_lines_cur[0]++ * coef[0];
110 *work_line++ += *in_lines_cur[1]++ * coef[1];
115 uint8_t *in_lines_cur[4],
116 const int16_t *coef,
int linesize)
120 for (
i = 0;
i < linesize;
i++) {
121 *work_line = *in_lines_cur[0]++ * coef[0];
122 *work_line += *in_lines_cur[1]++ * coef[1];
123 *work_line += *in_lines_cur[2]++ * coef[2];
124 *work_line++ += *in_lines_cur[3]++ * coef[3];
129 uint8_t *in_lines_cur[3],
130 uint8_t *in_lines_adj[3],
131 const int16_t *coef,
int linesize)
135 for (
i = 0;
i < linesize;
i++) {
136 *work_line += *in_lines_cur[0]++ * coef[0];
137 *work_line += *in_lines_adj[0]++ * coef[0];
138 *work_line += *in_lines_cur[1]++ * coef[1];
139 *work_line += *in_lines_adj[1]++ * coef[1];
140 *work_line += *in_lines_cur[2]++ * coef[2];
141 *work_line++ += *in_lines_adj[2]++ * coef[2];
146 uint8_t *in_lines_cur[5],
147 uint8_t *in_lines_adj[5],
148 const int16_t *coef,
int linesize)
152 for (
i = 0;
i < linesize;
i++) {
153 *work_line += *in_lines_cur[0]++ * coef[0];
154 *work_line += *in_lines_adj[0]++ * coef[0];
155 *work_line += *in_lines_cur[1]++ * coef[1];
156 *work_line += *in_lines_adj[1]++ * coef[1];
157 *work_line += *in_lines_cur[2]++ * coef[2];
158 *work_line += *in_lines_adj[2]++ * coef[2];
159 *work_line += *in_lines_cur[3]++ * coef[3];
160 *work_line += *in_lines_adj[3]++ * coef[3];
161 *work_line += *in_lines_cur[4]++ * coef[4];
162 *work_line++ += *in_lines_adj[4]++ * coef[4];
170 for (j = 0; j < linesize; j++, out_pixel++, work_pixel++)
171 *out_pixel =
av_clip(*work_pixel, 0, 255 * 256 * 128) >> 15;
175 uint8_t *in_lines_cur8[2],
176 const int16_t *coef,
int linesize)
178 uint16_t *in_lines_cur[2] = { (uint16_t *)in_lines_cur8[0], (uint16_t *)in_lines_cur8[1] };
182 for (
i = 0;
i < linesize;
i++) {
183 *work_line = *in_lines_cur[0]++ * coef[0];
184 *work_line++ += *in_lines_cur[1]++ * coef[1];
189 uint8_t *in_lines_cur8[4],
190 const int16_t *coef,
int linesize)
192 uint16_t *in_lines_cur[4] = { (uint16_t *)in_lines_cur8[0],
193 (uint16_t *)in_lines_cur8[1],
194 (uint16_t *)in_lines_cur8[2],
195 (uint16_t *)in_lines_cur8[3] };
199 for (
i = 0;
i < linesize;
i++) {
200 *work_line = *in_lines_cur[0]++ * coef[0];
201 *work_line += *in_lines_cur[1]++ * coef[1];
202 *work_line += *in_lines_cur[2]++ * coef[2];
203 *work_line++ += *in_lines_cur[3]++ * coef[3];
208 uint8_t *in_lines_cur8[3],
209 uint8_t *in_lines_adj8[3],
210 const int16_t *coef,
int linesize)
212 uint16_t *in_lines_cur[3] = { (uint16_t *)in_lines_cur8[0],
213 (uint16_t *)in_lines_cur8[1],
214 (uint16_t *)in_lines_cur8[2] };
215 uint16_t *in_lines_adj[3] = { (uint16_t *)in_lines_adj8[0],
216 (uint16_t *)in_lines_adj8[1],
217 (uint16_t *)in_lines_adj8[2] };
221 for (
i = 0;
i < linesize;
i++) {
222 *work_line += *in_lines_cur[0]++ * coef[0];
223 *work_line += *in_lines_adj[0]++ * coef[0];
224 *work_line += *in_lines_cur[1]++ * coef[1];
225 *work_line += *in_lines_adj[1]++ * coef[1];
226 *work_line += *in_lines_cur[2]++ * coef[2];
227 *work_line++ += *in_lines_adj[2]++ * coef[2];
232 uint8_t *in_lines_cur8[5],
233 uint8_t *in_lines_adj8[5],
234 const int16_t *coef,
int linesize)
236 uint16_t *in_lines_cur[5] = { (uint16_t *)in_lines_cur8[0],
237 (uint16_t *)in_lines_cur8[1],
238 (uint16_t *)in_lines_cur8[2],
239 (uint16_t *)in_lines_cur8[3],
240 (uint16_t *)in_lines_cur8[4] };
241 uint16_t *in_lines_adj[5] = { (uint16_t *)in_lines_adj8[0],
242 (uint16_t *)in_lines_adj8[1],
243 (uint16_t *)in_lines_adj8[2],
244 (uint16_t *)in_lines_adj8[3],
245 (uint16_t *)in_lines_adj8[4] };
249 for (
i = 0;
i < linesize;
i++) {
250 *work_line += *in_lines_cur[0]++ * coef[0];
251 *work_line += *in_lines_adj[0]++ * coef[0];
252 *work_line += *in_lines_cur[1]++ * coef[1];
253 *work_line += *in_lines_adj[1]++ * coef[1];
254 *work_line += *in_lines_cur[2]++ * coef[2];
255 *work_line += *in_lines_adj[2]++ * coef[2];
256 *work_line += *in_lines_cur[3]++ * coef[3];
257 *work_line += *in_lines_adj[3]++ * coef[3];
258 *work_line += *in_lines_cur[4]++ * coef[4];
259 *work_line++ += *in_lines_adj[4]++ * coef[4];
265 uint16_t *out_pixel = (uint16_t *)out_pixel8;
269 for (j = 0; j < linesize; j++, out_pixel++, work_pixel++)
270 *out_pixel =
av_clip(*work_pixel, 0,
max) >> 15;
278 int ret,
i, depth, nb_threads;
284 s->planeheight[0] =
s->planeheight[3] = inlink->
h;
293 s->work_line =
av_calloc(nb_threads,
sizeof(*
s->work_line));
296 s->nb_threads = nb_threads;
298 for (
i = 0;
i <
s->nb_threads;
i++) {
300 if (!
s->work_line[
i])
304 depth =
desc->comp[0].depth;
305 s->max = ((1 << depth) - 1) * 256 * 128;
320#if ARCH_X86 && HAVE_X86ASM
351static const int16_t
coef_lf[2][4] = {{ 16384, 16384, 0, 0},
352 { -852, 17236, 17236, -852}};
354static const int16_t
coef_hf[2][5] = {{ -2048, 4096, -2048, 0, 0},
355 { 1016, -3801, 5570, -3801, 1016}};
362 int jobnr,
int nb_jobs,
int plane)
370 uint8_t *in_line, *in_lines_cur[5], *in_lines_adj[5];
371 uint8_t *out_line, *out_pixel;
372 int32_t *work_line, *work_pixel;
373 uint8_t *cur_data = cur->
data[plane];
374 uint8_t *adj_data = adj->
data[plane];
375 uint8_t *dst_data =
out->data[plane];
376 const int linesize =
s->linesize[plane];
377 const int height =
s->planeheight[plane];
378 const int cur_line_stride = cur->
linesize[plane];
379 const int adj_line_stride = adj->
linesize[plane];
380 const int dst_line_stride =
out->linesize[plane];
383 const int max =
s->max;
390 y_out = start + (tff ^ (start & 1));
392 in_line = cur_data + (y_out * cur_line_stride);
393 out_line = dst_data + (y_out * dst_line_stride);
395 while (y_out < end) {
396 memcpy(out_line, in_line, linesize);
398 in_line += cur_line_stride * 2;
399 out_line += dst_line_stride * 2;
403 y_out = start + ((!tff) ^ (start & 1));
405 out_line = dst_data + (y_out * dst_line_stride);
407 while (y_out < end) {
417 in_lines_cur[j] = cur_data + (y_in * cur_line_stride);
420 work_line =
s->work_line[jobnr];
423 s->dsp.filter_simple_low(work_line, in_lines_cur,
427 s->dsp.filter_complex_low(work_line, in_lines_cur,
440 in_lines_cur[j] = cur_data + (y_in * cur_line_stride);
441 in_lines_adj[j] = adj_data + (y_in * adj_line_stride);
444 work_line =
s->work_line[jobnr];
447 s->dsp.filter_simple_high(work_line, in_lines_cur, in_lines_adj,
451 s->dsp.filter_complex_high(work_line, in_lines_cur, in_lines_adj,
456 work_pixel =
s->work_line[jobnr];
457 out_pixel = out_line;
459 s->dsp.filter_scale(out_pixel, work_pixel, linesize,
max);
463 out_line += dst_line_stride * 2;
470 int jobnr,
int nb_jobs)
474 for (
int p = 0; p <
s->nb_planes; p++)
501 out->pts = cur_pts + next_pts;
507 adj =
s->field ?
s->next :
s->prev;
510 FFMIN(
s->planeheight[1],
s->nb_threads));
513 s->field = !
s->field;
550 if (ret < 0 || s->
mode == 0)
571 next->
pts =
s->next->pts * 2 -
s->cur->pts;
574 }
else if (ret < 0) {
590 for (
i = 0;
i <
s->nb_threads;
i++)
617 .p.priv_class = &w3fdif_class,
static int config_input(AVFilterLink *inlink)
static int request_frame(AVFilterLink *outlink)
const FFFilter ff_vf_w3fdif
static AVFormatContext * ctx
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_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.
Main libavfilter public API header.
static const uint16_t coef_hf[3]
static const uint16_t coef_lf[2]
#define i(width, name, range_min, range_max)
common internal and external API header
#define AV_CEIL_RSHIFT(a, b)
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 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.
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
#define AV_FRAME_FLAG_TOP_FIELD_FIRST
A flag to mark frames where the top field is displayed first if the content is interlaced.
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.
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
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.
#define AV_NOPTS_VALUE
Undefined timestamp value.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
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)
static FilterLink * ff_filter_link(AVFilterLink *link)
#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[]
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
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
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.
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.
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
int flags
Frame flags, a combination of AV_FRAME_FLAGS.
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...
Rational number (pair of numerator and denominator).
Link properties exposed to filter code, but not external callers.
AVRational frame_rate
Frame rate of the stream on the link, or 1/0 if unknown or variable.
Used for passing data between threads.
int deint
which frames to deinterlace
int32_t ** work_line
lines we are calculating
int linesize[4]
bytes of pixel data per line for each plane
int mode
0 is frame, 1 is field
int parity
frame field parity
AVFrame * next
previous, current, next frames
int planeheight[4]
height of each plane
int filter
0 is simple, 1 is more complex
int field
which field are we on, 0 or 1
void(* filter)(uint8_t *src, ptrdiff_t stride, int qscale)
static int deinterlace_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static int deinterlace_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
static void filter_complex_low(int32_t *work_line, uint8_t *in_lines_cur[4], const int16_t *coef, int linesize)
static int deinterlace_plane_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs, int plane)
static const int8_t n_coef_hf[2]
static const int8_t n_coef_lf[2]
static int config_input(AVFilterLink *inlink)
static const AVOption w3fdif_options[]
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
static void filter16_simple_high(int32_t *work_line, uint8_t *in_lines_cur8[3], uint8_t *in_lines_adj8[3], const int16_t *coef, int linesize)
static int request_frame(AVFilterLink *outlink)
static const AVFilterPad w3fdif_inputs[]
static void filter_scale(uint8_t *out_pixel, const int32_t *work_pixel, int linesize, int max)
static const AVFilterPad w3fdif_outputs[]
static void filter_simple_high(int32_t *work_line, uint8_t *in_lines_cur[3], uint8_t *in_lines_adj[3], const int16_t *coef, int linesize)
static void filter16_scale(uint8_t *out_pixel8, const int32_t *work_pixel, int linesize, int max)
#define CONST(name, help, val, u)
static void filter16_simple_low(int32_t *work_line, uint8_t *in_lines_cur8[2], const int16_t *coef, int linesize)
static void filter16_complex_high(int32_t *work_line, uint8_t *in_lines_cur8[5], uint8_t *in_lines_adj8[5], const int16_t *coef, int linesize)
static av_cold void uninit(AVFilterContext *ctx)
static void filter16_complex_low(int32_t *work_line, uint8_t *in_lines_cur8[4], const int16_t *coef, int linesize)
static void filter_complex_high(int32_t *work_line, uint8_t *in_lines_cur[5], uint8_t *in_lines_adj[5], const int16_t *coef, int linesize)
static int config_output(AVFilterLink *outlink)
static void filter_simple_low(int32_t *work_line, uint8_t *in_lines_cur[2], const int16_t *coef, int linesize)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
void ff_w3fdif_init_x86(W3FDIFDSPContext *dsp, int depth)