]> git.sesse.net Git - ffmpeg/blob - libavfilter/vf_fps.c
rtpproto: Check for the right feature when reading a sockaddr_in6
[ffmpeg] / libavfilter / vf_fps.c
1 /*
2  * This file is part of Libav.
3  *
4  * Libav is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * Libav is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with Libav; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 /**
20  * @file
21  * a filter enforcing given constant framerate
22  */
23
24 #include "libavutil/common.h"
25 #include "libavutil/fifo.h"
26 #include "libavutil/mathematics.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/parseutils.h"
29
30 #include "avfilter.h"
31 #include "internal.h"
32 #include "video.h"
33
34 typedef struct FPSContext {
35     const AVClass *class;
36
37     AVFifoBuffer *fifo;     ///< store frames until we get two successive timestamps
38
39     /* timestamps in input timebase */
40     int64_t first_pts;      ///< pts of the first frame that arrived on this filter
41     int64_t pts;            ///< pts of the first frame currently in the fifo
42
43     AVRational framerate;   ///< target framerate
44     char *fps;              ///< a string describing target framerate
45
46     /* statistics */
47     int frames_in;             ///< number of frames on input
48     int frames_out;            ///< number of frames on output
49     int dup;                   ///< number of frames duplicated
50     int drop;                  ///< number of framed dropped
51 } FPSContext;
52
53 #define OFFSET(x) offsetof(FPSContext, x)
54 #define V AV_OPT_FLAG_VIDEO_PARAM
55 static const AVOption options[] = {
56     { "fps", "A string describing desired output framerate", OFFSET(fps), AV_OPT_TYPE_STRING, { .str = "25" }, .flags = V },
57     { NULL },
58 };
59
60 static const AVClass class = {
61     .class_name = "FPS filter",
62     .item_name  = av_default_item_name,
63     .option     = options,
64     .version    = LIBAVUTIL_VERSION_INT,
65 };
66
67 static av_cold int init(AVFilterContext *ctx)
68 {
69     FPSContext *s = ctx->priv;
70     int ret;
71
72     if ((ret = av_parse_video_rate(&s->framerate, s->fps)) < 0) {
73         av_log(ctx, AV_LOG_ERROR, "Error parsing framerate %s.\n", s->fps);
74         return ret;
75     }
76
77     if (!(s->fifo = av_fifo_alloc(2*sizeof(AVFrame*))))
78         return AVERROR(ENOMEM);
79
80     s->pts          = AV_NOPTS_VALUE;
81
82     av_log(ctx, AV_LOG_VERBOSE, "fps=%d/%d\n", s->framerate.num, s->framerate.den);
83     return 0;
84 }
85
86 static void flush_fifo(AVFifoBuffer *fifo)
87 {
88     while (av_fifo_size(fifo)) {
89         AVFrame *tmp;
90         av_fifo_generic_read(fifo, &tmp, sizeof(tmp), NULL);
91         av_frame_free(&tmp);
92     }
93 }
94
95 static av_cold void uninit(AVFilterContext *ctx)
96 {
97     FPSContext *s = ctx->priv;
98     if (s->fifo) {
99         s->drop += av_fifo_size(s->fifo) / sizeof(AVFilterBufferRef*);
100         flush_fifo(s->fifo);
101         av_fifo_free(s->fifo);
102     }
103
104     av_log(ctx, AV_LOG_VERBOSE, "%d frames in, %d frames out; %d frames dropped, "
105            "%d frames duplicated.\n", s->frames_in, s->frames_out, s->drop, s->dup);
106 }
107
108 static int config_props(AVFilterLink* link)
109 {
110     FPSContext   *s = link->src->priv;
111
112     link->time_base = (AVRational){ s->framerate.den, s->framerate.num };
113     link->w         = link->src->inputs[0]->w;
114     link->h         = link->src->inputs[0]->h;
115
116     return 0;
117 }
118
119 static int request_frame(AVFilterLink *outlink)
120 {
121     AVFilterContext *ctx = outlink->src;
122     FPSContext        *s = ctx->priv;
123     int frames_out = s->frames_out;
124     int ret = 0;
125
126     while (ret >= 0 && s->frames_out == frames_out)
127         ret = ff_request_frame(ctx->inputs[0]);
128
129     /* flush the fifo */
130     if (ret == AVERROR_EOF && av_fifo_size(s->fifo)) {
131         int i;
132         for (i = 0; av_fifo_size(s->fifo); i++) {
133             AVFrame *buf;
134
135             av_fifo_generic_read(s->fifo, &buf, sizeof(buf), NULL);
136             buf->pts = av_rescale_q(s->first_pts, ctx->inputs[0]->time_base,
137                                     outlink->time_base) + s->frames_out;
138
139             if ((ret = ff_filter_frame(outlink, buf)) < 0)
140                 return ret;
141
142             s->frames_out++;
143         }
144         return 0;
145     }
146
147     return ret;
148 }
149
150 static int write_to_fifo(AVFifoBuffer *fifo, AVFrame *buf)
151 {
152     int ret;
153
154     if (!av_fifo_space(fifo) &&
155         (ret = av_fifo_realloc2(fifo, 2*av_fifo_size(fifo)))) {
156         av_frame_free(&buf);
157         return ret;
158     }
159
160     av_fifo_generic_write(fifo, &buf, sizeof(buf), NULL);
161     return 0;
162 }
163
164 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
165 {
166     AVFilterContext    *ctx = inlink->dst;
167     FPSContext           *s = ctx->priv;
168     AVFilterLink   *outlink = ctx->outputs[0];
169     int64_t delta;
170     int i, ret;
171
172     s->frames_in++;
173     /* discard frames until we get the first timestamp */
174     if (s->pts == AV_NOPTS_VALUE) {
175         if (buf->pts != AV_NOPTS_VALUE) {
176             ret = write_to_fifo(s->fifo, buf);
177             if (ret < 0)
178                 return ret;
179
180             s->first_pts = s->pts = buf->pts;
181         } else {
182             av_log(ctx, AV_LOG_WARNING, "Discarding initial frame(s) with no "
183                    "timestamp.\n");
184             av_frame_free(&buf);
185             s->drop++;
186         }
187         return 0;
188     }
189
190     /* now wait for the next timestamp */
191     if (buf->pts == AV_NOPTS_VALUE) {
192         return write_to_fifo(s->fifo, buf);
193     }
194
195     /* number of output frames */
196     delta = av_rescale_q(buf->pts - s->pts, inlink->time_base,
197                          outlink->time_base);
198
199     if (delta < 1) {
200         /* drop the frame and everything buffered except the first */
201         AVFrame *tmp;
202         int drop = av_fifo_size(s->fifo)/sizeof(AVFrame*);
203
204         av_log(ctx, AV_LOG_DEBUG, "Dropping %d frame(s).\n", drop);
205         s->drop += drop;
206
207         av_fifo_generic_read(s->fifo, &tmp, sizeof(tmp), NULL);
208         flush_fifo(s->fifo);
209         ret = write_to_fifo(s->fifo, tmp);
210
211         av_frame_free(&buf);
212         return ret;
213     }
214
215     /* can output >= 1 frames */
216     for (i = 0; i < delta; i++) {
217         AVFrame *buf_out;
218         av_fifo_generic_read(s->fifo, &buf_out, sizeof(buf_out), NULL);
219
220         /* duplicate the frame if needed */
221         if (!av_fifo_size(s->fifo) && i < delta - 1) {
222             AVFrame *dup = av_frame_clone(buf_out);
223
224             av_log(ctx, AV_LOG_DEBUG, "Duplicating frame.\n");
225             if (dup)
226                 ret = write_to_fifo(s->fifo, dup);
227             else
228                 ret = AVERROR(ENOMEM);
229
230             if (ret < 0) {
231                 av_frame_free(&buf_out);
232                 av_frame_free(&buf);
233                 return ret;
234             }
235
236             s->dup++;
237         }
238
239         buf_out->pts = av_rescale_q(s->first_pts, inlink->time_base,
240                                     outlink->time_base) + s->frames_out;
241
242         if ((ret = ff_filter_frame(outlink, buf_out)) < 0) {
243             av_frame_free(&buf);
244             return ret;
245         }
246
247         s->frames_out++;
248     }
249     flush_fifo(s->fifo);
250
251     ret = write_to_fifo(s->fifo, buf);
252     s->pts = s->first_pts + av_rescale_q(s->frames_out, outlink->time_base, inlink->time_base);
253
254     return ret;
255 }
256
257 static const AVFilterPad avfilter_vf_fps_inputs[] = {
258     {
259         .name        = "default",
260         .type        = AVMEDIA_TYPE_VIDEO,
261         .filter_frame = filter_frame,
262     },
263     { NULL }
264 };
265
266 static const AVFilterPad avfilter_vf_fps_outputs[] = {
267     {
268         .name          = "default",
269         .type          = AVMEDIA_TYPE_VIDEO,
270         .request_frame = request_frame,
271         .config_props  = config_props
272     },
273     { NULL }
274 };
275
276 AVFilter avfilter_vf_fps = {
277     .name        = "fps",
278     .description = NULL_IF_CONFIG_SMALL("Force constant framerate"),
279
280     .init      = init,
281     .uninit    = uninit,
282
283     .priv_size = sizeof(FPSContext),
284     .priv_class = &class,
285
286     .inputs    = avfilter_vf_fps_inputs,
287     .outputs   = avfilter_vf_fps_outputs,
288 };