summaryrefslogtreecommitdiff
path: root/libavfilter/vf_separatefields.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-04-09 15:35:23 +0000
committerPaul B Mahol <onemda@gmail.com>2013-04-10 00:08:57 +0000
commitd0073c7a0bc5a449956c2004821183fce601d321 (patch)
tree76767a83a45aa4551e0ac8a09ef3c29923398b1a /libavfilter/vf_separatefields.c
parentf1c0c6b7de6f236a09ba4cb82af990e90d4c17f2 (diff)
separatefields filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_separatefields.c')
-rw-r--r--libavfilter/vf_separatefields.c110
1 files changed, 110 insertions, 0 deletions
diff --git a/libavfilter/vf_separatefields.c b/libavfilter/vf_separatefields.c
new file mode 100644
index 0000000000..81f37cf7c5
--- /dev/null
+++ b/libavfilter/vf_separatefields.c
@@ -0,0 +1,110 @@
+/*
+ * Copyright (c) 2013 Paul B Mahol
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "libavutil/pixdesc.h"
+#include "avfilter.h"
+#include "internal.h"
+
+typedef struct {
+ int nb_planes;
+ int64_t frame_count;
+ double ts_unit;
+} SeparateFieldsContext;
+
+static int config_props_output(AVFilterLink *outlink)
+{
+ AVFilterContext *ctx = outlink->src;
+ SeparateFieldsContext *sf = ctx->priv;
+ AVFilterLink *inlink = ctx->inputs[0];
+
+ sf->nb_planes = av_pix_fmt_count_planes(inlink->format);;
+
+ if (inlink->h & 1) {
+ av_log(ctx, AV_LOG_ERROR, "height must be even\n");
+ return AVERROR_INVALIDDATA;
+ }
+
+ outlink->frame_rate.num = inlink->frame_rate.num * 2;
+ outlink->frame_rate.den = inlink->frame_rate.den;
+ outlink->w = inlink->w;
+ outlink->h = inlink->h / 2;
+ sf->ts_unit = av_q2d(av_inv_q(av_mul_q(outlink->frame_rate, inlink->time_base)));
+
+ return 0;
+}
+
+static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
+{
+ AVFilterContext *ctx = inlink->dst;
+ SeparateFieldsContext *sf = ctx->priv;
+ AVFilterLink *outlink = ctx->outputs[0];
+ AVFrame *second;
+ int i, ret;
+
+ inpicref->height = outlink->h;
+ inpicref->interlaced_frame = 0;
+
+ second = av_frame_clone(inpicref);
+ if (!second)
+ return AVERROR(ENOMEM);
+
+ for (i = 0; i < sf->nb_planes; i++) {
+ if (!inpicref->top_field_first)
+ inpicref->data[i] = inpicref->data[i] + inpicref->linesize[i];
+ else
+ second->data[i] = second->data[i] + second->linesize[i];
+ inpicref->linesize[i] *= 2;
+ second->linesize[i] *= 2;
+ }
+
+ inpicref->pts = sf->frame_count++ * sf->ts_unit;
+ second->pts = sf->frame_count++ * sf->ts_unit;
+
+ ret = ff_filter_frame(outlink, inpicref);
+ if (ret < 0)
+ return ret;
+ return ff_filter_frame(outlink, second);
+}
+
+static const AVFilterPad separatefields_inputs[] = {
+ {
+ .name = "default",
+ .type = AVMEDIA_TYPE_VIDEO,
+ .filter_frame = filter_frame,
+ },
+ { NULL }
+};
+
+static const AVFilterPad separatefields_outputs[] = {
+ {
+ .name = "default",
+ .type = AVMEDIA_TYPE_VIDEO,
+ .config_props = config_props_output,
+ },
+ { NULL }
+};
+
+AVFilter avfilter_vf_separatefields = {
+ .name = "separatefields",
+ .description = NULL_IF_CONFIG_SMALL("Split input video frames into fields."),
+ .priv_size = sizeof(SeparateFieldsContext),
+ .inputs = separatefields_inputs,
+ .outputs = separatefields_outputs,
+};