FFmpeg
vf_separatefields.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Paul B Mahol
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (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 GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #include "libavutil/pixdesc.h"
22 #include "avfilter.h"
23 #include "filters.h"
24 #include "internal.h"
25 #include "video.h"
26 
27 typedef struct SeparateFieldsContext {
28  int nb_planes;
31 
32 static int config_props_output(AVFilterLink *outlink)
33 {
34  AVFilterContext *ctx = outlink->src;
35  SeparateFieldsContext *s = ctx->priv;
36  AVFilterLink *inlink = ctx->inputs[0];
37 
38  s->nb_planes = av_pix_fmt_count_planes(inlink->format);
39 
40  if (inlink->h & 1) {
41  av_log(ctx, AV_LOG_ERROR, "height must be even\n");
42  return AVERROR_INVALIDDATA;
43  }
44 
45  outlink->time_base.num = inlink->time_base.num;
46  outlink->time_base.den = inlink->time_base.den * 2;
47  outlink->frame_rate.num = inlink->frame_rate.num * 2;
48  outlink->frame_rate.den = inlink->frame_rate.den;
49  outlink->w = inlink->w;
50  outlink->h = inlink->h / 2;
51 
52  return 0;
53 }
54 
55 static void extract_field(AVFrame *frame, int nb_planes, int type)
56 {
57  int i;
58 
59  for (i = 0; i < nb_planes; i++) {
60  if (type)
61  frame->data[i] = frame->data[i] + frame->linesize[i];
62  frame->linesize[i] *= 2;
63  }
64 }
65 
66 static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
67 {
68  AVFilterContext *ctx = inlink->dst;
69  SeparateFieldsContext *s = ctx->priv;
70  AVFilterLink *outlink = ctx->outputs[0];
71  int ret;
72 
73  inpicref->height = outlink->h;
74 #if FF_API_INTERLACED_FRAME
76  inpicref->interlaced_frame = 0;
78 #endif
79  inpicref->flags &= ~AV_FRAME_FLAG_INTERLACED;
80 
81  if (!s->second) {
82  goto clone;
83  } else {
84  AVFrame *second = s->second;
85 
86  extract_field(second, s->nb_planes, !!(second->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
87 
88  if (second->pts != AV_NOPTS_VALUE &&
89  inpicref->pts != AV_NOPTS_VALUE)
90  second->pts += inpicref->pts;
91  else
92  second->pts = AV_NOPTS_VALUE;
93 
94  ret = ff_filter_frame(outlink, second);
95  if (ret < 0)
96  return ret;
97 clone:
98  s->second = av_frame_clone(inpicref);
99  if (!s->second)
100  return AVERROR(ENOMEM);
101  }
102 
103  extract_field(inpicref, s->nb_planes, !(inpicref->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
104 
105  if (inpicref->pts != AV_NOPTS_VALUE)
106  inpicref->pts *= 2;
107 
108  return ff_filter_frame(outlink, inpicref);
109 }
110 
111 static int flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts)
112 {
113  AVFilterContext *ctx = outlink->src;
114  SeparateFieldsContext *s = ctx->priv;
115  int ret = 0;
116 
117  if (s->second) {
118  *out_pts = s->second->pts += pts;
119  extract_field(s->second, s->nb_planes, !!(s->second->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
120  ret = ff_filter_frame(outlink, s->second);
121  s->second = NULL;
122  }
123 
124  return ret;
125 }
126 
128 {
129  AVFilterLink *inlink = ctx->inputs[0];
130  AVFilterLink *outlink = ctx->outputs[0];
131  AVFrame *in;
132  int64_t pts;
133  int ret, status;
134 
136 
138  if (ret < 0)
139  return ret;
140  if (ret > 0)
141  return filter_frame(inlink, in);
142 
144  if (status == AVERROR_EOF) {
145  int64_t out_pts = pts;
146 
147  ret = flush_frame(outlink, pts, &out_pts);
148  ff_outlink_set_status(outlink, status, out_pts);
149  return ret;
150  }
151  }
152 
154 
155  return FFERROR_NOT_READY;
156 }
157 
159 {
160  SeparateFieldsContext *s = ctx->priv;
161 
162  av_frame_free(&s->second);
163 }
164 
166  {
167  .name = "default",
168  .type = AVMEDIA_TYPE_VIDEO,
169  .config_props = config_props_output,
170  },
171 };
172 
174  .name = "separatefields",
175  .description = NULL_IF_CONFIG_SMALL("Split input video frames into fields."),
176  .priv_size = sizeof(SeparateFieldsContext),
177  .activate = activate,
178  .uninit = uninit,
181 };
FF_ENABLE_DEPRECATION_WARNINGS
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:73
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
SeparateFieldsContext::second
AVFrame * second
Definition: vf_separatefields.c:29
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1015
AVERROR_EOF
#define AVERROR_EOF
End of file.
Definition: error.h:57
FFERROR_NOT_READY
return FFERROR_NOT_READY
Definition: filter_design.txt:204
flush_frame
static int flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts)
Definition: vf_separatefields.c:111
inlink
The exact code depends on how similar the blocks are and how related they are to the and needs to apply these operations to the correct inlink or outlink if there are several Macros are available to factor that when no extra processing is inlink
Definition: filter_design.txt:212
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:160
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
pixdesc.h
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:486
AVFrame::flags
int flags
Frame flags, a combination of AV_FRAME_FLAGS.
Definition: frame.h:646
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
video.h
FF_FILTER_FORWARD_STATUS_BACK
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition: filters.h:199
AV_FRAME_FLAG_TOP_FIELD_FIRST
#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:638
ff_inlink_consume_frame
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition: avfilter.c:1442
av_pix_fmt_count_planes
int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:3005
SeparateFieldsContext::nb_planes
int nb_planes
Definition: vf_separatefields.c:28
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
Definition: vf_separatefields.c:66
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
pts
static int64_t pts
Definition: transcode_aac.c:644
AVRational::num
int num
Numerator.
Definition: rational.h:59
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
AVFrame::interlaced_frame
attribute_deprecated int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:551
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
av_cold
#define av_cold
Definition: attributes.h:90
ff_video_default_filterpad
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
ff_outlink_set_status
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition: filters.h:189
s
#define s(width, name)
Definition: cbs_vp9.c:198
filters.h
ctx
AVFormatContext * ctx
Definition: movenc.c:49
activate
static int activate(AVFilterContext *ctx)
Definition: vf_separatefields.c:127
av_frame_clone
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:593
separatefields_outputs
static const AVFilterPad separatefields_outputs[]
Definition: vf_separatefields.c:165
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
NULL
#define NULL
Definition: coverity.c:32
ff_inlink_acknowledge_status
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition: avfilter.c:1389
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
FF_FILTER_FORWARD_WANTED
FF_FILTER_FORWARD_WANTED(outlink, inlink)
SeparateFieldsContext
Definition: vf_separatefields.c:27
internal.h
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
AV_FRAME_FLAG_INTERLACED
#define AV_FRAME_FLAG_INTERLACED
A flag to mark frames whose content is interlaced.
Definition: frame.h:633
AVFilter
Filter definition.
Definition: avfilter.h:166
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
ff_vf_separatefields
const AVFilter ff_vf_separatefields
Definition: vf_separatefields.c:173
AVFrame::height
int height
Definition: frame.h:446
status
ov_status_e status
Definition: dnn_backend_openvino.c:121
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_separatefields.c:158
AVRational::den
int den
Denominator.
Definition: rational.h:60
avfilter.h
config_props_output
static int config_props_output(AVFilterLink *outlink)
Definition: vf_separatefields.c:32
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
FF_DISABLE_DEPRECATION_WARNINGS
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:72
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
extract_field
static void extract_field(AVFrame *frame, int nb_planes, int type)
Definition: vf_separatefields.c:55
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61