FFmpeg
f_bench.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include "config_components.h"
20 
21 #include "libavutil/opt.h"
22 #include "libavutil/time.h"
23 #include "avfilter.h"
24 #include "formats.h"
25 #include "internal.h"
26 
31 };
32 
33 typedef struct BenchContext {
34  const AVClass *class;
35  int action;
36  int64_t max, min;
37  int64_t sum;
38  int n;
39 } BenchContext;
40 
41 #define OFFSET(x) offsetof(BenchContext, x)
42 #define DEFINE_OPTIONS(filt_name, FLAGS) \
43 static const AVOption filt_name##_options[] = { \
44  { "action", "set action", OFFSET(action), AV_OPT_TYPE_INT, {.i64=ACTION_START}, 0, NB_ACTION-1, FLAGS, "action" }, \
45  { "start", "start timer", 0, AV_OPT_TYPE_CONST, {.i64=ACTION_START}, INT_MIN, INT_MAX, FLAGS, "action" }, \
46  { "stop", "stop timer", 0, AV_OPT_TYPE_CONST, {.i64=ACTION_STOP}, INT_MIN, INT_MAX, FLAGS, "action" }, \
47  { NULL } \
48 }
49 
50 #define START_TIME_KEY "lavfi.bench.start_time"
51 #define T2F(v) ((v) / 1000000.)
52 
54 {
55  BenchContext *s = ctx->priv;
56  s->min = INT64_MAX;
57  s->max = INT64_MIN;
58  return 0;
59 }
60 
62 {
63  AVFilterContext *ctx = inlink->dst;
64  BenchContext *s = ctx->priv;
65  AVFilterLink *outlink = ctx->outputs[0];
66  const int64_t t = av_gettime();
67 
68  if (t < 0)
69  return ff_filter_frame(outlink, in);
70 
71  if (s->action == ACTION_START) {
73  } else if (s->action == ACTION_STOP) {
75  if (e) {
76  const int64_t start = strtoll(e->value, NULL, 0);
77  const int64_t diff = t - start;
78  s->sum += diff;
79  s->n++;
80  s->min = FFMIN(s->min, diff);
81  s->max = FFMAX(s->max, diff);
82  av_log(s, AV_LOG_INFO, "t:%f avg:%f max:%f min:%f\n",
83  T2F(diff), T2F(s->sum / s->n), T2F(s->max), T2F(s->min));
84  }
86  }
87 
88  return ff_filter_frame(outlink, in);
89 }
90 
91 #if CONFIG_BENCH_FILTER
94 
95 static const AVFilterPad bench_inputs[] = {
96  {
97  .name = "default",
98  .type = AVMEDIA_TYPE_VIDEO,
99  .filter_frame = filter_frame,
100  },
101 };
102 
103 static const AVFilterPad bench_outputs[] = {
104  {
105  .name = "default",
106  .type = AVMEDIA_TYPE_VIDEO,
107  },
108 };
109 
110 const AVFilter ff_vf_bench = {
111  .name = "bench",
112  .description = NULL_IF_CONFIG_SMALL("Benchmark part of a filtergraph."),
113  .priv_size = sizeof(BenchContext),
114  .init = init,
115  FILTER_INPUTS(bench_inputs),
116  FILTER_OUTPUTS(bench_outputs),
117  .priv_class = &bench_class,
119 };
120 #endif /* CONFIG_BENCH_FILTER */
121 
122 #if CONFIG_ABENCH_FILTER
124 AVFILTER_DEFINE_CLASS(abench);
125 
126 static const AVFilterPad abench_inputs[] = {
127  {
128  .name = "default",
129  .type = AVMEDIA_TYPE_AUDIO,
130  .filter_frame = filter_frame,
131  },
132 };
133 
134 static const AVFilterPad abench_outputs[] = {
135  {
136  .name = "default",
137  .type = AVMEDIA_TYPE_AUDIO,
138  },
139 };
140 
141 const AVFilter ff_af_abench = {
142  .name = "abench",
143  .description = NULL_IF_CONFIG_SMALL("Benchmark part of a filtergraph."),
144  .priv_size = sizeof(BenchContext),
145  .init = init,
146  FILTER_INPUTS(abench_inputs),
147  FILTER_OUTPUTS(abench_outputs),
148  .priv_class = &abench_class,
150 };
151 #endif /* CONFIG_ABENCH_FILTER */
BenchContext::action
int action
Definition: f_bench.c:35
opt.h
AV_OPT_FLAG_VIDEO_PARAM
#define AV_OPT_FLAG_VIDEO_PARAM
Definition: opt.h:284
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:969
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
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:330
BenchContext::min
int64_t min
Definition: f_bench.c:36
NB_ACTION
@ NB_ACTION
Definition: f_bench.c:30
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:165
AV_OPT_FLAG_FILTERING_PARAM
#define AV_OPT_FLAG_FILTERING_PARAM
a generic parameter which can be set by the user for filtering
Definition: opt.h:297
formats.h
BenchContext::max
int64_t max
Definition: f_bench.c:36
BenchContext::sum
int64_t sum
Definition: f_bench.c:37
START_TIME_KEY
#define START_TIME_KEY
Definition: f_bench.c:50
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:49
av_cold
#define av_cold
Definition: attributes.h:90
av_dict_get
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:60
T2F
#define T2F(v)
Definition: f_bench.c:51
s
#define s(width, name)
Definition: cbs_vp9.c:256
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
DEFINE_OPTIONS
#define DEFINE_OPTIONS(filt_name, FLAGS)
Definition: f_bench.c:42
BenchContext
Definition: f_bench.c:33
ctx
AVFormatContext * ctx
Definition: movenc.c:48
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:194
AV_OPT_FLAG_AUDIO_PARAM
#define AV_OPT_FLAG_AUDIO_PARAM
Definition: opt.h:283
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
ACTION_START
@ ACTION_START
Definition: f_bench.c:28
ff_vf_bench
const AVFilter ff_vf_bench
BenchAction
BenchAction
Definition: f_bench.c:27
time.h
ff_af_abench
const AVFilter ff_af_abench
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:115
diff
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
Definition: vf_paletteuse.c:162
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:191
internal.h
AVFILTER_DEFINE_CLASS
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:329
BenchContext::n
int n
Definition: f_bench.c:38
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
init
static av_cold int init(AVFilterContext *ctx)
Definition: f_bench.c:53
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:55
AVFilter
Filter definition.
Definition: avfilter.h:161
avfilter.h
AVFrame::metadata
AVDictionary * metadata
metadata.
Definition: frame.h:639
AVFILTER_FLAG_METADATA_ONLY
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition: avfilter.h:133
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: f_bench.c:61
AVFilterContext
An instance of a filter.
Definition: avfilter.h:392
av_gettime
int64_t av_gettime(void)
Get the current time in microseconds.
Definition: time.c:39
av_dict_set_int
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set() that converts the value to a string and stores it.
Definition: dict.c:167
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AVDictionaryEntry
Definition: dict.h:89
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:195
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:86
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
ACTION_STOP
@ ACTION_STOP
Definition: f_bench.c:29
AVDictionaryEntry::value
char * value
Definition: dict.h:91