FFmpeg
Loading...
Searching...
No Matches
vf_vfrdet.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 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/common.h"
22#include "libavutil/opt.h"
23
24#include "filters.h"
25#include "video.h"
26
39
40static int filter_frame(AVFilterLink *inlink, AVFrame *in)
41{
42 AVFilterContext *ctx = inlink->dst;
43 VFRDETContext *s = ctx->priv;
44
45 if (s->prev_pts != AV_NOPTS_VALUE) {
46 int64_t delta = in->pts - s->prev_pts;
47
48 if (s->delta == AV_NOPTS_VALUE) {
49 s->delta = delta;
50 s->min_delta = delta;
51 s->max_delta = delta;
52 }
53
54 if (s->delta != delta) {
55 s->vfr++;
56 s->delta = delta;
57 s->min_delta = FFMIN(delta, s->min_delta);
58 s->max_delta = FFMAX(delta, s->max_delta);
59 s->avg_delta += delta;
60 } else {
61 s->cfr++;
62 }
63 }
64
65 s->prev_pts = in->pts;
66
67 return ff_filter_frame(ctx->outputs[0], in);
68}
69
71{
72 VFRDETContext *s = ctx->priv;
73
74 s->prev_pts = AV_NOPTS_VALUE;
75 s->delta = AV_NOPTS_VALUE;
76 s->min_delta = INT64_MAX;
77 s->max_delta = INT64_MIN;
78
79 return 0;
80}
81
83{
84 VFRDETContext *s = ctx->priv;
85
86 av_log(ctx, AV_LOG_INFO, "VFR:%f (%"PRIu64"/%"PRIu64")", s->vfr / (float)(s->vfr + s->cfr), s->vfr, s->cfr);
87 if (s->vfr)
88 av_log(ctx, AV_LOG_INFO, " min: %"PRId64" max: %"PRId64" avg: %"PRId64, s->min_delta, s->max_delta, s->avg_delta / s->vfr);
89 av_log(ctx, AV_LOG_INFO, "\n");
90}
91
92static const AVFilterPad vfrdet_inputs[] = {
93 {
94 .name = "default",
95 .type = AVMEDIA_TYPE_VIDEO,
96 .filter_frame = filter_frame,
97 },
98};
99
101 .p.name = "vfrdet",
102 .p.description = NULL_IF_CONFIG_SMALL("Variable frame rate detect filter."),
104 .priv_size = sizeof(VFRDETContext),
105 .init = init,
106 .uninit = uninit,
109};
const FFFilter ff_vf_vfrdet
Definition vf_vfrdet.c:100
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
#define s(width, name)
Definition cbs_vp9.c:198
common internal and external API header
long long int64_t
Definition coverity.c:34
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition dolby_e.c:1067
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition avfilter.h:182
#define AV_LOG_INFO
Standard information.
Definition log.h:221
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#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
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
AVOptions.
Describe the class of an AVClass context structure.
Definition log.h:76
An instance of a filter.
Definition avfilter.h:273
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
int64_t min_delta
Definition vf_vfrdet.c:32
int64_t max_delta
Definition vf_vfrdet.c:33
int64_t prev_pts
Definition vf_vfrdet.c:30
int64_t delta
Definition vf_vfrdet.c:31
uint64_t vfr
Definition vf_vfrdet.c:36
int64_t avg_delta
Definition vf_vfrdet.c:34
uint64_t cfr
Definition vf_vfrdet.c:37
#define av_log(a,...)
static AVFormatContext * ctx
Definition movenc.c:49
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition vf_vfrdet.c:40
static av_cold void uninit(AVFilterContext *ctx)
Definition vf_vfrdet.c:82
static const AVFilterPad vfrdet_inputs[]
Definition vf_vfrdet.c:92
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
float delta