FFmpeg
Loading...
Searching...
No Matches
vf_telecine.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2012 Rudolf Polzer
3 * Copyright (c) 2013 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file telecine filter, heavily based from mpv-player:TOOLS/vf_dlopen/telecine.c by
24 * Rudolf Polzer.
25 */
26
27#include "libavutil/avstring.h"
28#include "libavutil/imgutils.h"
29#include "libavutil/opt.h"
30#include "libavutil/pixdesc.h"
31#include "avfilter.h"
32#include "filters.h"
33#include "formats.h"
34#include "video.h"
35
55
56#define OFFSET(x) offsetof(TelecineContext, x)
57#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
58
59static const AVOption telecine_options[] = {
60 {"first_field", "select first field", OFFSET(first_field), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, .unit = "field"},
61 {"top", "select top field first", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, .unit = "field"},
62 {"t", "select top field first", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, .unit = "field"},
63 {"bottom", "select bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, .unit = "field"},
64 {"b", "select bottom field first", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, .unit = "field"},
65 {"pattern", "pattern that describe for how many fields a frame is to be displayed", OFFSET(pattern), AV_OPT_TYPE_STRING, {.str="23"}, 0, 0, FLAGS},
66 {NULL}
67};
68
70
72{
73 TelecineContext *s = ctx->priv;
74 const char *p;
75 int max = 0;
76
77 if (!strlen(s->pattern)) {
78 av_log(ctx, AV_LOG_ERROR, "No pattern provided.\n");
80 }
81
82 for (p = s->pattern; *p; p++) {
83 if (!av_isdigit(*p)) {
84 av_log(ctx, AV_LOG_ERROR, "Provided pattern includes non-numeric characters.\n");
86 }
87
88 max = FFMAX(*p - '0', max);
89 s->pts.num += 2;
90 s->pts.den += *p - '0';
91 }
92
93 s->start_time = AV_NOPTS_VALUE;
94
95 s->out_cnt = (max + 1) / 2;
96 av_log(ctx, AV_LOG_INFO, "Telecine pattern %s yields up to %d frames per frame, pts advance factor: %d/%d\n",
97 s->pattern, s->out_cnt, s->pts.num, s->pts.den);
98
99 return 0;
100}
101
103 AVFilterFormatsConfig **cfg_in,
104 AVFilterFormatsConfig **cfg_out)
105{
106 int reject_flags = AV_PIX_FMT_FLAG_BITSTREAM |
109
110 return ff_set_common_formats2(ctx, cfg_in, cfg_out,
111 ff_formats_pixdesc_filter(0, reject_flags));
112}
113
114static int config_input(AVFilterLink *inlink)
115{
116 TelecineContext *s = inlink->dst->priv;
118 int i, ret;
119
120 s->temp = ff_get_video_buffer(inlink, inlink->w, inlink->h);
121 if (!s->temp)
122 return AVERROR(ENOMEM);
123 for (i = 0; i < s->out_cnt; i++) {
124 s->frame[i] = ff_get_video_buffer(inlink, inlink->w, inlink->h);
125 if (!s->frame[i])
126 return AVERROR(ENOMEM);
127 }
128
129 if ((ret = av_image_fill_linesizes(s->stride, inlink->format, inlink->w)) < 0)
130 return ret;
131
132 s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
133 s->planeheight[0] = s->planeheight[3] = inlink->h;
134
135 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
136
137 return 0;
138}
139
140static int config_output(AVFilterLink *outlink)
141{
142 AVFilterContext *ctx = outlink->src;
143 TelecineContext *s = ctx->priv;
144 AVFilterLink *inlink = ctx->inputs[0];
145 FilterLink *il = ff_filter_link(inlink);
146 FilterLink *ol = ff_filter_link(outlink);
147 AVRational fps = il->frame_rate;
148
149 if (!fps.num || !fps.den) {
150 av_log(ctx, AV_LOG_ERROR, "The input needs a constant frame rate; "
151 "current rate of %d/%d is invalid\n", fps.num, fps.den);
152 return AVERROR(EINVAL);
153 }
154 fps = av_mul_q(fps, av_inv_q(s->pts));
155 av_log(ctx, AV_LOG_VERBOSE, "FPS: %d/%d -> %d/%d\n",
156 il->frame_rate.num, il->frame_rate.den, fps.num, fps.den);
157
158 ol->frame_rate = fps;
159 outlink->time_base = av_mul_q(inlink->time_base, s->pts);
160 av_log(ctx, AV_LOG_VERBOSE, "TB: %d/%d -> %d/%d\n",
161 inlink->time_base.num, inlink->time_base.den, outlink->time_base.num, outlink->time_base.den);
162
163 s->ts_unit = av_inv_q(av_mul_q(fps, outlink->time_base));
164
165 return 0;
166}
167
168static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
169{
170 AVFilterContext *ctx = inlink->dst;
171 AVFilterLink *outlink = ctx->outputs[0];
172 FilterLink *outl = ff_filter_link(outlink);
173 TelecineContext *s = ctx->priv;
174 int i, len, ret = 0, nout = 0;
175
176 if (s->start_time == AV_NOPTS_VALUE)
177 s->start_time = inpicref->pts;
178
179 len = s->pattern[s->pattern_pos] - '0';
180
181 s->pattern_pos++;
182 if (!s->pattern[s->pattern_pos])
183 s->pattern_pos = 0;
184
185 if (!len) { // do not output any field from this frame
186 av_frame_free(&inpicref);
187 return 0;
188 }
189
190 if (s->occupied) {
191 ret = ff_inlink_make_frame_writable(inlink, &s->frame[nout]);
192 if (ret < 0) {
193 av_frame_free(&inpicref);
194 return ret;
195 }
196 for (i = 0; i < s->nb_planes; i++) {
197 // fill in the EARLIER field from the buffered pic
198 av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * s->first_field,
199 s->frame[nout]->linesize[i] * 2,
200 s->temp->data[i] + s->temp->linesize[i] * s->first_field,
201 s->temp->linesize[i] * 2,
202 s->stride[i],
203 (s->planeheight[i] - s->first_field + 1) / 2);
204 // fill in the LATER field from the new pic
205 av_image_copy_plane(s->frame[nout]->data[i] + s->frame[nout]->linesize[i] * !s->first_field,
206 s->frame[nout]->linesize[i] * 2,
207 inpicref->data[i] + inpicref->linesize[i] * !s->first_field,
208 inpicref->linesize[i] * 2,
209 s->stride[i],
210 (s->planeheight[i] - !s->first_field + 1) / 2);
211 }
212 s->frame[nout]->flags |= AV_FRAME_FLAG_INTERLACED;
213 if (s->first_field)
214 s->frame[nout]->flags &= ~AV_FRAME_FLAG_TOP_FIELD_FIRST;
215 else
216 s->frame[nout]->flags |= AV_FRAME_FLAG_TOP_FIELD_FIRST;
217 nout++;
218 len--;
219 s->occupied = 0;
220 }
221
222 while (len >= 2) {
223 // output THIS image as-is
224 ret = ff_inlink_make_frame_writable(inlink, &s->frame[nout]);
225 if (ret < 0) {
226 av_frame_free(&inpicref);
227 return ret;
228 }
229 for (i = 0; i < s->nb_planes; i++)
230 av_image_copy_plane(s->frame[nout]->data[i], s->frame[nout]->linesize[i],
231 inpicref->data[i], inpicref->linesize[i],
232 s->stride[i],
233 s->planeheight[i]);
234 s->frame[nout]->flags |= (inpicref->flags & (AV_FRAME_FLAG_INTERLACED | AV_FRAME_FLAG_TOP_FIELD_FIRST));
235 nout++;
236 len -= 2;
237 }
238
239 if (len >= 1) {
240 // copy THIS image to the buffer, we need it later
241 for (i = 0; i < s->nb_planes; i++)
242 av_image_copy_plane(s->temp->data[i], s->temp->linesize[i],
243 inpicref->data[i], inpicref->linesize[i],
244 s->stride[i],
245 s->planeheight[i]);
246 s->occupied = 1;
247 }
248
249 for (i = 0; i < nout; i++) {
250 AVFrame *frame = av_frame_clone(s->frame[i]);
251 int interlaced = frame ? !!(frame->flags & AV_FRAME_FLAG_INTERLACED) : 0;
252 int tff = frame ? !!(frame->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST) : 0;
253
254 if (!frame) {
255 av_frame_free(&inpicref);
256 return AVERROR(ENOMEM);
257 }
258
259 av_frame_copy_props(frame, inpicref);
260 if (interlaced)
262 else
264 if (tff)
266 else
268 frame->pts = ((s->start_time == AV_NOPTS_VALUE) ? 0 : s->start_time) +
269 av_rescale(outl->frame_count_in, s->ts_unit.num,
270 s->ts_unit.den);
271 ret = ff_filter_frame(outlink, frame);
272 }
273 av_frame_free(&inpicref);
274
275 return ret;
276}
277
279{
280 TelecineContext *s = ctx->priv;
281 int i;
282
283 av_frame_free(&s->temp);
284 for (i = 0; i < s->out_cnt; i++)
285 av_frame_free(&s->frame[i]);
286}
287
288static const AVFilterPad telecine_inputs[] = {
289 {
290 .name = "default",
291 .type = AVMEDIA_TYPE_VIDEO,
292 .filter_frame = filter_frame,
293 .config_props = config_input,
294 },
295};
296
298 {
299 .name = "default",
300 .type = AVMEDIA_TYPE_VIDEO,
301 .config_props = config_output,
302 },
303};
304
306 .p.name = "telecine",
307 .p.description = NULL_IF_CONFIG_SMALL("Apply a telecine pattern."),
308 .p.priv_class = &telecine_class,
309 .priv_size = sizeof(TelecineContext),
310 .init = init,
311 .uninit = uninit,
315};
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
Definition aeval.c:246
static int config_input(AVFilterLink *inlink)
const FFFilter ff_vf_telecine
static AVFormatContext * ctx
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_inlink_make_frame_writable(AVFilterLink *link, AVFrame **rframe)
Make sure a frame is writable.
Definition avfilter.c:1567
Main libavfilter public API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FLAGS
Definition cmdutils.c:598
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
#define max(a, b)
static AVFrame * frame
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
int ff_set_common_formats2(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out, AVFilterFormats *formats)
Definition formats.c:1137
AVFilterFormats * ff_formats_pixdesc_filter(unsigned want, unsigned rej)
Construct a formats list containing all pixel formats with certain properties.
Definition formats.c:620
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
Definition frame.h:695
#define AV_FRAME_FLAG_TOP_FIELD_FIRST
A flag to mark frames where the top field is displayed first if the content is interlaced.
Definition frame.h:700
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition frame.c:599
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition frame.c:483
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_INFO
Standard information.
Definition log.h:221
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition rational.c:80
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition rational.h:159
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
void av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height)
Copy image plane from src to dst.
Definition imgutils.c:374
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.
Definition imgutils.c:89
static av_const int av_isdigit(int c)
Locale-independent conversion of ASCII isdigit.
Definition avstring.h:202
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
misc image utilities
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
#define AVFILTER_DEFINE_CLASS(fname)
Definition filters.h:478
#define FILTER_QUERY_FUNC2(func)
Definition filters.h:241
#define av_cold
Definition attributes.h:117
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
const char * desc
Definition libsvtav1.c:83
#define FFMAX(a, b)
Definition macros.h:47
uint8_t interlaced
Definition mxfenc.c:2336
AVOptions.
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3500
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
#define AV_PIX_FMT_FLAG_BITSTREAM
All values of a component are bit-wise packed end to end.
Definition pixdesc.h:124
#define AV_PIX_FMT_FLAG_HWACCEL
Pixel format is an HW accelerated format.
Definition pixdesc.h:128
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
Definition pixdesc.h:120
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
void * priv
private data for use by the filter
Definition avfilter.h:288
Lists of formats / etc.
Definition avfilter.h:120
A filter pad used for either input or output.
Definition filters.h:40
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition frame.h:493
int flags
Frame flags, a combination of AV_FRAME_FLAGS.
Definition frame.h:716
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
Definition frame.h:517
AVOption.
Definition opt.h:428
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
int64_t start_time
Definition vf_telecine.c:41
AVRational ts_unit
Definition vf_telecine.c:44
AVFrame * temp
Definition vf_telecine.c:53
AVFrame * frame[5]
Definition vf_telecine.c:52
AVRational pts
Definition vf_telecine.c:43
unsigned int pattern_pos
Definition vf_telecine.c:40
#define av_log(a,...)
static int first_field(const struct video_data *s)
Definition v4l2.c:260
static const AVFilterPad telecine_inputs[]
static const AVFilterPad telecine_outputs[]
static int config_input(AVFilterLink *inlink)
static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static av_cold void uninit(AVFilterContext *ctx)
static const AVOption telecine_options[]
Definition vf_telecine.c:59
#define OFFSET(x)
Definition vf_telecine.c:56
static int config_output(AVFilterLink *outlink)
AVFrame * ff_get_video_buffer(AVFilterLink *link, int w, int h)
Request a picture buffer with a specific set of permissions.
Definition video.c:89
int len