FFmpeg: libavfilter/f_select.c Source File

FFmpeg
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/avstring.h"
27 #include "libavutil/eval.h"
28 #include "libavutil/fifo.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/pixelutils.h"
32 #include "avfilter.h"
33 #include "audio.h"
34 #include "formats.h"
35 #include "internal.h"
36 #include "video.h"
37 
38  static const char *const var_names[] = {
39  "TB", ///< timebase
40 
41  "pts", ///< original pts in the file of the frame
42  "start_pts", ///< first PTS in the stream, expressed in TB units
43  "prev_pts", ///< previous frame PTS
44  "prev_selected_pts", ///< previous selected frame PTS
45 
46  "t", ///< timestamp expressed in seconds
47  "start_t", ///< first PTS in the stream, expressed in seconds
48  "prev_t", ///< previous frame time
49  "prev_selected_t", ///< previously selected time
50 
51  "pict_type", ///< the type of picture in the movie
52  "I",
53  "P",
54  "B",
55  "S",
56  "SI",
57  "SP",
58  "BI",
59  "PICT_TYPE_I",
60  "PICT_TYPE_P",
61  "PICT_TYPE_B",
62  "PICT_TYPE_S",
63  "PICT_TYPE_SI",
64  "PICT_TYPE_SP",
65  "PICT_TYPE_BI",
66 
67  "interlace_type", ///< the frame interlace type
68  "PROGRESSIVE",
69  "TOPFIRST",
70  "BOTTOMFIRST",
71 
72  "consumed_samples_n",///< number of samples consumed by the filter (only audio)
73  "samples_n", ///< number of samples in the current frame (only audio)
74  "sample_rate", ///< sample rate (only audio)
75 
76  "n", ///< frame number (starting from zero)
77  "selected_n", ///< selected frame number (starting from zero)
78  "prev_selected_n", ///< number of the last selected frame
79 
80  "key", ///< tell if the frame is a key frame
81  "pos", ///< original position in the file of the frame
82 
83  "scene",
84 
85  "concatdec_select", ///< frame is within the interval set by the concat demuxer
86 
87  NULL
88 };
89 
90  enum var_name {
91   VAR_TB,
92 
93   VAR_PTS,
94   VAR_START_PTS,
95   VAR_PREV_PTS,
96   VAR_PREV_SELECTED_PTS,
97 
98   VAR_T,
99   VAR_START_T,
100   VAR_PREV_T,
101   VAR_PREV_SELECTED_T,
102 
103   VAR_PICT_TYPE,
104   VAR_I,
105   VAR_P,
106   VAR_B,
107   VAR_S,
108   VAR_SI,
109   VAR_SP,
110   VAR_BI,
111   VAR_PICT_TYPE_I,
112   VAR_PICT_TYPE_P,
113   VAR_PICT_TYPE_B,
114   VAR_PICT_TYPE_S,
115   VAR_PICT_TYPE_SI,
116   VAR_PICT_TYPE_SP,
117   VAR_PICT_TYPE_BI,
118 
119   VAR_INTERLACE_TYPE,
120   VAR_INTERLACE_TYPE_P,
121   VAR_INTERLACE_TYPE_T,
122   VAR_INTERLACE_TYPE_B,
123 
124   VAR_CONSUMED_SAMPLES_N,
125   VAR_SAMPLES_N,
126   VAR_SAMPLE_RATE,
127 
128   VAR_N,
129   VAR_SELECTED_N,
130   VAR_PREV_SELECTED_N,
131 
132   VAR_KEY,
133   VAR_POS,
134 
135   VAR_SCENE,
136 
137   VAR_CONCATDEC_SELECT,
138 
139   VAR_VARS_NB
140 };
141 
142  typedef struct SelectContext {
143   const AVClass *class;
144   char *expr_str;
145   AVExpr *expr;
146   double var_values[VAR_VARS_NB];
147   int do_scene_detect; ///< 1 if the expression requires scene detection variables, 0 otherwise
148   av_pixelutils_sad_fn sad; ///< Sum of the absolute difference function (scene detect only)
149   double prev_mafd; ///< previous MAFD (scene detect only)
150   AVFrame *prev_picref; ///< previous frame (scene detect only)
151   double select;
152   int select_out; ///< mark the selected output pad index
153   int nb_outputs;
154 } SelectContext;
155 
156  #define OFFSET(x) offsetof(SelectContext, x)
157  #define DEFINE_OPTIONS(filt_name, FLAGS) \
158 static const AVOption filt_name##_options[] = { \
159  { "expr", "set an expression to use for selecting frames", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "1" }, .flags=FLAGS }, \
160  { "e", "set an expression to use for selecting frames", OFFSET(expr_str), AV_OPT_TYPE_STRING, { .str = "1" }, .flags=FLAGS }, \
161  { "outputs", "set the number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, {.i64 = 1}, 1, INT_MAX, .flags=FLAGS }, \
162  { "n", "set the number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, {.i64 = 1}, 1, INT_MAX, .flags=FLAGS }, \
163  { NULL } \
164 }
165 
166 static int request_frame(AVFilterLink *outlink);
167 
168  static av_cold int init(AVFilterContext *ctx)
169 {
170  SelectContext *select = ctx->priv;
171  int i, ret;
172 
173  if ((ret = av_expr_parse(&select->expr, select->expr_str,
174  var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) {
175  av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n",
176  select->expr_str);
177  return ret;
178  }
179  select->do_scene_detect = !!strstr(select->expr_str, "scene");
180 
181  for (i = 0; i < select->nb_outputs; i++) {
182  AVFilterPad pad = { 0 };
183 
184  pad.name = av_asprintf("output%d", i);
185  if (!pad.name)
186  return AVERROR(ENOMEM);
187  pad.type = ctx->filter->inputs[0].type;
188  pad.request_frame = request_frame;
189  if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
190  av_freep(&pad.name);
191  return ret;
192  }
193  }
194 
195  return 0;
196 }
197 
198  #define INTERLACE_TYPE_P 0
199  #define INTERLACE_TYPE_T 1
200  #define INTERLACE_TYPE_B 2
201 
202  static int config_input(AVFilterLink *inlink)
203 {
204  SelectContext *select = inlink->dst->priv;
205 
206  select->var_values[VAR_N] = 0.0;
207  select->var_values[VAR_SELECTED_N] = 0.0;
208 
209  select->var_values[VAR_TB] = av_q2d(inlink->time_base);
210 
211  select->var_values[VAR_PREV_PTS] = NAN;
212  select->var_values[VAR_PREV_SELECTED_PTS] = NAN;
213  select->var_values[VAR_PREV_SELECTED_T] = NAN;
214  select->var_values[VAR_PREV_T] = NAN;
215  select->var_values[VAR_START_PTS] = NAN;
216  select->var_values[VAR_START_T] = NAN;
217 
218  select->var_values[VAR_I] = AV_PICTURE_TYPE_I;
219  select->var_values[VAR_P] = AV_PICTURE_TYPE_P;
220  select->var_values[VAR_B] = AV_PICTURE_TYPE_B;
221  select->var_values[VAR_SI] = AV_PICTURE_TYPE_SI;
222  select->var_values[VAR_SP] = AV_PICTURE_TYPE_SP;
223  select->var_values[VAR_BI] = AV_PICTURE_TYPE_BI;
224  select->var_values[VAR_PICT_TYPE_I] = AV_PICTURE_TYPE_I;
225  select->var_values[VAR_PICT_TYPE_P] = AV_PICTURE_TYPE_P;
226  select->var_values[VAR_PICT_TYPE_B] = AV_PICTURE_TYPE_B;
227  select->var_values[VAR_PICT_TYPE_SI] = AV_PICTURE_TYPE_SI;
228  select->var_values[VAR_PICT_TYPE_SP] = AV_PICTURE_TYPE_SP;
229  select->var_values[VAR_PICT_TYPE_BI] = AV_PICTURE_TYPE_BI;
230 
231  select->var_values[VAR_INTERLACE_TYPE_P] = INTERLACE_TYPE_P;
232  select->var_values[VAR_INTERLACE_TYPE_T] = INTERLACE_TYPE_T;
233  select->var_values[VAR_INTERLACE_TYPE_B] = INTERLACE_TYPE_B;
234 
235  select->var_values[VAR_PICT_TYPE] = NAN;
236  select->var_values[VAR_INTERLACE_TYPE] = NAN;
237  select->var_values[VAR_SCENE] = NAN;
238  select->var_values[VAR_CONSUMED_SAMPLES_N] = NAN;
239  select->var_values[VAR_SAMPLES_N] = NAN;
240 
241  select->var_values[VAR_SAMPLE_RATE] =
242  inlink->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
243 
244  if (select->do_scene_detect) {
245  select->sad = av_pixelutils_get_sad_fn(3, 3, 2, select); // 8x8 both sources aligned
246  if (!select->sad)
247  return AVERROR(EINVAL);
248  }
249  return 0;
250 }
251 
252  static double get_scene_score(AVFilterContext *ctx, AVFrame *frame)
253 {
254  double ret = 0;
255  SelectContext *select = ctx->priv;
256  AVFrame *prev_picref = select->prev_picref;
257 
258  if (prev_picref &&
259  frame->height == prev_picref->height &&
260  frame->width == prev_picref->width) {
261  int x, y, nb_sad = 0;
262  int64_t sad = 0;
263  double mafd, diff;
264  uint8_t *p1 = frame->data[0];
265  uint8_t *p2 = prev_picref->data[0];
266  const int p1_linesize = frame->linesize[0];
267  const int p2_linesize = prev_picref->linesize[0];
268 
269  for (y = 0; y < frame->height - 7; y += 8) {
270  for (x = 0; x < frame->width*3 - 7; x += 8) {
271  sad += select->sad(p1 + x, p1_linesize, p2 + x, p2_linesize);
272  nb_sad += 8 * 8;
273  }
274  p1 += 8 * p1_linesize;
275  p2 += 8 * p2_linesize;
276  }
277  emms_c();
278  mafd = nb_sad ? (double)sad / nb_sad : 0;
279  diff = fabs(mafd - select->prev_mafd);
280  ret = av_clipf(FFMIN(mafd, diff) / 100., 0, 1);
281  select->prev_mafd = mafd;
282  av_frame_free(&prev_picref);
283  }
284  select->prev_picref = av_frame_clone(frame);
285  return ret;
286 }
287 
288  static double get_concatdec_select(AVFrame *frame, int64_t pts)
289 {
290  AVDictionary *metadata = frame->metadata;
291  AVDictionaryEntry *start_time_entry = av_dict_get(metadata, "lavf.concatdec.start_time", NULL, 0);
292  AVDictionaryEntry *duration_entry = av_dict_get(metadata, "lavf.concatdec.duration", NULL, 0);
293  if (start_time_entry) {
294  int64_t start_time = strtoll(start_time_entry->value, NULL, 10);
295  if (pts >= start_time) {
296  if (duration_entry) {
297  int64_t duration = strtoll(duration_entry->value, NULL, 10);
298  if (pts < start_time + duration)
299  return -1;
300  else
301  return 0;
302  }
303  return -1;
304  }
305  return 0;
306  }
307  return NAN;
308 }
309 
310  #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
311  #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
312 
313  static void select_frame(AVFilterContext *ctx, AVFrame *frame)
314 {
315  SelectContext *select = ctx->priv;
316  AVFilterLink *inlink = ctx->inputs[0];
317  double res;
318 
319  if (isnan(select->var_values[VAR_START_PTS]))
320  select->var_values[VAR_START_PTS] = TS2D(frame->pts);
321  if (isnan(select->var_values[VAR_START_T]))
322  select->var_values[VAR_START_T] = TS2D(frame->pts) * av_q2d(inlink->time_base);
323 
324  select->var_values[VAR_N ] = inlink->frame_count_out;
325  select->var_values[VAR_PTS] = TS2D(frame->pts);
326  select->var_values[VAR_T ] = TS2D(frame->pts) * av_q2d(inlink->time_base);
327  select->var_values[VAR_POS] = frame->pkt_pos == -1 ? NAN : frame->pkt_pos;
328  select->var_values[VAR_KEY] = frame->key_frame;
329  select->var_values[VAR_CONCATDEC_SELECT] = get_concatdec_select(frame, av_rescale_q(frame->pts, inlink->time_base, AV_TIME_BASE_Q));
330 
331  switch (inlink->type) {
332  case AVMEDIA_TYPE_AUDIO:
333  select->var_values[VAR_SAMPLES_N] = frame->nb_samples;
334  break;
335 
336  case AVMEDIA_TYPE_VIDEO:
337  select->var_values[VAR_INTERLACE_TYPE] =
338  !frame->interlaced_frame ? INTERLACE_TYPE_P :
339  frame->top_field_first ? INTERLACE_TYPE_T : INTERLACE_TYPE_B;
340  select->var_values[VAR_PICT_TYPE] = frame->pict_type;
341  if (select->do_scene_detect) {
342  char buf[32];
343  select->var_values[VAR_SCENE] = get_scene_score(ctx, frame);
344  // TODO: document metadata
345  snprintf(buf, sizeof(buf), "%f", select->var_values[VAR_SCENE]);
346  av_dict_set(&frame->metadata, "lavfi.scene_score", buf, 0);
347  }
348  break;
349  }
350 
351  select->select = res = av_expr_eval(select->expr, select->var_values, NULL);
352  av_log(inlink->dst, AV_LOG_DEBUG,
353  "n:%f pts:%f t:%f key:%d",
354  select->var_values[VAR_N],
355  select->var_values[VAR_PTS],
356  select->var_values[VAR_T],
357  frame->key_frame);
358 
359  switch (inlink->type) {
360  case AVMEDIA_TYPE_VIDEO:
361  av_log(inlink->dst, AV_LOG_DEBUG, " interlace_type:%c pict_type:%c scene:%f",
362  (!frame->interlaced_frame) ? 'P' :
363  frame->top_field_first ? 'T' : 'B',
364  av_get_picture_type_char(frame->pict_type),
365  select->var_values[VAR_SCENE]);
366  break;
367  case AVMEDIA_TYPE_AUDIO:
368  av_log(inlink->dst, AV_LOG_DEBUG, " samples_n:%d consumed_samples_n:%f",
369  frame->nb_samples,
370  select->var_values[VAR_CONSUMED_SAMPLES_N]);
371  break;
372  }
373 
374  if (res == 0) {
375  select->select_out = -1; /* drop */
376  } else if (isnan(res) || res < 0) {
377  select->select_out = 0; /* first output */
378  } else {
379  select->select_out = FFMIN(ceilf(res)-1, select->nb_outputs-1); /* other outputs */
380  }
381 
382  av_log(inlink->dst, AV_LOG_DEBUG, " -> select:%f select_out:%d\n", res, select->select_out);
383 
384  if (res) {
385  select->var_values[VAR_PREV_SELECTED_N] = select->var_values[VAR_N];
386  select->var_values[VAR_PREV_SELECTED_PTS] = select->var_values[VAR_PTS];
387  select->var_values[VAR_PREV_SELECTED_T] = select->var_values[VAR_T];
388  select->var_values[VAR_SELECTED_N] += 1.0;
389  if (inlink->type == AVMEDIA_TYPE_AUDIO)
390  select->var_values[VAR_CONSUMED_SAMPLES_N] += frame->nb_samples;
391  }
392 
393  select->var_values[VAR_PREV_PTS] = select->var_values[VAR_PTS];
394  select->var_values[VAR_PREV_T] = select->var_values[VAR_T];
395 }
396 
397  static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
398 {
399  AVFilterContext *ctx = inlink->dst;
400  SelectContext *select = ctx->priv;
401 
402  select_frame(ctx, frame);
403  if (select->select)
404  return ff_filter_frame(ctx->outputs[select->select_out], frame);
405 
406  av_frame_free(&frame);
407  return 0;
408 }
409 
410  static int request_frame(AVFilterLink *outlink)
411 {
412  AVFilterLink *inlink = outlink->src->inputs[0];
413  int ret = ff_request_frame(inlink);
414  return ret;
415 }
416 
417  static av_cold void uninit(AVFilterContext *ctx)
418 {
419  SelectContext *select = ctx->priv;
420  int i;
421 
422  av_expr_free(select->expr);
423  select->expr = NULL;
424 
425  for (i = 0; i < ctx->nb_outputs; i++)
426  av_freep(&ctx->output_pads[i].name);
427 
428  if (select->do_scene_detect) {
429  av_frame_free(&select->prev_picref);
430  }
431 }
432 
433  static int query_formats(AVFilterContext *ctx)
434 {
435  SelectContext *select = ctx->priv;
436 
437  if (!select->do_scene_detect) {
438  return ff_default_query_formats(ctx);
439  } else {
440  int ret;
441  static const enum AVPixelFormat pix_fmts[] = {
442  AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24,
443  AV_PIX_FMT_NONE
444  };
445  AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
446 
447  if (!fmts_list)
448  return AVERROR(ENOMEM);
449  ret = ff_set_common_formats(ctx, fmts_list);
450  if (ret < 0)
451  return ret;
452  }
453  return 0;
454 }
455 
456 #if CONFIG_ASELECT_FILTER
457 
458 DEFINE_OPTIONS(aselect, AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM);
459 AVFILTER_DEFINE_CLASS(aselect);
460 
461 static av_cold int aselect_init(AVFilterContext *ctx)
462 {
463  SelectContext *select = ctx->priv;
464  int ret;
465 
466  if ((ret = init(ctx)) < 0)
467  return ret;
468 
469  if (select->do_scene_detect) {
470  av_log(ctx, AV_LOG_ERROR, "Scene detection is ignored in aselect filter\n");
471  return AVERROR(EINVAL);
472  }
473 
474  return 0;
475 }
476 
477 static const AVFilterPad avfilter_af_aselect_inputs[] = {
478  {
479  .name = "default",
480  .type = AVMEDIA_TYPE_AUDIO,
481  .config_props = config_input,
482  .filter_frame = filter_frame,
483  },
484  { NULL }
485 };
486 
487 AVFilter ff_af_aselect = {
488  .name = "aselect",
489  .description = NULL_IF_CONFIG_SMALL("Select audio frames to pass in output."),
490  .init = aselect_init,
491  .uninit = uninit,
492  .priv_size = sizeof(SelectContext),
493  .inputs = avfilter_af_aselect_inputs,
494  .priv_class = &aselect_class,
495  .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
496 };
497 #endif /* CONFIG_ASELECT_FILTER */
498 
499 #if CONFIG_SELECT_FILTER
500 
501 DEFINE_OPTIONS(select, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM);
502 AVFILTER_DEFINE_CLASS(select);
503 
504 static av_cold int select_init(AVFilterContext *ctx)
505 {
506  int ret;
507 
508  if ((ret = init(ctx)) < 0)
509  return ret;
510 
511  return 0;
512 }
513 
514 static const AVFilterPad avfilter_vf_select_inputs[] = {
515  {
516  .name = "default",
517  .type = AVMEDIA_TYPE_VIDEO,
518  .config_props = config_input,
519  .filter_frame = filter_frame,
520  },
521  { NULL }
522 };
523 
524 AVFilter ff_vf_select = {
525  .name = "select",
526  .description = NULL_IF_CONFIG_SMALL("Select video frames to pass in output."),
527  .init = select_init,
528  .uninit = uninit,
529  .query_formats = query_formats,
530  .priv_size = sizeof(SelectContext),
531  .priv_class = &select_class,
532  .inputs = avfilter_vf_select_inputs,
533  .flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
534 };
535 #endif /* CONFIG_SELECT_FILTER */
NULL
#define NULL
Definition: coverity.c:32
AV_PICTURE_TYPE_BI
BI type.
Definition: avutil.h:280
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:218
AVFrame::pkt_pos
int64_t pkt_pos
reordered pos from the last AVPacket that has been input into the decoder
Definition: frame.h:490
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: f_select.c:417
avfilter.h
Main libavfilter public API header.
AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:64
AV_OPT_FLAG_AUDIO_PARAM
#define AV_OPT_FLAG_AUDIO_PARAM
Definition: opt.h:278
INTERLACE_TYPE_P
#define INTERLACE_TYPE_P
Definition: f_select.c:198
VAR_TB
Definition: f_select.c:91
AVFilterPad::type
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:65
av_expr_parse
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition: eval.c:679
get_concatdec_select
static double get_concatdec_select(AVFrame *frame, int64_t pts)
Definition: f_select.c:288
ff_make_format_list
AVFilterFormats * ff_make_format_list(const int *fmts)
Create a list of supported formats.
Definition: formats.c:283
AV_PICTURE_TYPE_SI
Switching Intra.
Definition: avutil.h:278
AVFilterPad::name
const char * name
Pad name.
Definition: internal.h:60
AVFilterContext::inputs
AVFilterLink ** inputs
array of pointers to input links
Definition: avfilter.h:346
ff_filter_frame
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1080
AVFilterContext::output_pads
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:349
start_time
static int64_t start_time
Definition: ffplay.c:327
uint8_t
uint8_t
Definition: audio_convert.c:194
av_cold
#define av_cold
Definition: attributes.h:82
AVFilterPad::request_frame
int(* request_frame)(AVFilterLink *link)
Frame request callback.
Definition: internal.h:113
VAR_PTS
Definition: f_select.c:93
opt.h
AVOptions.
select_frame
static void select_frame(AVFilterContext *ctx, AVFrame *frame)
Definition: f_select.c:313
VAR_S
Definition: f_select.c:107
VAR_SP
Definition: f_select.c:109
AVFrame::pts
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:311
AVExpr
Definition: eval.c:157
SelectContext::nb_outputs
int nb_outputs
Definition: f_select.c:153
INTERLACE_TYPE_T
#define INTERLACE_TYPE_T
Definition: f_select.c:199
duration
int64_t duration
Definition: movenc.c:63
frame
static AVFrame * frame
Definition: demuxing_decoding.c:53
SelectContext::expr_str
char * expr_str
Definition: f_select.c:144
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:40
VAR_B
Definition: f_select.c:106
av_q2d
static double av_q2d(AVRational a)
Convert an AVRational to a double.
Definition: rational.h:104
flags
static int flags
Definition: log.c:55
av_get_picture_type_char
char av_get_picture_type_char(enum AVPictureType pict_type)
Return a single letter to describe the given picture type pict_type.
Definition: utils.c:88
VAR_KEY
Definition: f_select.c:132
AVFrame::metadata
AVDictionary * metadata
metadata.
Definition: frame.h:505
AVFrame::interlaced_frame
int interlaced_frame
The content of the picture is interlaced.
Definition: frame.h:365
AVFILTER_FLAG_DYNAMIC_OUTPUTS
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
Definition: avfilter.h:111
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:28
VAR_I
Definition: f_select.c:104
ff_vf_select
AVFilter ff_vf_select
AVFilterPad
A filter pad used for either input or output.
Definition: internal.h:54
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
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: f_select.c:433
AVDictionary
Definition: dict.c:30
AVFrame::width
int width
Definition: frame.h:276
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
ff_set_common_formats
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
A helper for query_formats() which sets all links to the same list of formats.
Definition: formats.c:568
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:291
SelectContext::var_values
double var_values[VAR_VARS_NB]
Definition: f_select.c:146
AVERROR
#define AVERROR(e)
Definition: error.h:43
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
AVFilterContext::nb_outputs
unsigned nb_outputs
number of output pads
Definition: avfilter.h:351
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:186
AVFilterContext::priv
void * priv
private data for use by the filter
Definition: avfilter.h:353
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
VAR_P
Definition: f_select.c:105
av_pixelutils_sad_fn
int(* av_pixelutils_sad_fn)(const uint8_t *src1, ptrdiff_t stride1, const uint8_t *src2, ptrdiff_t stride2)
Sum of abs(src1[x] - src2[x])
Definition: pixelutils.h:29
SelectContext::select_out
int select_out
mark the selected output pad index
Definition: f_select.c:152
av_asprintf
char * av_asprintf(const char *fmt,...)
Definition: avstring.c:113
var_name
var_name
Definition: aeval.c:46
config_input
static int config_input(AVFilterLink *inlink)
Definition: f_select.c:202
internal.h
common internal API header
AV_PICTURE_TYPE_I
Intra.
Definition: avutil.h:274
AVFrame::pict_type
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:301
NAN
#define NAN
Definition: mathematics.h:64
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
ctx
AVFormatContext * ctx
Definition: movenc.c:48
SelectContext::sad
av_pixelutils_sad_fn sad
Sum of the absolute difference function (scene detect only)
Definition: f_select.c:148
AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:65
inputs
static const AVFilterPad inputs[]
Definition: af_acontrast.c:193
av_frame_clone
AVFrame * av_frame_clone(const AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:538
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: f_select.c:397
AVFilter::inputs
const AVFilterPad * inputs
List of inputs, terminated by a zeroed element.
Definition: avfilter.h:164
ff_default_query_formats
int ff_default_query_formats(AVFilterContext *ctx)
Definition: formats.c:597
av_expr_free
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Definition: eval.c:334
AV_TIME_BASE_Q
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition: avutil.h:260
AVFrame::linesize
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:249
AV_OPT_FLAG_VIDEO_PARAM
#define AV_OPT_FLAG_VIDEO_PARAM
Definition: opt.h:279
get_scene_score
static double get_scene_score(AVFilterContext *ctx, AVFrame *frame)
Definition: f_select.c:252
fifo.h
a very simple circular buffer FIFO implementation
buf
void * buf
Definition: avisynth_c.h:690
SelectContext::prev_mafd
double prev_mafd
previous MAFD (scene detect only)
Definition: f_select.c:149
ff_af_aselect
AVFilter ff_af_aselect
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:70
av_pixelutils_get_sad_fn
av_pixelutils_sad_fn av_pixelutils_get_sad_fn(int w_bits, int h_bits, int aligned, void *log_ctx)
Get a potentially optimized pointer to a Sum-of-absolute-differences function (see the av_pixelutils_...
Definition: pixelutils.c:64
VAR_T
Definition: f_select.c:98
AV_PICTURE_TYPE_SP
Switching Predicted.
Definition: avutil.h:279
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:67
AVFilter
Filter definition.
Definition: avfilter.h:144
VAR_SI
Definition: f_select.c:108
isnan
#define isnan(x)
Definition: libm.h:340
TS2D
#define TS2D(ts)
Definition: f_select.c:311
VAR_POS
Definition: f_select.c:133
AVFilter::name
const char * name
Filter name.
Definition: avfilter.h:148
snprintf
#define snprintf
Definition: snprintf.h:34
AVFilterContext::outputs
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:350
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
VAR_BI
Definition: f_select.c:110
pts
static int64_t pts
Definition: transcode_aac.c:647
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: f_select.c:410
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:232
SelectContext::do_scene_detect
int do_scene_detect
1 if the expression requires scene detection variables, 0 otherwise
Definition: f_select.c:147
SelectContext::prev_picref
AVFrame * prev_picref
previous frame (scene detect only)
Definition: f_select.c:150
DEFINE_OPTIONS
#define DEFINE_OPTIONS(filt_name, FLAGS)
Definition: f_select.c:157
VAR_N
Definition: f_select.c:128
init
static av_cold int init(AVFilterContext *ctx)
Definition: f_select.c:168
AV_PICTURE_TYPE_B
Bi-dir predicted.
Definition: avutil.h:276
diff
static av_always_inline int diff(const uint32_t a, const uint32_t b)
Definition: vf_palettegen.c:136
AVDictionaryEntry::value
char * value
Definition: dict.h:87
AVFrame::top_field_first
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:370
av_expr_eval
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
Definition: eval.c:734
AVFILTER_DEFINE_CLASS
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:334
SelectContext::expr
AVExpr * expr
Definition: f_select.c:145
AVFrame::key_frame
int key_frame
1 -> keyframe, 0-> not
Definition: frame.h:296
AVFilterFormats
A list of supported formats for one end of a filter link.
Definition: formats.h:64
AVFilterContext
An instance of a filter.
Definition: avfilter.h:338
var_names
static const char *const var_names[]
Definition: f_select.c:38
AVFrame::height
int height
Definition: frame.h:276
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
ff_request_frame
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Definition: avfilter.c:407
INTERLACE_TYPE_B
#define INTERLACE_TYPE_B
Definition: f_select.c:200
internal.h
internal API functions
ff_insert_outpad
static int ff_insert_outpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
Insert a new output pad for the filter.
Definition: internal.h:285
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
SelectContext::select
double select
Definition: f_select.c:151
AVFrame::nb_samples
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:284
AVFilterContext::filter
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:341
AV_PICTURE_TYPE_P
Predicted.
Definition: avutil.h:275
eval.h
simple arithmetic expression evaluator

Generated on Sun May 13 2018 02:04:00 for FFmpeg by   doxygen 1.8.6

AltStyle によって変換されたページ (->オリジナル) /