]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_interlace.c
vf_interlace: fix frame rate
[ffmpeg] / libavfilter / vf_interlace.c
1 /*
2  * Copyright (c) 2003 Michael Zucchi <notzed@ximian.com>
3  * Copyright (c) 2010 Baptiste Coudurier
4  * Copyright (c) 2011 Stefano Sabatini
5  * Copyright (c) 2013 Vittorio Giovara <vittorio.giovara@gmail.com>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 /**
25  * @file
26  * progressive to interlaced content filter, inspired by heavy debugging of tinterlace filter
27  */
28
29 #include "libavutil/common.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/imgutils.h"
32 #include "libavutil/avassert.h"
33
34 #include "formats.h"
35 #include "avfilter.h"
36 #include "internal.h"
37 #include "video.h"
38
39 enum ScanMode {
40     MODE_TFF = 0,
41     MODE_BFF = 1,
42 };
43
44 enum FieldType {
45     FIELD_UPPER = 0,
46     FIELD_LOWER = 1,
47 };
48
49 typedef struct {
50     const AVClass *class;
51     enum ScanMode scan;    // top or bottom field first scanning
52     int lowpass;           // enable or disable low pass filterning
53     AVFrame *cur, *next;   // the two frames from which the new one is obtained
54     int got_output;        // signal an output frame is reday to request_frame()
55 } InterlaceContext;
56
57 #define OFFSET(x) offsetof(InterlaceContext, x)
58 #define V AV_OPT_FLAG_VIDEO_PARAM
59 static const AVOption options[] = {
60     { "scan", "scanning mode", OFFSET(scan),
61         AV_OPT_TYPE_INT,   {.i64 = MODE_TFF }, 0, 1, .flags = V, .unit = "scan" },
62     { "tff", "top field first", 0,
63         AV_OPT_TYPE_CONST, {.i64 = MODE_TFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
64     { "bff", "bottom field first", 0,
65         AV_OPT_TYPE_CONST, {.i64 = MODE_BFF }, INT_MIN, INT_MAX, .flags = V, .unit = "scan" },
66     { "lowpass", "enable vertical low-pass filter", OFFSET(lowpass),
67         AV_OPT_TYPE_INT,   {.i64 = 1 },        0, 1, .flags = V },
68     { NULL }
69 };
70
71 static const AVClass class = {
72     .class_name = "interlace filter",
73     .item_name  = av_default_item_name,
74     .option     = options,
75     .version    = LIBAVUTIL_VERSION_INT,
76 };
77
78
79 static const enum AVPixelFormat formats_supported[] = {
80     AV_PIX_FMT_YUV420P,  AV_PIX_FMT_YUV422P,  AV_PIX_FMT_YUV444P,
81     AV_PIX_FMT_YUV444P,  AV_PIX_FMT_YUV410P,  AV_PIX_FMT_YUVA420P,
82     AV_PIX_FMT_GRAY8,    AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P,
83     AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_NONE
84 };
85
86 static int query_formats(AVFilterContext *ctx)
87 {
88     ff_set_common_formats(ctx, ff_make_format_list(formats_supported));
89     return 0;
90 }
91
92 static av_cold void uninit(AVFilterContext *ctx)
93 {
94     InterlaceContext *s = ctx->priv;
95
96     av_frame_free(&s->cur);
97     av_frame_free(&s->next);
98
99     av_opt_free(s);
100 }
101
102 static int config_out_props(AVFilterLink *outlink)
103 {
104     AVFilterContext *ctx = outlink->src;
105     AVFilterLink *inlink = outlink->src->inputs[0];
106     InterlaceContext *s = ctx->priv;
107
108     if (inlink->h < 2) {
109         av_log(ctx, AV_LOG_ERROR, "input video height is too small\n");
110         return AVERROR_INVALIDDATA;
111     }
112     // same input size
113     outlink->w = inlink->w;
114     outlink->h = inlink->h;
115     outlink->time_base = inlink->time_base;
116     outlink->frame_rate = inlink->frame_rate;
117     // half framerate
118     outlink->time_base.num *= 2;
119     outlink->frame_rate.den *= 2;
120
121     av_log(ctx, AV_LOG_VERBOSE, "%s interlacing %s lowpass filter\n",
122            s->scan == MODE_TFF ? "tff" : "bff", (s->lowpass) ? "with" : "without");
123
124     return 0;
125 }
126
127 static void copy_picture_field(AVFrame *src_frame, AVFrame *dst_frame,
128                                AVFilterLink *inlink, enum FieldType field_type,
129                                int lowpass)
130 {
131     const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(inlink->format);
132     int vsub = desc->log2_chroma_h;
133     int plane, i, j;
134
135     for (plane = 0; plane < desc->nb_components; plane++) {
136         int lines = (plane == 1 || plane == 2) ? inlink->h >> vsub : inlink->h;
137         int linesize = av_image_get_linesize(inlink->format, inlink->w, plane);
138         uint8_t *dstp = dst_frame->data[plane];
139         const uint8_t *srcp = src_frame->data[plane];
140
141         av_assert0(linesize >= 0);
142
143         lines /= 2;
144         if (field_type == FIELD_LOWER)
145             srcp += src_frame->linesize[plane];
146         if (field_type == FIELD_LOWER)
147             dstp += dst_frame->linesize[plane];
148         if (lowpass) {
149             int srcp_linesize = src_frame->linesize[plane] * 2;
150             int dstp_linesize = dst_frame->linesize[plane] * 2;
151             for (j = lines; j > 0; j--) {
152                 const uint8_t *srcp_above = srcp - src_frame->linesize[plane];
153                 const uint8_t *srcp_below = srcp + src_frame->linesize[plane];
154                 if (j == lines)
155                     srcp_above = srcp; // there is no line above
156                 if (j == 1)
157                     srcp_below = srcp; // there is no line below
158                 for (i = 0; i < linesize; i++) {
159                     // this calculation is an integer representation of
160                     // '0.5 * current + 0.25 * above + 0.25 + below'
161                     // '1 +' is for rounding.
162                     dstp[i] = (1 + srcp[i] + srcp[i] + srcp_above[i] + srcp_below[i]) >> 2;
163                 }
164                 dstp += dstp_linesize;
165                 srcp += srcp_linesize;
166             }
167         } else {
168             av_image_copy_plane(dstp, dst_frame->linesize[plane] * 2,
169                                 srcp, src_frame->linesize[plane] * 2,
170                                 linesize, lines);
171         }
172     }
173 }
174
175 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
176 {
177     AVFilterContext *ctx = inlink->dst;
178     AVFilterLink *outlink = ctx->outputs[0];
179     InterlaceContext *s = ctx->priv;
180     AVFrame *out;
181     int tff, ret;
182
183     av_frame_free(&s->cur);
184     s->cur  = s->next;
185     s->next = buf;
186
187     /* we need at least two frames */
188     if (!s->cur || !s->next)
189         return 0;
190
191     tff = (s->scan == MODE_TFF);
192     out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
193     if (!out)
194         return AVERROR(ENOMEM);
195
196     av_frame_copy_props(out, s->cur);
197     out->interlaced_frame = 1;
198     out->top_field_first  = tff;
199     out->pts             /= 2;  // adjust pts to new framerate
200
201     /* copy upper/lower field from cur */
202     copy_picture_field(s->cur, out, inlink, tff ? FIELD_UPPER : FIELD_LOWER, s->lowpass);
203     av_frame_free(&s->cur);
204
205     /* copy lower/upper field from next */
206     copy_picture_field(s->next, out, inlink, tff ? FIELD_LOWER : FIELD_UPPER, s->lowpass);
207     av_frame_free(&s->next);
208
209     ret = ff_filter_frame(outlink, out);
210     s->got_output = 1;
211
212     return ret;
213 }
214
215 static int request_frame(AVFilterLink *outlink)
216 {
217     AVFilterContext *ctx = outlink->src;
218     InterlaceContext *s  = ctx->priv;
219     int ret = 0;
220
221     s->got_output = 0;
222     while (ret >= 0 && !s->got_output)
223         ret = ff_request_frame(ctx->inputs[0]);
224
225     return ret;
226 }
227
228 static const AVFilterPad inputs[] = {
229     {
230         .name         = "default",
231         .type         = AVMEDIA_TYPE_VIDEO,
232         .filter_frame = filter_frame,
233     },
234     { NULL }
235 };
236
237 static const AVFilterPad outputs[] = {
238     {
239         .name          = "default",
240         .type          = AVMEDIA_TYPE_VIDEO,
241         .config_props  = config_out_props,
242         .request_frame = request_frame,
243     },
244     { NULL }
245 };
246
247 AVFilter avfilter_vf_interlace = {
248     .name          = "interlace",
249     .description   = NULL_IF_CONFIG_SMALL("Convert progressive video into interlaced."),
250     .uninit        = uninit,
251
252     .priv_class    = &class,
253     .priv_size     = sizeof(InterlaceContext),
254     .query_formats = query_formats,
255
256     .inputs        = inputs,
257     .outputs       = outputs,
258 };
259