FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavfilter/vf_freezeframes.c
Date: 2024-11-20 23:03:26
Exec Total Coverage
Lines: 0 61 0.0%
Functions: 0 3 0.0%
Branches: 0 52 0.0%

Line Branch Exec Source
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;
32 int64_t first, last, replace;
33
34 AVFrame *replace_frame;
35 } FreezeFramesContext;
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) {
58 av_log(ctx, AV_LOG_ERROR,
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
74 static int activate(AVFilterContext *ctx)
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
86 FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, ctx);
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
96 av_frame_free(&frame);
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) {
118 av_frame_free(&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
132 static av_cold void uninit(AVFilterContext *ctx)
133 {
134 FreezeFramesContext *s = ctx->priv;
135
136 av_frame_free(&s->replace_frame);
137 }
138
139 static const AVFilterPad freezeframes_inputs[] = {
140 {
141 .name = "source",
142 .type = AVMEDIA_TYPE_VIDEO,
143 },
144 {
145 .name = "replace",
146 .type = AVMEDIA_TYPE_VIDEO,
147 },
148 };
149
150 static const AVFilterPad freezeframes_outputs[] = {
151 {
152 .name = "default",
153 .type = AVMEDIA_TYPE_VIDEO,
154 .config_props = config_output,
155 },
156 };
157
158 const AVFilter ff_vf_freezeframes = {
159 .name = "freezeframes",
160 .description = NULL_IF_CONFIG_SMALL("Freeze video frames."),
161 .priv_size = sizeof(FreezeFramesContext),
162 .priv_class = &freezeframes_class,
163 FILTER_INPUTS(freezeframes_inputs),
164 FILTER_OUTPUTS(freezeframes_outputs),
165 .activate = activate,
166 .uninit = uninit,
167 };
168