FFmpeg
vf_freezeframes.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 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/avstring.h"
22 #include "libavutil/common.h"
23 #include "libavutil/internal.h"
24 #include "libavutil/opt.h"
25 
26 #include "avfilter.h"
27 #include "filters.h"
28 #include "video.h"
29 
30 typedef struct FreezeFramesContext {
31  const AVClass *class;
33 
36 
37 #define OFFSET(x) offsetof(FreezeFramesContext, x)
38 #define FLAGS (AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM)
39 
40 static const AVOption freezeframes_options[] = {
41  { "first", "set first frame to freeze", OFFSET(first), AV_OPT_TYPE_INT64, {.i64=0}, 0, INT64_MAX, FLAGS },
42  { "last", "set last frame to freeze", OFFSET(last), AV_OPT_TYPE_INT64, {.i64=0}, 0, INT64_MAX, FLAGS },
43  { "replace", "set frame to replace", OFFSET(replace), AV_OPT_TYPE_INT64, {.i64=0}, 0, INT64_MAX, FLAGS },
44  { NULL },
45 };
46 
47 AVFILTER_DEFINE_CLASS(freezeframes);
48 
49 static int config_output(AVFilterLink *outlink)
50 {
51  AVFilterContext *ctx = outlink->src;
52  AVFilterLink *sourcelink = ctx->inputs[0];
53  AVFilterLink *replacelink = ctx->inputs[1];
54  FilterLink *il = ff_filter_link(sourcelink);
55  FilterLink *ol = ff_filter_link(outlink);
56 
57  if (sourcelink->w != replacelink->w || sourcelink->h != replacelink->h) {
59  "Input frame sizes do not match (%dx%d vs %dx%d).\n",
60  sourcelink->w, sourcelink->h,
61  replacelink->w, replacelink->h);
62  return AVERROR(EINVAL);
63  }
64 
65  outlink->w = sourcelink->w;
66  outlink->h = sourcelink->h;
67  outlink->time_base = sourcelink->time_base;
68  outlink->sample_aspect_ratio = sourcelink->sample_aspect_ratio;
69  ol->frame_rate = il->frame_rate;
70 
71  return 0;
72 }
73 
75 {
76  FilterLink *inl0 = ff_filter_link(ctx->inputs[0]);
77  FilterLink *inl1 = ff_filter_link(ctx->inputs[1]);
78  AVFilterLink *outlink = ctx->outputs[0];
79  FreezeFramesContext *s = ctx->priv;
80  AVFrame *frame = NULL;
81  int drop = inl0->frame_count_out >= s->first &&
82  inl0->frame_count_out <= s->last;
83  int replace = inl1->frame_count_out == s->replace;
84  int ret;
85 
87 
88  if (drop && s->replace_frame) {
89  ret = ff_inlink_consume_frame(ctx->inputs[0], &frame);
90  if (ret < 0)
91  return ret;
92 
93  if (frame) {
94  int64_t dropped_pts = frame->pts;
95 
97  frame = av_frame_clone(s->replace_frame);
98  if (!frame)
99  return AVERROR(ENOMEM);
100  frame->pts = dropped_pts;
101  return ff_filter_frame(outlink, frame);
102  }
103  } else if (!drop) {
104  ret = ff_inlink_consume_frame(ctx->inputs[0], &frame);
105  if (ret < 0)
106  return ret;
107 
108  if (frame)
109  return ff_filter_frame(outlink, frame);
110  }
111 
112  ret = ff_inlink_consume_frame(ctx->inputs[1], &frame);
113  if (ret < 0)
114  return ret;
115  if (replace && frame) {
116  s->replace_frame = frame;
117  } else if (frame) {
119  }
120 
121  FF_FILTER_FORWARD_STATUS(ctx->inputs[0], outlink);
122  FF_FILTER_FORWARD_STATUS(ctx->inputs[1], outlink);
123 
124  if (!drop || (drop && s->replace_frame))
125  FF_FILTER_FORWARD_WANTED(outlink, ctx->inputs[0]);
126  if (!s->replace_frame)
127  FF_FILTER_FORWARD_WANTED(outlink, ctx->inputs[1]);
128 
129  return FFERROR_NOT_READY;
130 }
131 
133 {
134  FreezeFramesContext *s = ctx->priv;
135 
136  av_frame_free(&s->replace_frame);
137 }
138 
140  {
141  .name = "source",
142  .type = AVMEDIA_TYPE_VIDEO,
143  },
144  {
145  .name = "replace",
146  .type = AVMEDIA_TYPE_VIDEO,
147  },
148 };
149 
151  {
152  .name = "default",
153  .type = AVMEDIA_TYPE_VIDEO,
154  .config_props = config_output,
155  },
156 };
157 
159  .name = "freezeframes",
160  .description = NULL_IF_CONFIG_SMALL("Freeze video frames."),
161  .priv_size = sizeof(FreezeFramesContext),
162  .priv_class = &freezeframes_class,
165  .activate = activate,
166  .uninit = uninit,
167 };
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
opt.h
config_output
static int config_output(AVFilterLink *outlink)
Definition: vf_freezeframes.c:49
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1062
FFERROR_NOT_READY
return FFERROR_NOT_READY
Definition: filter_design.txt:204
int64_t
long long int64_t
Definition: coverity.c:34
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:162
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: filters.h:262
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:389
AVOption
AVOption.
Definition: opt.h:429
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:205
video.h
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_freezeframes.c:132
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:1491
OFFSET
#define OFFSET(x)
Definition: vf_freezeframes.c:37
FF_FILTER_FORWARD_STATUS_BACK_ALL
#define FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, filter)
Forward the status on an output link to all input links.
Definition: filters.h:447
ff_vf_freezeframes
const AVFilter ff_vf_freezeframes
Definition: vf_freezeframes.c:158
FLAGS
#define FLAGS
Definition: vf_freezeframes.c:38
FreezeFramesContext
Definition: vf_freezeframes.c:30
freezeframes_inputs
static const AVFilterPad freezeframes_inputs[]
Definition: vf_freezeframes.c:139
AVFilterPad
A filter pad used for either input or output.
Definition: filters.h:38
first
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But first
Definition: rate_distortion.txt:12
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_OPT_TYPE_INT64
@ AV_OPT_TYPE_INT64
Underlying C type is int64_t.
Definition: opt.h:263
filters.h
ctx
AVFormatContext * ctx
Definition: movenc.c:49
av_frame_clone
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:597
freezeframes_options
static const AVOption freezeframes_options[]
Definition: vf_freezeframes.c:40
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: filters.h:263
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:75
NULL
#define NULL
Definition: coverity.c:32
FreezeFramesContext::replace
int64_t replace
Definition: vf_freezeframes.c:32
ff_filter_link
static FilterLink * ff_filter_link(AVFilterLink *link)
Definition: filters.h:197
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
FF_FILTER_FORWARD_WANTED
FF_FILTER_FORWARD_WANTED(outlink, inlink)
FreezeFramesContext::first
int64_t first
Definition: vf_freezeframes.c:32
internal.h
common.h
FreezeFramesContext::replace_frame
AVFrame * replace_frame
Definition: vf_freezeframes.c:34
AVFilterPad::name
const char * name
Pad name.
Definition: filters.h:44
AVFilter
Filter definition.
Definition: avfilter.h:201
ret
ret
Definition: filter_design.txt:187
activate
static int activate(AVFilterContext *ctx)
Definition: vf_freezeframes.c:74
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
avfilter.h
AVFilterContext
An instance of a filter.
Definition: avfilter.h:457
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVFILTER_DEFINE_CLASS
AVFILTER_DEFINE_CLASS(freezeframes)
FF_FILTER_FORWARD_STATUS
FF_FILTER_FORWARD_STATUS(inlink, outlink)
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
FreezeFramesContext::last
int64_t last
Definition: vf_freezeframes.c:32
avstring.h
freezeframes_outputs
static const AVFilterPad freezeframes_outputs[]
Definition: vf_freezeframes.c:150