|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "libavutil/imgutils.h" |
|
#include "libavutil/internal.h" |
|
#include "libavutil/opt.h" |
|
#include "libavutil/pixdesc.h" |
|
#include "avfilter.h" |
|
#include "formats.h" |
|
#include "internal.h" |
|
#include "video.h" |
|
|
|
typedef struct FieldOrderContext { |
|
const AVClass *class; |
|
int dst_tff; |
|
int line_size[4]; |
|
} FieldOrderContext; |
|
|
|
static int query_formats(AVFilterContext *ctx) |
|
{ |
|
const AVPixFmtDescriptor *desc = NULL; |
|
AVFilterFormats *formats; |
|
int ret; |
|
|
|
|
|
|
|
formats = NULL; |
|
while ((desc = av_pix_fmt_desc_next(desc))) { |
|
enum AVPixelFormat pix_fmt = av_pix_fmt_desc_get_id(desc); |
|
if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL || |
|
desc->flags & AV_PIX_FMT_FLAG_PAL || |
|
desc->flags & AV_PIX_FMT_FLAG_BITSTREAM) && |
|
desc->nb_components && !desc->log2_chroma_h && |
|
(ret = ff_add_format(&formats, pix_fmt)) < 0) |
|
return ret; |
|
} |
|
return ff_set_common_formats(ctx, formats); |
|
} |
|
|
|
static int config_input(AVFilterLink *inlink) |
|
{ |
|
AVFilterContext *ctx = inlink->dst; |
|
FieldOrderContext *s = ctx->priv; |
|
|
|
return av_image_fill_linesizes(s->line_size, inlink->format, inlink->w); |
|
} |
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *frame) |
|
{ |
|
AVFilterContext *ctx = inlink->dst; |
|
FieldOrderContext *s = ctx->priv; |
|
AVFilterLink *outlink = ctx->outputs[0]; |
|
int h, plane, src_line_step, dst_line_step, line_size, line; |
|
uint8_t *dst, *src; |
|
AVFrame *out; |
|
|
|
if (!(frame->flags & AV_FRAME_FLAG_INTERLACED) || |
|
!!(frame->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST) == s->dst_tff) { |
|
av_log(ctx, AV_LOG_VERBOSE, |
|
"Skipping %s.\n", |
|
(frame->flags & AV_FRAME_FLAG_INTERLACED) ? |
|
"frame with same field order" : "progressive frame"); |
|
return ff_filter_frame(outlink, frame); |
|
} |
|
|
|
if (av_frame_is_writable(frame)) { |
|
out = frame; |
|
} else { |
|
out = ff_get_video_buffer(outlink, outlink->w, outlink->h); |
|
if (!out) { |
|
av_frame_free(&frame); |
|
return AVERROR(ENOMEM); |
|
} |
|
av_frame_copy_props(out, frame); |
|
} |
|
|
|
av_log(ctx, AV_LOG_TRACE, |
|
"picture will move %s one line\n", |
|
s->dst_tff ? "up" : "down"); |
|
h = frame->height; |
|
for (plane = 0; plane < 4 && frame->data[plane] && frame->linesize[plane]; plane++) { |
|
dst_line_step = out->linesize[plane] * (h > 2); |
|
src_line_step = frame->linesize[plane] * (h > 2); |
|
line_size = s->line_size[plane]; |
|
dst = out->data[plane]; |
|
src = frame->data[plane]; |
|
if (s->dst_tff) { |
|
|
|
|
|
|
|
|
|
|
|
for (line = 0; line < h; line++) { |
|
if (1 + line < frame->height) { |
|
memcpy(dst, src + src_line_step, line_size); |
|
} else { |
|
memcpy(dst, src - 2 * src_line_step, line_size); |
|
} |
|
dst += dst_line_step; |
|
src += src_line_step; |
|
} |
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
dst += (h - 1) * dst_line_step; |
|
src += (h - 1) * src_line_step; |
|
for (line = h - 1; line >= 0 ; line--) { |
|
if (line > 0) { |
|
memcpy(dst, src - src_line_step, line_size); |
|
} else { |
|
memcpy(dst, src + 2 * src_line_step, line_size); |
|
} |
|
dst -= dst_line_step; |
|
src -= src_line_step; |
|
} |
|
} |
|
} |
|
#if FF_API_INTERLACED_FRAME |
|
FF_DISABLE_DEPRECATION_WARNINGS |
|
out->top_field_first = s->dst_tff; |
|
FF_ENABLE_DEPRECATION_WARNINGS |
|
#endif |
|
if (s->dst_tff) |
|
out->flags |= AV_FRAME_FLAG_TOP_FIELD_FIRST; |
|
else |
|
out->flags &= ~AV_FRAME_FLAG_TOP_FIELD_FIRST; |
|
|
|
if (frame != out) |
|
av_frame_free(&frame); |
|
return ff_filter_frame(outlink, out); |
|
} |
|
|
|
#define OFFSET(x) offsetof(FieldOrderContext, x) |
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
|
|
|
static const AVOption fieldorder_options[] = { |
|
{ "order", "output field order", OFFSET(dst_tff), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, FLAGS, "order" }, |
|
{ "bff", "bottom field first", 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, .flags=FLAGS, .unit = "order" }, |
|
{ "tff", "top field first", 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, .flags=FLAGS, .unit = "order" }, |
|
{ NULL } |
|
}; |
|
|
|
AVFILTER_DEFINE_CLASS(fieldorder); |
|
|
|
static const AVFilterPad avfilter_vf_fieldorder_inputs[] = { |
|
{ |
|
.name = "default", |
|
.type = AVMEDIA_TYPE_VIDEO, |
|
.config_props = config_input, |
|
.filter_frame = filter_frame, |
|
}, |
|
}; |
|
|
|
const AVFilter ff_vf_fieldorder = { |
|
.name = "fieldorder", |
|
.description = NULL_IF_CONFIG_SMALL("Set the field order."), |
|
.priv_size = sizeof(FieldOrderContext), |
|
.priv_class = &fieldorder_class, |
|
FILTER_INPUTS(avfilter_vf_fieldorder_inputs), |
|
FILTER_OUTPUTS(ff_video_default_filterpad), |
|
FILTER_QUERY_FUNC(query_formats), |
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, |
|
}; |
|
|