FFmpeg
settb.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
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 /**
22  * @file
23  * Set timebase for the output link.
24  */
25 
26 #include "config_components.h"
27 
28 #include <inttypes.h>
29 #include <stdio.h>
30 
31 #include "libavutil/avstring.h"
32 #include "libavutil/eval.h"
33 #include "libavutil/internal.h"
34 #include "libavutil/mathematics.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/rational.h"
37 #include "audio.h"
38 #include "avfilter.h"
39 #include "filters.h"
40 #include "internal.h"
41 #include "video.h"
42 
43 static const char *const var_names[] = {
44  "AVTB", /* default timebase 1/AV_TIME_BASE */
45  "intb", /* input timebase */
46  "sr", /* sample rate */
47  NULL
48 };
49 
50 enum var_name {
55 };
56 
57 typedef struct SetTBContext {
58  const AVClass *class;
59  char *tb_expr;
61 } SetTBContext;
62 
63 #define OFFSET(x) offsetof(SetTBContext, x)
64 #define DEFINE_OPTIONS(filt_name, filt_type) \
65 static const AVOption filt_name##_options[] = { \
66  { "expr", "set expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
67  .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM }, \
68  { "tb", "set expression determining the output timebase", OFFSET(tb_expr), AV_OPT_TYPE_STRING, {.str="intb"}, \
69  .flags=AV_OPT_FLAG_##filt_type##_PARAM|AV_OPT_FLAG_FILTERING_PARAM }, \
70  { NULL } \
71 }
72 
73 static int config_output_props(AVFilterLink *outlink)
74 {
75  AVFilterContext *ctx = outlink->src;
76  SetTBContext *settb = ctx->priv;
77  AVFilterLink *inlink = ctx->inputs[0];
78  AVRational time_base;
79  int ret;
80  double res;
81 
83  settb->var_values[VAR_INTB] = av_q2d(inlink->time_base);
84  settb->var_values[VAR_SR] = inlink->sample_rate;
85 
86  outlink->w = inlink->w;
87  outlink->h = inlink->h;
88 
89  if ((ret = av_expr_parse_and_eval(&res, settb->tb_expr, var_names, settb->var_values,
90  NULL, NULL, NULL, NULL, NULL, 0, NULL)) < 0) {
91  av_log(ctx, AV_LOG_ERROR, "Invalid expression '%s' for timebase.\n", settb->tb_expr);
92  return ret;
93  }
94  time_base = av_d2q(res, INT_MAX);
95  if (time_base.num <= 0 || time_base.den <= 0) {
97  "Invalid non-positive values for the timebase num:%d or den:%d.\n",
98  time_base.num, time_base.den);
99  return AVERROR(EINVAL);
100  }
101 
102  outlink->time_base = time_base;
103  av_log(outlink->src, AV_LOG_VERBOSE, "tb:%d/%d -> tb:%d/%d\n",
104  inlink ->time_base.num, inlink ->time_base.den,
105  outlink->time_base.num, outlink->time_base.den);
106 
107  return 0;
108 }
109 
110 static int64_t rescale_pts(AVFilterLink *inlink, AVFilterLink *outlink, int64_t orig_pts)
111 {
112  AVFilterContext *ctx = inlink->dst;
113  int64_t new_pts = orig_pts;
114 
115  if (av_cmp_q(inlink->time_base, outlink->time_base)) {
116  new_pts = av_rescale_q(orig_pts, inlink->time_base, outlink->time_base);
117  av_log(ctx, AV_LOG_DEBUG, "tb:%d/%d pts:%"PRId64" -> tb:%d/%d pts:%"PRId64"\n",
118  inlink ->time_base.num, inlink ->time_base.den, orig_pts,
119  outlink->time_base.num, outlink->time_base.den, new_pts);
120  }
121 
122  return new_pts;
123 }
124 
126 {
127  AVFilterContext *ctx = inlink->dst;
128  AVFilterLink *outlink = ctx->outputs[0];
129 
130  frame->pts = rescale_pts(inlink, outlink, frame->pts);
131  frame->duration = av_rescale_q(frame->duration, inlink->time_base, outlink->time_base);
132 
133  return ff_filter_frame(outlink, frame);
134 }
135 
137 {
138  AVFilterLink *inlink = ctx->inputs[0];
139  AVFilterLink *outlink = ctx->outputs[0];
140  AVFrame *in;
141  int status;
142  int64_t pts;
143  int ret;
144 
146 
148  if (ret < 0)
149  return ret;
150  if (ret > 0)
151  return filter_frame(inlink, in);
152 
154  ff_outlink_set_status(outlink, status, rescale_pts(inlink, outlink, pts));
155  return 0;
156  }
157 
159 
160  return FFERROR_NOT_READY;
161 }
162 
163 #if CONFIG_SETTB_FILTER
164 
165 DEFINE_OPTIONS(settb, VIDEO);
166 AVFILTER_DEFINE_CLASS(settb);
167 
168 static const AVFilterPad avfilter_vf_settb_outputs[] = {
169  {
170  .name = "default",
171  .type = AVMEDIA_TYPE_VIDEO,
172  .config_props = config_output_props,
173  },
174 };
175 
176 const AVFilter ff_vf_settb = {
177  .name = "settb",
178  .description = NULL_IF_CONFIG_SMALL("Set timebase for the video output link."),
179  .priv_size = sizeof(SetTBContext),
180  .priv_class = &settb_class,
182  FILTER_OUTPUTS(avfilter_vf_settb_outputs),
183  .activate = activate,
185 };
186 #endif /* CONFIG_SETTB_FILTER */
187 
188 #if CONFIG_ASETTB_FILTER
189 
190 DEFINE_OPTIONS(asettb, AUDIO);
191 AVFILTER_DEFINE_CLASS(asettb);
192 
193 static const AVFilterPad avfilter_af_asettb_outputs[] = {
194  {
195  .name = "default",
196  .type = AVMEDIA_TYPE_AUDIO,
197  .config_props = config_output_props,
198  },
199 };
200 
201 const AVFilter ff_af_asettb = {
202  .name = "asettb",
203  .description = NULL_IF_CONFIG_SMALL("Set timebase for the audio output link."),
204  .priv_size = sizeof(SetTBContext),
206  FILTER_OUTPUTS(avfilter_af_asettb_outputs),
207  .priv_class = &asettb_class,
208  .activate = activate,
210 };
211 #endif /* CONFIG_ASETTB_FILTER */
VAR_INTB
@ VAR_INTB
Definition: settb.c:52
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
DEFINE_OPTIONS
#define DEFINE_OPTIONS(filt_name, filt_type)
Definition: settb.c:64
var_name
var_name
Definition: noise.c:46
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1018
AVFrame::duration
int64_t duration
Duration of the frame, in the same units as pts.
Definition: frame.h:781
SetTBContext::tb_expr
char * tb_expr
Definition: settb.c:59
FFERROR_NOT_READY
return FFERROR_NOT_READY
Definition: filter_design.txt:204
rational.h
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:264
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:375
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:487
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:196
mathematics.h
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:170
video.h
var_names
static const char *const var_names[]
Definition: settb.c:43
FF_FILTER_FORWARD_STATUS_BACK
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition: filters.h:199
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:1445
config_output_props
static int config_output_props(AVFilterLink *outlink)
Definition: settb.c:73
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: settb.c:125
pts
static int64_t pts
Definition: transcode_aac.c:643
AVRational::num
int num
Numerator.
Definition: rational.h:59
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:33
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
ff_video_default_filterpad
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
ff_outlink_set_status
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition: filters.h:189
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
filters.h
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
ctx
AVFormatContext * ctx
Definition: movenc.c:48
av_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:182
frame
static AVFrame * frame
Definition: demux_decode.c:54
activate
static int activate(AVFilterContext *ctx)
Definition: settb.c:136
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
ff_audio_default_filterpad
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
Definition: audio.c:33
ff_inlink_acknowledge_status
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition: avfilter.c:1392
eval.h
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:106
av_expr_parse_and_eval
int av_expr_parse_and_eval(double *d, const char *s, const char *const *const_names, const double *const_values, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
Definition: eval.c:804
VAR_SR
@ VAR_SR
Definition: settb.c:53
VAR_AVTB
@ VAR_AVTB
Definition: settb.c:51
SetTBContext::var_values
double var_values[VAR_VARS_NB]
Definition: settb.c:60
FF_FILTER_FORWARD_WANTED
FF_FILTER_FORWARD_WANTED(outlink, inlink)
internal.h
AVFILTER_DEFINE_CLASS
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:323
rescale_pts
static int64_t rescale_pts(AVFilterLink *inlink, AVFilterLink *outlink, int64_t orig_pts)
Definition: settb.c:110
internal.h
av_d2q
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:39
av_cmp_q
static int av_cmp_q(AVRational a, AVRational b)
Compare two rationals.
Definition: rational.h:89
AVFilter
Filter definition.
Definition: avfilter.h:166
ret
ret
Definition: filter_design.txt:187
status
ov_status_e status
Definition: dnn_backend_openvino.c:120
VAR_VARS_NB
@ VAR_VARS_NB
Definition: settb.c:54
AVRational::den
int den
Denominator.
Definition: rational.h:60
avfilter.h
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
ff_af_asettb
const AVFilter ff_af_asettb
AVFilterContext
An instance of a filter.
Definition: avfilter.h:407
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
audio.h
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:183
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
avstring.h
ff_vf_settb
const AVFilter ff_vf_settb
SetTBContext
Definition: settb.c:57