FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
f_setpts.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Stefano Sabatini
3  * Copyright (c) 2008 Victor Paesa
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * video presentation timestamp (PTS) modification filter
25  */
26 
27 #include "libavutil/eval.h"
28 #include "libavutil/internal.h"
29 #include "libavutil/mathematics.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/time.h"
32 #include "avfilter.h"
33 #include "internal.h"
34 #include "audio.h"
35 #include "video.h"
36 
37 static const char *const var_names[] = {
38  "FRAME_RATE", ///< defined only for constant frame-rate video
39  "INTERLACED", ///< tell if the current frame is interlaced
40  "N", ///< frame number (starting at zero)
41  "NB_CONSUMED_SAMPLES", ///< number of samples consumed by the filter (only audio)
42  "NB_SAMPLES", ///< number of samples in the current frame (only audio)
43  "POS", ///< original position in the file of the frame
44  "PREV_INPTS", ///< previous input PTS
45  "PREV_INT", ///< previous input time in seconds
46  "PREV_OUTPTS", ///< previous output PTS
47  "PREV_OUTT", ///< previous output time in seconds
48  "PTS", ///< original pts in the file of the frame
49  "SAMPLE_RATE", ///< sample rate (only audio)
50  "STARTPTS", ///< PTS at start of movie
51  "STARTT", ///< time at start of movie
52  "T", ///< original time in the file of the frame
53  "TB", ///< timebase
54  "RTCTIME", ///< wallclock (RTC) time in micro seconds
55  "RTCSTART", ///< wallclock (RTC) time at the start of the movie in micro seconds
56  NULL
57 };
58 
59 enum var_name {
79 };
80 
81 typedef struct {
82  const AVClass *class;
83  char *expr_str;
85  double var_values[VAR_VARS_NB];
88 
89 static av_cold int init(AVFilterContext *ctx)
90 {
91  SetPTSContext *setpts = ctx->priv;
92  int ret;
93 
94  if ((ret = av_expr_parse(&setpts->expr, setpts->expr_str,
95  var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
96  av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n", setpts->expr_str);
97  return ret;
98  }
99 
100  setpts->var_values[VAR_N ] = 0.0;
101  setpts->var_values[VAR_PREV_INPTS ] = setpts->var_values[VAR_PREV_INT ] = NAN;
102  setpts->var_values[VAR_PREV_OUTPTS] = setpts->var_values[VAR_PREV_OUTT] = NAN;
103  setpts->var_values[VAR_STARTPTS ] = setpts->var_values[VAR_STARTT ] = NAN;
104  return 0;
105 }
106 
107 static int config_input(AVFilterLink *inlink)
108 {
109  AVFilterContext *ctx = inlink->dst;
110  SetPTSContext *setpts = ctx->priv;
111 
112  setpts->type = inlink->type;
113  setpts->var_values[VAR_TB] = av_q2d(inlink->time_base);
114  setpts->var_values[VAR_RTCSTART] = av_gettime();
115 
116  setpts->var_values[VAR_SAMPLE_RATE] =
117  setpts->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
118 
119  setpts->var_values[VAR_FRAME_RATE] = inlink->frame_rate.num && inlink->frame_rate.den ?
120  av_q2d(inlink->frame_rate) : NAN;
121 
122  av_log(inlink->src, AV_LOG_VERBOSE, "TB:%f FRAME_RATE:%f SAMPLE_RATE:%f\n",
123  setpts->var_values[VAR_TB],
124  setpts->var_values[VAR_FRAME_RATE],
125  setpts->var_values[VAR_SAMPLE_RATE]);
126  return 0;
127 }
128 
129 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
130 #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
131 #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)*av_q2d(tb))
132 
133 #define BUF_SIZE 64
134 
135 static inline char *double2int64str(char *buf, double v)
136 {
137  if (isnan(v)) snprintf(buf, BUF_SIZE, "nan");
138  else snprintf(buf, BUF_SIZE, "%"PRId64, (int64_t)v);
139  return buf;
140 }
141 
142 #define d2istr(v) double2int64str((char[BUF_SIZE]){0}, v)
143 
144 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
145 {
146  SetPTSContext *setpts = inlink->dst->priv;
147  int64_t in_pts = frame->pts;
148  double d;
149 
150  if (isnan(setpts->var_values[VAR_STARTPTS])) {
151  setpts->var_values[VAR_STARTPTS] = TS2D(frame->pts);
152  setpts->var_values[VAR_STARTT ] = TS2T(frame->pts, inlink->time_base);
153  }
154  setpts->var_values[VAR_PTS ] = TS2D(frame->pts);
155  setpts->var_values[VAR_T ] = TS2T(frame->pts, inlink->time_base);
156  setpts->var_values[VAR_POS ] = av_frame_get_pkt_pos(frame) == -1 ? NAN : av_frame_get_pkt_pos(frame);
157  setpts->var_values[VAR_RTCTIME ] = av_gettime();
158 
159  switch (inlink->type) {
160  case AVMEDIA_TYPE_VIDEO:
161  setpts->var_values[VAR_INTERLACED] = frame->interlaced_frame;
162  break;
163 
164  case AVMEDIA_TYPE_AUDIO:
165  setpts->var_values[VAR_NB_SAMPLES] = frame->nb_samples;
166  break;
167  }
168 
169  d = av_expr_eval(setpts->expr, setpts->var_values, NULL);
170 
171  av_log(inlink->dst, AV_LOG_DEBUG,
172  "N:%"PRId64" PTS:%s T:%f POS:%s",
173  (int64_t)setpts->var_values[VAR_N],
174  d2istr(setpts->var_values[VAR_PTS]),
175  setpts->var_values[VAR_T],
176  d2istr(setpts->var_values[VAR_POS]));
177  switch (inlink->type) {
178  case AVMEDIA_TYPE_VIDEO:
179  av_log(inlink->dst, AV_LOG_DEBUG, " INTERLACED:%"PRId64,
180  (int64_t)setpts->var_values[VAR_INTERLACED]);
181  break;
182  case AVMEDIA_TYPE_AUDIO:
183  av_log(inlink->dst, AV_LOG_DEBUG, " NB_SAMPLES:%"PRId64" NB_CONSUMED_SAMPLES:%"PRId64,
184  (int64_t)setpts->var_values[VAR_NB_SAMPLES],
185  (int64_t)setpts->var_values[VAR_NB_CONSUMED_SAMPLES]);
186  break;
187  }
188  av_log(inlink->dst, AV_LOG_DEBUG, " -> PTS:%s T:%f\n", d2istr(d), TS2T(d, inlink->time_base));
189 
190  frame->pts = D2TS(d);
191 
192  setpts->var_values[VAR_PREV_INPTS ] = TS2D(in_pts);
193  setpts->var_values[VAR_PREV_INT ] = TS2T(in_pts, inlink->time_base);
194  setpts->var_values[VAR_PREV_OUTPTS] = TS2D(frame->pts);
195  setpts->var_values[VAR_PREV_OUTT] = TS2T(frame->pts, inlink->time_base);
196  setpts->var_values[VAR_N] += 1.0;
197  if (setpts->type == AVMEDIA_TYPE_AUDIO) {
198  setpts->var_values[VAR_NB_CONSUMED_SAMPLES] += frame->nb_samples;
199  }
200  return ff_filter_frame(inlink->dst->outputs[0], frame);
201 }
202 
203 static av_cold void uninit(AVFilterContext *ctx)
204 {
205  SetPTSContext *setpts = ctx->priv;
206  av_expr_free(setpts->expr);
207  setpts->expr = NULL;
208 }
209 
210 #if CONFIG_ASETPTS_FILTER
211 
212 #define OFFSET(x) offsetof(SetPTSContext, x)
213 #define AFLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
214 static const AVOption aoptions[] = {
215  { "expr", "Expression determining the frame timestamp", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "PTS" }, .flags = AFLAGS },
216  { NULL },
217 };
218 
219 static const AVClass asetpts_class = {
220  .class_name = "asetpts",
221  .item_name = av_default_item_name,
222  .option = aoptions,
223  .version = LIBAVUTIL_VERSION_INT,
224 };
225 
226 static const AVFilterPad avfilter_af_asetpts_inputs[] = {
227  {
228  .name = "default",
229  .type = AVMEDIA_TYPE_AUDIO,
230  .get_audio_buffer = ff_null_get_audio_buffer,
231  .config_props = config_input,
232  .filter_frame = filter_frame,
233  },
234  { NULL }
235 };
236 
237 static const AVFilterPad avfilter_af_asetpts_outputs[] = {
238  {
239  .name = "default",
240  .type = AVMEDIA_TYPE_AUDIO,
241  },
242  { NULL }
243 };
244 
245 AVFilter avfilter_af_asetpts = {
246  .name = "asetpts",
247  .description = NULL_IF_CONFIG_SMALL("Set PTS for the output audio frame."),
248  .init = init,
249  .uninit = uninit,
250  .priv_size = sizeof(SetPTSContext),
251  .priv_class= &asetpts_class,
252  .inputs = avfilter_af_asetpts_inputs,
253  .outputs = avfilter_af_asetpts_outputs,
254 };
255 #endif /* CONFIG_ASETPTS_FILTER */
256 
257 #if CONFIG_SETPTS_FILTER
258 
259 #define OFFSET(x) offsetof(SetPTSContext, x)
260 #define FLAGS AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
261 static const AVOption options[] = {
262  { "expr", "Expression determining the frame timestamp", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "PTS" }, .flags = FLAGS },
263  { NULL },
264 };
265 
266 static const AVClass setpts_class = {
267  .class_name = "setpts",
268  .item_name = av_default_item_name,
269  .option = options,
270  .version = LIBAVUTIL_VERSION_INT,
271 };
272 
273 static const AVFilterPad avfilter_vf_setpts_inputs[] = {
274  {
275  .name = "default",
276  .type = AVMEDIA_TYPE_VIDEO,
277  .get_video_buffer = ff_null_get_video_buffer,
278  .config_props = config_input,
279  .filter_frame = filter_frame,
280  },
281  { NULL }
282 };
283 
284 static const AVFilterPad avfilter_vf_setpts_outputs[] = {
285  {
286  .name = "default",
287  .type = AVMEDIA_TYPE_VIDEO,
288  },
289  { NULL }
290 };
291 
292 AVFilter avfilter_vf_setpts = {
293  .name = "setpts",
294  .description = NULL_IF_CONFIG_SMALL("Set PTS for the output video frame."),
295  .init = init,
296  .uninit = uninit,
297 
298  .priv_size = sizeof(SetPTSContext),
299  .priv_class = &setpts_class,
300 
301  .inputs = avfilter_vf_setpts_inputs,
302  .outputs = avfilter_vf_setpts_outputs,
303 };
304 #endif /* CONFIG_SETPTS_FILTER */