FFmpeg
Loading...
Searching...
No Matches
vf_repeatfields.c
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003 Tobias Diedrich
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with FFmpeg; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include "libavutil/imgutils.h"
22#include "avfilter.h"
23#include "filters.h"
24#include "video.h"
25
34
36{
37 RepeatFieldsContext *s = ctx->priv;
38
39 av_frame_free(&s->frame);
40}
41
51
52static int config_input(AVFilterLink *inlink)
53{
54 RepeatFieldsContext *s = inlink->dst->priv;
56 int ret;
57
58 if ((ret = av_image_fill_linesizes(s->linesize, inlink->format, inlink->w)) < 0)
59 return ret;
60
61 s->planeheight[1] = s->planeheight[2] = AV_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
62 s->planeheight[0] = s->planeheight[3] = inlink->h;
63
64 s->nb_planes = av_pix_fmt_count_planes(inlink->format);
65
66 return 0;
67}
68
69static void update_pts(AVFilterLink *link, AVFrame *f, int64_t pts, int fields)
70{
71 FilterLink *l = ff_filter_link(link);
72
73 if (av_cmp_q(l->frame_rate, (AVRational){30000, 1001}) == 0 &&
74 av_cmp_q(link->time_base, (AVRational){1001, 60000}) <= 0
75 ) {
76 f->pts = pts + av_rescale_q(fields, (AVRational){1001, 60000}, link->time_base);
77 } else
78 f->pts = AV_NOPTS_VALUE;
79}
80
81static int filter_frame(AVFilterLink *inlink, AVFrame *in)
82{
83 AVFilterContext *ctx = inlink->dst;
84 AVFilterLink *outlink = inlink->dst->outputs[0];
85 RepeatFieldsContext *s = ctx->priv;
86 int ret, i;
87 int state = s->state;
88
89 if (!s->frame) {
90 s->frame = av_frame_clone(in);
91 if (!s->frame) {
92 av_frame_free(&in);
93 return AVERROR(ENOMEM);
94 }
95 s->frame->pts = AV_NOPTS_VALUE;
96 }
97
98 if ((state == 0 && !(in->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST)) ||
99 (state == 1 && (in->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST))) {
100 av_log(ctx, AV_LOG_WARNING, "Unexpected field flags: "
101 "state=%d top_field_first=%d repeat_first_field=%d\n",
103 in->repeat_pict);
104 state ^= 1;
105 }
106
107 if (state == 0) {
108 AVFrame *new;
109
110 new = av_frame_clone(in);
111 if (!new) {
112 av_frame_free(&in);
113 return AVERROR(ENOMEM);
114 }
115
116 ret = ff_filter_frame(outlink, new);
117
118 if (in->repeat_pict) {
119 ret = ff_inlink_make_frame_writable(inlink, &s->frame);
120 if (ret < 0) {
121 av_frame_free(&in);
122 return ret;
123 }
124 update_pts(outlink, s->frame, in->pts, 2);
125 for (i = 0; i < s->nb_planes; i++) {
126 av_image_copy_plane(s->frame->data[i], s->frame->linesize[i] * 2,
127 in->data[i], in->linesize[i] * 2,
128 s->linesize[i], s->planeheight[i] / 2);
129 }
130 state = 1;
131 }
132 } else {
133 for (i = 0; i < s->nb_planes; i++) {
134 ret = ff_inlink_make_frame_writable(inlink, &s->frame);
135 if (ret < 0) {
136 av_frame_free(&in);
137 return ret;
138 }
139 av_image_copy_plane(s->frame->data[i] + s->frame->linesize[i], s->frame->linesize[i] * 2,
140 in->data[i] + in->linesize[i], in->linesize[i] * 2,
141 s->linesize[i], s->planeheight[i] / 2);
142 }
143
144 ret = ff_filter_frame(outlink, av_frame_clone(s->frame));
145
146 if (in->repeat_pict) {
147 AVFrame *new;
148
149 new = av_frame_clone(in);
150 if (!new) {
151 av_frame_free(&in);
152 return AVERROR(ENOMEM);
153 }
154
155 ret = ff_filter_frame(outlink, new);
156 state = 0;
157 } else {
158 ret = ff_inlink_make_frame_writable(inlink, &s->frame);
159 if (ret < 0) {
160 av_frame_free(&in);
161 return ret;
162 }
163 update_pts(outlink, s->frame, in->pts, 1);
164 for (i = 0; i < s->nb_planes; i++) {
165 av_image_copy_plane(s->frame->data[i], s->frame->linesize[i] * 2,
166 in->data[i], in->linesize[i] * 2,
167 s->linesize[i], s->planeheight[i] / 2);
168 }
169 }
170 }
171
172 s->state = state;
173
174 av_frame_free(&in);
175 return ret;
176}
177
179 {
180 .name = "default",
181 .type = AVMEDIA_TYPE_VIDEO,
182 .filter_frame = filter_frame,
183 .config_props = config_input,
184 },
185};
186
188 .p.name = "repeatfields",
189 .p.description = NULL_IF_CONFIG_SMALL("Hard repeat fields based on MPEG repeat field flag."),
190 .priv_size = sizeof(RepeatFieldsContext),
191 .uninit = uninit,
195};
static int config_input(AVFilterLink *inlink)
const FFFilter ff_vf_repeatfields
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 f(width, name)
Definition cbs_vp8.c:236
#define s(width, name)
Definition cbs_vp9.c:198
#define AV_CEIL_RSHIFT(a, b)
Definition common.h:60
long long int64_t
Definition coverity.c:34
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
static struct @346255127015250356166251341105367306144006377143 state
#define AVERROR(e)
Definition error.h:45
#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
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_WARNING
Something somehow does not look correct.
Definition log.h:216
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
Definition rational.h:89
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
@ 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
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
misc image utilities
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition filters.h:199
static enum AVPixelFormat pixel_fmts_eq[]
Definition vf_eq.c:211
#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
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
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
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
AVFilterLink ** outputs
array of pointers to output links
Definition avfilter.h:285
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
int repeat_pict
Number of fields in this frame which should be repeated, i.e.
Definition frame.h:630
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
#define av_log(a,...)
static AVFormatContext * ctx
Definition movenc.c:49
static int64_t pts
static const AVFilterPad repeatfields_inputs[]
static int config_input(AVFilterLink *inlink)
static void update_pts(AVFilterLink *link, AVFrame *f, int64_t pts, int fields)
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static av_cold void uninit(AVFilterContext *ctx)
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37