FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
f_select.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 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  * filter for selecting which frame passes in the filterchain
24  */
25 
26 #include "libavutil/eval.h"
27 #include "libavutil/fifo.h"
28 #include "libavutil/internal.h"
29 #include "libavutil/opt.h"
30 #include "avfilter.h"
31 #include "audio.h"
32 #include "formats.h"
33 #include "internal.h"
34 #include "video.h"
35 
36 #if CONFIG_AVCODEC
37 #include "libavcodec/dsputil.h"
38 #endif
39 
40 static const char *const var_names[] = {
41  "TB", ///< timebase
42 
43  "pts", ///< original pts in the file of the frame
44  "start_pts", ///< first PTS in the stream, expressed in TB units
45  "prev_pts", ///< previous frame PTS
46  "prev_selected_pts", ///< previous selected frame PTS
47 
48  "t", ///< first PTS in seconds
49  "start_t", ///< first PTS in the stream, expressed in seconds
50  "prev_t", ///< previous frame time
51  "prev_selected_t", ///< previously selected time
52 
53  "pict_type", ///< the type of picture in the movie
54  "I",
55  "P",
56  "B",
57  "S",
58  "SI",
59  "SP",
60  "BI",
61 
62  "interlace_type", ///< the frame interlace type
63  "PROGRESSIVE",
64  "TOPFIRST",
65  "BOTTOMFIRST",
66 
67  "consumed_samples_n",///< number of samples consumed by the filter (only audio)
68  "samples_n", ///< number of samples in the current frame (only audio)
69  "sample_rate", ///< sample rate (only audio)
70 
71  "n", ///< frame number (starting from zero)
72  "selected_n", ///< selected frame number (starting from zero)
73  "prev_selected_n", ///< number of the last selected frame
74 
75  "key", ///< tell if the frame is a key frame
76  "pos", ///< original position in the file of the frame
77 
78  "scene",
79 
80  NULL
81 };
82 
83 enum var_name {
85 
90 
95 
104 
109 
113 
117 
120 
122 
124 };
125 
126 typedef struct {
127  const AVClass *class;
129  char *expr_str;
130  double var_values[VAR_VARS_NB];
131  int do_scene_detect; ///< 1 if the expression requires scene detection variables, 0 otherwise
132 #if CONFIG_AVCODEC
133  AVCodecContext *avctx; ///< codec context required for the DSPContext (scene detect only)
134  DSPContext c; ///< context providing optimized SAD methods (scene detect only)
135  double prev_mafd; ///< previous MAFD (scene detect only)
136 #endif
137  AVFilterBufferRef *prev_picref; ///< previous frame (scene detect only)
138  double select;
139 } SelectContext;
140 
141 #define OFFSET(x) offsetof(SelectContext, x)
142 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM
143 static const AVOption options[] = {
144  { "expr", "set selection expression", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str = "1"}, 0, 0, FLAGS },
145  { "e", "set selection expression", OFFSET(expr_str), AV_OPT_TYPE_STRING, {.str = "1"}, 0, 0, FLAGS },
146  {NULL},
147 };
148 
149 static av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *class)
150 {
151  SelectContext *select = ctx->priv;
152  const char *shorthand[] = { "expr", NULL };
153  int ret;
154 
155  select->class = class;
156  av_opt_set_defaults(select);
157 
158  if ((ret = av_opt_set_from_string(select, args, shorthand, "=", ":")) < 0)
159  return ret;
160 
161  if ((ret = av_expr_parse(&select->expr, select->expr_str,
162  var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
163  av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n", select->expr_str);
164  return ret;
165  }
166  select->do_scene_detect = !!strstr(select->expr_str, "scene");
167 
168  return 0;
169 }
170 
171 #define INTERLACE_TYPE_P 0
172 #define INTERLACE_TYPE_T 1
173 #define INTERLACE_TYPE_B 2
174 
175 static int config_input(AVFilterLink *inlink)
176 {
177  SelectContext *select = inlink->dst->priv;
178 
179  select->var_values[VAR_N] = 0.0;
180  select->var_values[VAR_SELECTED_N] = 0.0;
181 
182  select->var_values[VAR_TB] = av_q2d(inlink->time_base);
183 
184  select->var_values[VAR_PREV_PTS] = NAN;
187  select->var_values[VAR_PREV_T] = NAN;
188  select->var_values[VAR_START_PTS] = NAN;
189  select->var_values[VAR_START_T] = NAN;
190 
196 
200 
201  select->var_values[VAR_PICT_TYPE] = NAN;
202  select->var_values[VAR_INTERLACE_TYPE] = NAN;
203  select->var_values[VAR_SCENE] = NAN;
205  select->var_values[VAR_SAMPLES_N] = NAN;
206 
207  select->var_values[VAR_SAMPLE_RATE] =
208  inlink->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
209 
210 #if CONFIG_AVCODEC
211  if (select->do_scene_detect) {
212  select->avctx = avcodec_alloc_context3(NULL);
213  if (!select->avctx)
214  return AVERROR(ENOMEM);
215  dsputil_init(&select->c, select->avctx);
216  }
217 #endif
218  return 0;
219 }
220 
221 #if CONFIG_AVCODEC
222 static double get_scene_score(AVFilterContext *ctx, AVFilterBufferRef *picref)
223 {
224  double ret = 0;
225  SelectContext *select = ctx->priv;
226  AVFilterBufferRef *prev_picref = select->prev_picref;
227 
228  if (prev_picref &&
229  picref->video->h == prev_picref->video->h &&
230  picref->video->w == prev_picref->video->w &&
231  picref->linesize[0] == prev_picref->linesize[0]) {
232  int x, y, nb_sad = 0;
233  int64_t sad = 0;
234  double mafd, diff;
235  uint8_t *p1 = picref->data[0];
236  uint8_t *p2 = prev_picref->data[0];
237  const int linesize = picref->linesize[0];
238 
239  for (y = 0; y < picref->video->h - 8; y += 8) {
240  for (x = 0; x < picref->video->w*3 - 8; x += 8) {
241  sad += select->c.sad[1](select, p1 + x, p2 + x,
242  linesize, 8);
243  nb_sad += 8 * 8;
244  }
245  p1 += 8 * linesize;
246  p2 += 8 * linesize;
247  }
248  emms_c();
249  mafd = nb_sad ? sad / nb_sad : 0;
250  diff = fabs(mafd - select->prev_mafd);
251  ret = av_clipf(FFMIN(mafd, diff) / 100., 0, 1);
252  select->prev_mafd = mafd;
253  avfilter_unref_buffer(prev_picref);
254  }
255  select->prev_picref = avfilter_ref_buffer(picref, ~0);
256  return ret;
257 }
258 #endif
259 
260 #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
261 #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
262 
264 {
265  SelectContext *select = ctx->priv;
266  AVFilterLink *inlink = ctx->inputs[0];
267  double res;
268 
269  if (isnan(select->var_values[VAR_START_PTS]))
270  select->var_values[VAR_START_PTS] = TS2D(ref->pts);
271  if (isnan(select->var_values[VAR_START_T]))
272  select->var_values[VAR_START_T] = TS2D(ref->pts) * av_q2d(inlink->time_base);
273 
274  select->var_values[VAR_PTS] = TS2D(ref->pts);
275  select->var_values[VAR_T ] = TS2D(ref->pts) * av_q2d(inlink->time_base);
276  select->var_values[VAR_POS] = ref->pos == -1 ? NAN : ref->pos;
277 
278  switch (inlink->type) {
279  case AVMEDIA_TYPE_AUDIO:
280  select->var_values[VAR_SAMPLES_N] = ref->audio->nb_samples;
281  break;
282 
283  case AVMEDIA_TYPE_VIDEO:
284  select->var_values[VAR_INTERLACE_TYPE] =
287  select->var_values[VAR_PICT_TYPE] = ref->video->pict_type;
288 #if CONFIG_AVCODEC
289  if (select->do_scene_detect) {
290  char buf[32];
291  select->var_values[VAR_SCENE] = get_scene_score(ctx, ref);
292  // TODO: document metadata
293  snprintf(buf, sizeof(buf), "%f", select->var_values[VAR_SCENE]);
294  av_dict_set(&ref->metadata, "lavfi.scene_score", buf, 0);
295  }
296 #endif
297  break;
298  }
299 
300  res = av_expr_eval(select->expr, select->var_values, NULL);
301  av_log(inlink->dst, AV_LOG_DEBUG,
302  "n:%f pts:%f t:%f pos:%f key:%d",
303  select->var_values[VAR_N],
304  select->var_values[VAR_PTS],
305  select->var_values[VAR_T],
306  select->var_values[VAR_POS],
307  (int)select->var_values[VAR_KEY]);
308 
309  switch (inlink->type) {
310  case AVMEDIA_TYPE_VIDEO:
311  av_log(inlink->dst, AV_LOG_DEBUG, " interlace_type:%c pict_type:%c scene:%f",
314  select->var_values[VAR_INTERLACE_TYPE] == INTERLACE_TYPE_B ? 'B' : '?',
316  select->var_values[VAR_SCENE]);
317  break;
318  case AVMEDIA_TYPE_AUDIO:
319  av_log(inlink->dst, AV_LOG_DEBUG, " samples_n:%d consumed_samples_n:%d",
320  (int)select->var_values[VAR_SAMPLES_N],
321  (int)select->var_values[VAR_CONSUMED_SAMPLES_N]);
322  break;
323  }
324 
325  av_log(inlink->dst, AV_LOG_DEBUG, " -> select:%f\n", res);
326 
327  if (res) {
328  select->var_values[VAR_PREV_SELECTED_N] = select->var_values[VAR_N];
330  select->var_values[VAR_PREV_SELECTED_T] = select->var_values[VAR_T];
331  select->var_values[VAR_SELECTED_N] += 1.0;
332  if (inlink->type == AVMEDIA_TYPE_AUDIO)
334  }
335 
336  select->var_values[VAR_N] += 1.0;
337  select->var_values[VAR_PREV_PTS] = select->var_values[VAR_PTS];
338  select->var_values[VAR_PREV_T] = select->var_values[VAR_T];
339 
340  return res;
341 }
342 
344 {
345  SelectContext *select = inlink->dst->priv;
346 
347  select->select = select_frame(inlink->dst, frame);
348  if (select->select)
349  return ff_filter_frame(inlink->dst->outputs[0], frame);
350 
351  avfilter_unref_bufferp(&frame);
352  return 0;
353 }
354 
355 static int request_frame(AVFilterLink *outlink)
356 {
357  AVFilterContext *ctx = outlink->src;
358  SelectContext *select = ctx->priv;
359  AVFilterLink *inlink = outlink->src->inputs[0];
360  select->select = 0;
361 
362  do {
363  int ret = ff_request_frame(inlink);
364  if (ret < 0)
365  return ret;
366  } while (!select->select);
367 
368  return 0;
369 }
370 
371 static av_cold void uninit(AVFilterContext *ctx)
372 {
373  SelectContext *select = ctx->priv;
374 
375  av_expr_free(select->expr);
376  select->expr = NULL;
377  av_opt_free(select);
378 
379 #if CONFIG_AVCODEC
380  if (select->do_scene_detect) {
382  if (select->avctx) {
383  avcodec_close(select->avctx);
384  av_freep(&select->avctx);
385  }
386  }
387 #endif
388 }
389 
391 {
392  SelectContext *select = ctx->priv;
393 
394  if (!select->do_scene_detect) {
395  return ff_default_query_formats(ctx);
396  } else {
397  static const enum AVPixelFormat pix_fmts[] = {
400  };
402  }
403  return 0;
404 }
405 
406 #if CONFIG_ASELECT_FILTER
407 
408 #define aselect_options options
409 AVFILTER_DEFINE_CLASS(aselect);
410 
411 static av_cold int aselect_init(AVFilterContext *ctx, const char *args)
412 {
413  SelectContext *select = ctx->priv;
414  int ret;
415 
416  if ((ret = init(ctx, args, &aselect_class)) < 0)
417  return ret;
418 
419  if (select->do_scene_detect) {
420  av_log(ctx, AV_LOG_ERROR, "Scene detection is ignored in aselect filter\n");
421  return AVERROR(EINVAL);
422  }
423 
424  return 0;
425 }
426 
427 static const AVFilterPad avfilter_af_aselect_inputs[] = {
428  {
429  .name = "default",
430  .type = AVMEDIA_TYPE_AUDIO,
431  .get_audio_buffer = ff_null_get_audio_buffer,
432  .config_props = config_input,
433  .filter_frame = filter_frame,
434  },
435  { NULL }
436 };
437 
438 static const AVFilterPad avfilter_af_aselect_outputs[] = {
439  {
440  .name = "default",
441  .type = AVMEDIA_TYPE_AUDIO,
442  },
443  { NULL }
444 };
445 
446 AVFilter avfilter_af_aselect = {
447  .name = "aselect",
448  .description = NULL_IF_CONFIG_SMALL("Select audio frames to pass in output."),
449  .init = aselect_init,
450  .uninit = uninit,
451  .priv_size = sizeof(SelectContext),
452  .inputs = avfilter_af_aselect_inputs,
453  .outputs = avfilter_af_aselect_outputs,
454  .priv_class = &aselect_class,
455 };
456 #endif /* CONFIG_ASELECT_FILTER */
457 
458 #if CONFIG_SELECT_FILTER
459 
460 #define select_options options
461 AVFILTER_DEFINE_CLASS(select);
462 
463 static av_cold int select_init(AVFilterContext *ctx, const char *args)
464 {
465  SelectContext *select = ctx->priv;
466  int ret;
467 
468  if ((ret = init(ctx, args, &select_class)) < 0)
469  return ret;
470 
471  if (select->do_scene_detect && !CONFIG_AVCODEC) {
472  av_log(ctx, AV_LOG_ERROR, "Scene detection is not available without libavcodec.\n");
473  return AVERROR(EINVAL);
474  }
475 
476  return 0;
477 }
478 
479 static const AVFilterPad avfilter_vf_select_inputs[] = {
480  {
481  .name = "default",
482  .type = AVMEDIA_TYPE_VIDEO,
483  .get_video_buffer = ff_null_get_video_buffer,
484  .min_perms = AV_PERM_PRESERVE,
485  .config_props = config_input,
486  .filter_frame = filter_frame,
487  },
488  { NULL }
489 };
490 
491 static const AVFilterPad avfilter_vf_select_outputs[] = {
492  {
493  .name = "default",
494  .type = AVMEDIA_TYPE_VIDEO,
495  .request_frame = request_frame,
496  },
497  { NULL }
498 };
499 
500 AVFilter avfilter_vf_select = {
501  .name = "select",
502  .description = NULL_IF_CONFIG_SMALL("Select video frames to pass in output."),
503  .init = select_init,
504  .uninit = uninit,
505  .query_formats = query_formats,
506 
507  .priv_size = sizeof(SelectContext),
508 
509  .inputs = avfilter_vf_select_inputs,
510  .outputs = avfilter_vf_select_outputs,
511  .priv_class = &select_class,
512 };
513 #endif /* CONFIG_SELECT_FILTER */