FFmpeg  4.0
ffmpeg_filter.c
Go to the documentation of this file.
1 /*
2  * ffmpeg filter configuration
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 #include <stdint.h>
22 
23 #include "ffmpeg.h"
24 
25 #include "libavfilter/avfilter.h"
26 #include "libavfilter/buffersink.h"
27 #include "libavfilter/buffersrc.h"
28 
30 
31 #include "libavutil/avassert.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/bprint.h"
35 #include "libavutil/display.h"
36 #include "libavutil/opt.h"
37 #include "libavutil/pixdesc.h"
38 #include "libavutil/pixfmt.h"
39 #include "libavutil/imgutils.h"
40 #include "libavutil/samplefmt.h"
41 
42 static const enum AVPixelFormat *get_compliance_unofficial_pix_fmts(enum AVCodecID codec_id, const enum AVPixelFormat default_formats[])
43 {
44  static const enum AVPixelFormat mjpeg_formats[] =
48  static const enum AVPixelFormat ljpeg_formats[] =
52  AV_PIX_FMT_NONE};
53 
54  if (codec_id == AV_CODEC_ID_MJPEG) {
55  return mjpeg_formats;
56  } else if (codec_id == AV_CODEC_ID_LJPEG) {
57  return ljpeg_formats;
58  } else {
59  return default_formats;
60  }
61 }
62 
64 {
65  if (codec && codec->pix_fmts) {
66  const enum AVPixelFormat *p = codec->pix_fmts;
68  int has_alpha = desc ? desc->nb_components % 2 == 0 : 0;
69  enum AVPixelFormat best= AV_PIX_FMT_NONE;
70 
73  }
74  for (; *p != AV_PIX_FMT_NONE; p++) {
75  best= avcodec_find_best_pix_fmt_of_2(best, *p, target, has_alpha, NULL);
76  if (*p == target)
77  break;
78  }
79  if (*p == AV_PIX_FMT_NONE) {
80  if (target != AV_PIX_FMT_NONE)
82  "Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'\n",
83  av_get_pix_fmt_name(target),
84  codec->name,
85  av_get_pix_fmt_name(best));
86  return best;
87  }
88  }
89  return target;
90 }
91 
93 {
94  if (codec && codec->sample_fmts) {
95  const enum AVSampleFormat *p = codec->sample_fmts;
96  for (; *p != -1; p++) {
97  if (*p == st->codecpar->format)
98  break;
99  }
100  if (*p == -1) {
102  av_log(NULL, AV_LOG_ERROR, "Conversion will not be lossless.\n");
105  "Incompatible sample format '%s' for codec '%s', auto-selecting format '%s'\n",
107  codec->name,
109  st->codecpar->format = codec->sample_fmts[0];
110  }
111  }
112 }
113 
114 static char *choose_pix_fmts(OutputFilter *ofilter)
115 {
116  OutputStream *ost = ofilter->ost;
117  AVDictionaryEntry *strict_dict = av_dict_get(ost->encoder_opts, "strict", NULL, 0);
118  if (strict_dict)
119  // used by choose_pixel_fmt() and below
120  av_opt_set(ost->enc_ctx, "strict", strict_dict->value, 0);
121 
122  if (ost->keep_pix_fmt) {
125  if (ost->enc_ctx->pix_fmt == AV_PIX_FMT_NONE)
126  return NULL;
128  }
129  if (ost->enc_ctx->pix_fmt != AV_PIX_FMT_NONE) {
130  return av_strdup(av_get_pix_fmt_name(choose_pixel_fmt(ost->st, ost->enc_ctx, ost->enc, ost->enc_ctx->pix_fmt)));
131  } else if (ost->enc && ost->enc->pix_fmts) {
132  const enum AVPixelFormat *p;
133  AVIOContext *s = NULL;
134  uint8_t *ret;
135  int len;
136 
137  if (avio_open_dyn_buf(&s) < 0)
138  exit_program(1);
139 
140  p = ost->enc->pix_fmts;
143  }
144 
145  for (; *p != AV_PIX_FMT_NONE; p++) {
146  const char *name = av_get_pix_fmt_name(*p);
147  avio_printf(s, "%s|", name);
148  }
149  len = avio_close_dyn_buf(s, &ret);
150  ret[len - 1] = 0;
151  return ret;
152  } else
153  return NULL;
154 }
155 
156 /* Define a function for building a string containing a list of
157  * allowed formats. */
158 #define DEF_CHOOSE_FORMAT(suffix, type, var, supported_list, none, get_name) \
159 static char *choose_ ## suffix (OutputFilter *ofilter) \
160 { \
161  if (ofilter->var != none) { \
162  get_name(ofilter->var); \
163  return av_strdup(name); \
164  } else if (ofilter->supported_list) { \
165  const type *p; \
166  AVIOContext *s = NULL; \
167  uint8_t *ret; \
168  int len; \
169  \
170  if (avio_open_dyn_buf(&s) < 0) \
171  exit_program(1); \
172  \
173  for (p = ofilter->supported_list; *p != none; p++) { \
174  get_name(*p); \
175  avio_printf(s, "%s|", name); \
176  } \
177  len = avio_close_dyn_buf(s, &ret); \
178  ret[len - 1] = 0; \
179  return ret; \
180  } else \
181  return NULL; \
182 }
183 
184 //DEF_CHOOSE_FORMAT(pix_fmts, enum AVPixelFormat, format, formats, AV_PIX_FMT_NONE,
185 // GET_PIX_FMT_NAME)
186 
189 
192 
193 DEF_CHOOSE_FORMAT(channel_layouts, uint64_t, channel_layout, channel_layouts, 0,
195 
197 {
198  FilterGraph *fg = av_mallocz(sizeof(*fg));
199 
200  if (!fg)
201  exit_program(1);
202  fg->index = nb_filtergraphs;
203 
204  GROW_ARRAY(fg->outputs, fg->nb_outputs);
205  if (!(fg->outputs[0] = av_mallocz(sizeof(*fg->outputs[0]))))
206  exit_program(1);
207  fg->outputs[0]->ost = ost;
208  fg->outputs[0]->graph = fg;
209  fg->outputs[0]->format = -1;
210 
211  ost->filter = fg->outputs[0];
212 
213  GROW_ARRAY(fg->inputs, fg->nb_inputs);
214  if (!(fg->inputs[0] = av_mallocz(sizeof(*fg->inputs[0]))))
215  exit_program(1);
216  fg->inputs[0]->ist = ist;
217  fg->inputs[0]->graph = fg;
218  fg->inputs[0]->format = -1;
219 
220  fg->inputs[0]->frame_queue = av_fifo_alloc(8 * sizeof(AVFrame*));
221  if (!fg->inputs[0]->frame_queue)
222  exit_program(1);
223 
224  GROW_ARRAY(ist->filters, ist->nb_filters);
225  ist->filters[ist->nb_filters - 1] = fg->inputs[0];
226 
228  filtergraphs[nb_filtergraphs - 1] = fg;
229 
230  return 0;
231 }
232 
233 static char *describe_filter_link(FilterGraph *fg, AVFilterInOut *inout, int in)
234 {
235  AVFilterContext *ctx = inout->filter_ctx;
236  AVFilterPad *pads = in ? ctx->input_pads : ctx->output_pads;
237  int nb_pads = in ? ctx->nb_inputs : ctx->nb_outputs;
238  AVIOContext *pb;
239  uint8_t *res = NULL;
240 
241  if (avio_open_dyn_buf(&pb) < 0)
242  exit_program(1);
243 
244  avio_printf(pb, "%s", ctx->filter->name);
245  if (nb_pads > 1)
246  avio_printf(pb, ":%s", avfilter_pad_get_name(pads, inout->pad_idx));
247  avio_w8(pb, 0);
248  avio_close_dyn_buf(pb, &res);
249  return res;
250 }
251 
253 {
254  InputStream *ist = NULL;
256  int i;
257 
258  // TODO: support other filter types
259  if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
260  av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported "
261  "currently.\n");
262  exit_program(1);
263  }
264 
265  if (in->name) {
267  AVStream *st = NULL;
268  char *p;
269  int file_idx = strtol(in->name, &p, 0);
270 
271  if (file_idx < 0 || file_idx >= nb_input_files) {
272  av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n",
273  file_idx, fg->graph_desc);
274  exit_program(1);
275  }
276  s = input_files[file_idx]->ctx;
277 
278  for (i = 0; i < s->nb_streams; i++) {
279  enum AVMediaType stream_type = s->streams[i]->codecpar->codec_type;
280  if (stream_type != type &&
281  !(stream_type == AVMEDIA_TYPE_SUBTITLE &&
282  type == AVMEDIA_TYPE_VIDEO /* sub2video hack */))
283  continue;
284  if (check_stream_specifier(s, s->streams[i], *p == ':' ? p + 1 : p) == 1) {
285  st = s->streams[i];
286  break;
287  }
288  }
289  if (!st) {
290  av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
291  "matches no streams.\n", p, fg->graph_desc);
292  exit_program(1);
293  }
294  ist = input_streams[input_files[file_idx]->ist_index + st->index];
295  } else {
296  /* find the first unused stream of corresponding type */
297  for (i = 0; i < nb_input_streams; i++) {
298  ist = input_streams[i];
299  if (ist->dec_ctx->codec_type == type && ist->discard)
300  break;
301  }
302  if (i == nb_input_streams) {
303  av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for "
304  "unlabeled input pad %d on filter %s\n", in->pad_idx,
305  in->filter_ctx->name);
306  exit_program(1);
307  }
308  }
309  av_assert0(ist);
310 
311  ist->discard = 0;
313  ist->st->discard = AVDISCARD_NONE;
314 
315  GROW_ARRAY(fg->inputs, fg->nb_inputs);
316  if (!(fg->inputs[fg->nb_inputs - 1] = av_mallocz(sizeof(*fg->inputs[0]))))
317  exit_program(1);
318  fg->inputs[fg->nb_inputs - 1]->ist = ist;
319  fg->inputs[fg->nb_inputs - 1]->graph = fg;
320  fg->inputs[fg->nb_inputs - 1]->format = -1;
321  fg->inputs[fg->nb_inputs - 1]->type = ist->st->codecpar->codec_type;
322  fg->inputs[fg->nb_inputs - 1]->name = describe_filter_link(fg, in, 1);
323 
324  fg->inputs[fg->nb_inputs - 1]->frame_queue = av_fifo_alloc(8 * sizeof(AVFrame*));
325  if (!fg->inputs[fg->nb_inputs - 1]->frame_queue)
326  exit_program(1);
327 
328  GROW_ARRAY(ist->filters, ist->nb_filters);
329  ist->filters[ist->nb_filters - 1] = fg->inputs[fg->nb_inputs - 1];
330 }
331 
333 {
334  AVFilterInOut *inputs, *outputs, *cur;
335  AVFilterGraph *graph;
336  int ret = 0;
337 
338  /* this graph is only used for determining the kinds of inputs
339  * and outputs we have, and is discarded on exit from this function */
340  graph = avfilter_graph_alloc();
341  if (!graph)
342  return AVERROR(ENOMEM);
343  graph->nb_threads = 1;
344 
345  ret = avfilter_graph_parse2(graph, fg->graph_desc, &inputs, &outputs);
346  if (ret < 0)
347  goto fail;
348 
349  for (cur = inputs; cur; cur = cur->next)
350  init_input_filter(fg, cur);
351 
352  for (cur = outputs; cur;) {
353  GROW_ARRAY(fg->outputs, fg->nb_outputs);
354  fg->outputs[fg->nb_outputs - 1] = av_mallocz(sizeof(*fg->outputs[0]));
355  if (!fg->outputs[fg->nb_outputs - 1])
356  exit_program(1);
357 
358  fg->outputs[fg->nb_outputs - 1]->graph = fg;
359  fg->outputs[fg->nb_outputs - 1]->out_tmp = cur;
361  cur->pad_idx);
362  fg->outputs[fg->nb_outputs - 1]->name = describe_filter_link(fg, cur, 0);
363  cur = cur->next;
364  fg->outputs[fg->nb_outputs - 1]->out_tmp->next = NULL;
365  }
366 
367 fail:
368  avfilter_inout_free(&inputs);
369  avfilter_graph_free(&graph);
370  return ret;
371 }
372 
373 static int insert_trim(int64_t start_time, int64_t duration,
374  AVFilterContext **last_filter, int *pad_idx,
375  const char *filter_name)
376 {
377  AVFilterGraph *graph = (*last_filter)->graph;
379  const AVFilter *trim;
380  enum AVMediaType type = avfilter_pad_get_type((*last_filter)->output_pads, *pad_idx);
381  const char *name = (type == AVMEDIA_TYPE_VIDEO) ? "trim" : "atrim";
382  int ret = 0;
383 
384  if (duration == INT64_MAX && start_time == AV_NOPTS_VALUE)
385  return 0;
386 
387  trim = avfilter_get_by_name(name);
388  if (!trim) {
389  av_log(NULL, AV_LOG_ERROR, "%s filter not present, cannot limit "
390  "recording time.\n", name);
392  }
393 
394  ctx = avfilter_graph_alloc_filter(graph, trim, filter_name);
395  if (!ctx)
396  return AVERROR(ENOMEM);
397 
398  if (duration != INT64_MAX) {
399  ret = av_opt_set_int(ctx, "durationi", duration,
401  }
402  if (ret >= 0 && start_time != AV_NOPTS_VALUE) {
403  ret = av_opt_set_int(ctx, "starti", start_time,
405  }
406  if (ret < 0) {
407  av_log(ctx, AV_LOG_ERROR, "Error configuring the %s filter", name);
408  return ret;
409  }
410 
411  ret = avfilter_init_str(ctx, NULL);
412  if (ret < 0)
413  return ret;
414 
415  ret = avfilter_link(*last_filter, *pad_idx, ctx, 0);
416  if (ret < 0)
417  return ret;
418 
419  *last_filter = ctx;
420  *pad_idx = 0;
421  return 0;
422 }
423 
424 static int insert_filter(AVFilterContext **last_filter, int *pad_idx,
425  const char *filter_name, const char *args)
426 {
427  AVFilterGraph *graph = (*last_filter)->graph;
429  int ret;
430 
431  ret = avfilter_graph_create_filter(&ctx,
432  avfilter_get_by_name(filter_name),
433  filter_name, args, NULL, graph);
434  if (ret < 0)
435  return ret;
436 
437  ret = avfilter_link(*last_filter, *pad_idx, ctx, 0);
438  if (ret < 0)
439  return ret;
440 
441  *last_filter = ctx;
442  *pad_idx = 0;
443  return 0;
444 }
445 
447 {
448  char *pix_fmts;
449  OutputStream *ost = ofilter->ost;
450  OutputFile *of = output_files[ost->file_index];
451  AVFilterContext *last_filter = out->filter_ctx;
452  int pad_idx = out->pad_idx;
453  int ret;
454  char name[255];
455 
456  snprintf(name, sizeof(name), "out_%d_%d", ost->file_index, ost->index);
457  ret = avfilter_graph_create_filter(&ofilter->filter,
458  avfilter_get_by_name("buffersink"),
459  name, NULL, NULL, fg->graph);
460 
461  if (ret < 0)
462  return ret;
463 
464  if (ofilter->width || ofilter->height) {
465  char args[255];
467  AVDictionaryEntry *e = NULL;
468 
469  snprintf(args, sizeof(args), "%d:%d",
470  ofilter->width, ofilter->height);
471 
472  while ((e = av_dict_get(ost->sws_dict, "", e,
474  av_strlcatf(args, sizeof(args), ":%s=%s", e->key, e->value);
475  }
476 
477  snprintf(name, sizeof(name), "scaler_out_%d_%d",
478  ost->file_index, ost->index);
479  if ((ret = avfilter_graph_create_filter(&filter, avfilter_get_by_name("scale"),
480  name, args, NULL, fg->graph)) < 0)
481  return ret;
482  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
483  return ret;
484 
485  last_filter = filter;
486  pad_idx = 0;
487  }
488 
489  if ((pix_fmts = choose_pix_fmts(ofilter))) {
491  snprintf(name, sizeof(name), "format_out_%d_%d",
492  ost->file_index, ost->index);
493  ret = avfilter_graph_create_filter(&filter,
494  avfilter_get_by_name("format"),
495  "format", pix_fmts, NULL, fg->graph);
496  av_freep(&pix_fmts);
497  if (ret < 0)
498  return ret;
499  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
500  return ret;
501 
502  last_filter = filter;
503  pad_idx = 0;
504  }
505 
506  if (ost->frame_rate.num && 0) {
507  AVFilterContext *fps;
508  char args[255];
509 
510  snprintf(args, sizeof(args), "fps=%d/%d", ost->frame_rate.num,
511  ost->frame_rate.den);
512  snprintf(name, sizeof(name), "fps_out_%d_%d",
513  ost->file_index, ost->index);
515  name, args, NULL, fg->graph);
516  if (ret < 0)
517  return ret;
518 
519  ret = avfilter_link(last_filter, pad_idx, fps, 0);
520  if (ret < 0)
521  return ret;
522  last_filter = fps;
523  pad_idx = 0;
524  }
525 
526  snprintf(name, sizeof(name), "trim_out_%d_%d",
527  ost->file_index, ost->index);
528  ret = insert_trim(of->start_time, of->recording_time,
529  &last_filter, &pad_idx, name);
530  if (ret < 0)
531  return ret;
532 
533 
534  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
535  return ret;
536 
537  return 0;
538 }
539 
541 {
542  OutputStream *ost = ofilter->ost;
543  OutputFile *of = output_files[ost->file_index];
544  AVCodecContext *codec = ost->enc_ctx;
545  AVFilterContext *last_filter = out->filter_ctx;
546  int pad_idx = out->pad_idx;
548  char name[255];
549  int ret;
550 
551  snprintf(name, sizeof(name), "out_%d_%d", ost->file_index, ost->index);
552  ret = avfilter_graph_create_filter(&ofilter->filter,
553  avfilter_get_by_name("abuffersink"),
554  name, NULL, NULL, fg->graph);
555  if (ret < 0)
556  return ret;
557  if ((ret = av_opt_set_int(ofilter->filter, "all_channel_counts", 1, AV_OPT_SEARCH_CHILDREN)) < 0)
558  return ret;
559 
560 #define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \
561  AVFilterContext *filt_ctx; \
562  \
563  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
564  "similarly to -af " filter_name "=%s.\n", arg); \
565  \
566  ret = avfilter_graph_create_filter(&filt_ctx, \
567  avfilter_get_by_name(filter_name), \
568  filter_name, arg, NULL, fg->graph); \
569  if (ret < 0) \
570  return ret; \
571  \
572  ret = avfilter_link(last_filter, pad_idx, filt_ctx, 0); \
573  if (ret < 0) \
574  return ret; \
575  \
576  last_filter = filt_ctx; \
577  pad_idx = 0; \
578 } while (0)
579  if (ost->audio_channels_mapped) {
580  int i;
581  AVBPrint pan_buf;
582  av_bprint_init(&pan_buf, 256, 8192);
583  av_bprintf(&pan_buf, "0x%"PRIx64,
585  for (i = 0; i < ost->audio_channels_mapped; i++)
586  if (ost->audio_channels_map[i] != -1)
587  av_bprintf(&pan_buf, "|c%d=c%d", i, ost->audio_channels_map[i]);
588 
589  AUTO_INSERT_FILTER("-map_channel", "pan", pan_buf.str);
590  av_bprint_finalize(&pan_buf, NULL);
591  }
592 
593  if (codec->channels && !codec->channel_layout)
595 
596  sample_fmts = choose_sample_fmts(ofilter);
597  sample_rates = choose_sample_rates(ofilter);
598  channel_layouts = choose_channel_layouts(ofilter);
599  if (sample_fmts || sample_rates || channel_layouts) {
601  char args[256];
602  args[0] = 0;
603 
604  if (sample_fmts)
605  av_strlcatf(args, sizeof(args), "sample_fmts=%s:",
606  sample_fmts);
607  if (sample_rates)
608  av_strlcatf(args, sizeof(args), "sample_rates=%s:",
609  sample_rates);
610  if (channel_layouts)
611  av_strlcatf(args, sizeof(args), "channel_layouts=%s:",
612  channel_layouts);
613 
614  av_freep(&sample_fmts);
615  av_freep(&sample_rates);
616  av_freep(&channel_layouts);
617 
618  snprintf(name, sizeof(name), "format_out_%d_%d",
619  ost->file_index, ost->index);
620  ret = avfilter_graph_create_filter(&format,
621  avfilter_get_by_name("aformat"),
622  name, args, NULL, fg->graph);
623  if (ret < 0)
624  return ret;
625 
626  ret = avfilter_link(last_filter, pad_idx, format, 0);
627  if (ret < 0)
628  return ret;
629 
630  last_filter = format;
631  pad_idx = 0;
632  }
633 
634  if (audio_volume != 256 && 0) {
635  char args[256];
636 
637  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
638  AUTO_INSERT_FILTER("-vol", "volume", args);
639  }
640 
641  if (ost->apad && of->shortest) {
642  char args[256];
643  int i;
644 
645  for (i=0; i<of->ctx->nb_streams; i++)
647  break;
648 
649  if (i<of->ctx->nb_streams) {
650  snprintf(args, sizeof(args), "%s", ost->apad);
651  AUTO_INSERT_FILTER("-apad", "apad", args);
652  }
653  }
654 
655  snprintf(name, sizeof(name), "trim for output stream %d:%d",
656  ost->file_index, ost->index);
657  ret = insert_trim(of->start_time, of->recording_time,
658  &last_filter, &pad_idx, name);
659  if (ret < 0)
660  return ret;
661 
662  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
663  return ret;
664 
665  return 0;
666 }
667 
669 {
670  if (!ofilter->ost) {
671  av_log(NULL, AV_LOG_FATAL, "Filter %s has an unconnected output\n", ofilter->name);
672  exit_program(1);
673  }
674 
675  switch (avfilter_pad_get_type(out->filter_ctx->output_pads, out->pad_idx)) {
676  case AVMEDIA_TYPE_VIDEO: return configure_output_video_filter(fg, ofilter, out);
677  case AVMEDIA_TYPE_AUDIO: return configure_output_audio_filter(fg, ofilter, out);
678  default: av_assert0(0);
679  }
680 }
681 
683 {
684  int i;
685  for (i = 0; i < nb_filtergraphs; i++) {
686  int n;
687  for (n = 0; n < filtergraphs[i]->nb_outputs; n++) {
688  OutputFilter *output = filtergraphs[i]->outputs[n];
689  if (!output->ost) {
690  av_log(NULL, AV_LOG_FATAL, "Filter %s has an unconnected output\n", output->name);
691  exit_program(1);
692  }
693  }
694  }
695 }
696 
697 static int sub2video_prepare(InputStream *ist, InputFilter *ifilter)
698 {
700  int i, w, h;
701 
702  /* Compute the size of the canvas for the subtitles stream.
703  If the subtitles codecpar has set a size, use it. Otherwise use the
704  maximum dimensions of the video streams in the same file. */
705  w = ifilter->width;
706  h = ifilter->height;
707  if (!(w && h)) {
708  for (i = 0; i < avf->nb_streams; i++) {
709  if (avf->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
710  w = FFMAX(w, avf->streams[i]->codecpar->width);
711  h = FFMAX(h, avf->streams[i]->codecpar->height);
712  }
713  }
714  if (!(w && h)) {
715  w = FFMAX(w, 720);
716  h = FFMAX(h, 576);
717  }
718  av_log(avf, AV_LOG_INFO, "sub2video: using %dx%d canvas\n", w, h);
719  }
720  ist->sub2video.w = ifilter->width = w;
721  ist->sub2video.h = ifilter->height = h;
722 
723  ifilter->width = ist->dec_ctx->width ? ist->dec_ctx->width : ist->sub2video.w;
724  ifilter->height = ist->dec_ctx->height ? ist->dec_ctx->height : ist->sub2video.h;
725 
726  /* rectangles are AV_PIX_FMT_PAL8, but we have no guarantee that the
727  palettes for all rectangles are identical or compatible */
728  ifilter->format = AV_PIX_FMT_RGB32;
729 
730  ist->sub2video.frame = av_frame_alloc();
731  if (!ist->sub2video.frame)
732  return AVERROR(ENOMEM);
733  ist->sub2video.last_pts = INT64_MIN;
734  return 0;
735 }
736 
738  AVFilterInOut *in)
739 {
740  AVFilterContext *last_filter;
741  const AVFilter *buffer_filt = avfilter_get_by_name("buffer");
742  InputStream *ist = ifilter->ist;
743  InputFile *f = input_files[ist->file_index];
744  AVRational tb = ist->framerate.num ? av_inv_q(ist->framerate) :
745  ist->st->time_base;
746  AVRational fr = ist->framerate;
747  AVRational sar;
748  AVBPrint args;
749  char name[255];
750  int ret, pad_idx = 0;
751  int64_t tsoffset = 0;
753 
754  if (!par)
755  return AVERROR(ENOMEM);
756  memset(par, 0, sizeof(*par));
757  par->format = AV_PIX_FMT_NONE;
758 
759  if (ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) {
760  av_log(NULL, AV_LOG_ERROR, "Cannot connect video filter to audio input\n");
761  ret = AVERROR(EINVAL);
762  goto fail;
763  }
764 
765  if (!fr.num)
766  fr = av_guess_frame_rate(input_files[ist->file_index]->ctx, ist->st, NULL);
767 
769  ret = sub2video_prepare(ist, ifilter);
770  if (ret < 0)
771  goto fail;
772  }
773 
774  sar = ifilter->sample_aspect_ratio;
775  if(!sar.den)
776  sar = (AVRational){0,1};
777  av_bprint_init(&args, 0, 1);
778  av_bprintf(&args,
779  "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:"
780  "pixel_aspect=%d/%d:sws_param=flags=%d",
781  ifilter->width, ifilter->height, ifilter->format,
782  tb.num, tb.den, sar.num, sar.den,
784  if (fr.num && fr.den)
785  av_bprintf(&args, ":frame_rate=%d/%d", fr.num, fr.den);
786  snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index,
787  ist->file_index, ist->st->index);
788 
789 
790  if ((ret = avfilter_graph_create_filter(&ifilter->filter, buffer_filt, name,
791  args.str, NULL, fg->graph)) < 0)
792  goto fail;
793  par->hw_frames_ctx = ifilter->hw_frames_ctx;
794  ret = av_buffersrc_parameters_set(ifilter->filter, par);
795  if (ret < 0)
796  goto fail;
797  av_freep(&par);
798  last_filter = ifilter->filter;
799 
800  if (ist->autorotate) {
801  double theta = get_rotation(ist->st);
802 
803  if (fabs(theta - 90) < 1.0) {
804  ret = insert_filter(&last_filter, &pad_idx, "transpose", "clock");
805  } else if (fabs(theta - 180) < 1.0) {
806  ret = insert_filter(&last_filter, &pad_idx, "hflip", NULL);
807  if (ret < 0)
808  return ret;
809  ret = insert_filter(&last_filter, &pad_idx, "vflip", NULL);
810  } else if (fabs(theta - 270) < 1.0) {
811  ret = insert_filter(&last_filter, &pad_idx, "transpose", "cclock");
812  } else if (fabs(theta) > 1.0) {
813  char rotate_buf[64];
814  snprintf(rotate_buf, sizeof(rotate_buf), "%f*PI/180", theta);
815  ret = insert_filter(&last_filter, &pad_idx, "rotate", rotate_buf);
816  }
817  if (ret < 0)
818  return ret;
819  }
820 
821  if (do_deinterlace) {
822  AVFilterContext *yadif;
823 
824  snprintf(name, sizeof(name), "deinterlace_in_%d_%d",
825  ist->file_index, ist->st->index);
826  if ((ret = avfilter_graph_create_filter(&yadif,
827  avfilter_get_by_name("yadif"),
828  name, "", NULL,
829  fg->graph)) < 0)
830  return ret;
831 
832  if ((ret = avfilter_link(last_filter, 0, yadif, 0)) < 0)
833  return ret;
834 
835  last_filter = yadif;
836  }
837 
838  snprintf(name, sizeof(name), "trim_in_%d_%d",
839  ist->file_index, ist->st->index);
840  if (copy_ts) {
841  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
843  tsoffset += f->ctx->start_time;
844  }
845  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
846  AV_NOPTS_VALUE : tsoffset, f->recording_time,
847  &last_filter, &pad_idx, name);
848  if (ret < 0)
849  return ret;
850 
851  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
852  return ret;
853  return 0;
854 fail:
855  av_freep(&par);
856 
857  return ret;
858 }
859 
861  AVFilterInOut *in)
862 {
863  AVFilterContext *last_filter;
864  const AVFilter *abuffer_filt = avfilter_get_by_name("abuffer");
865  InputStream *ist = ifilter->ist;
866  InputFile *f = input_files[ist->file_index];
867  AVBPrint args;
868  char name[255];
869  int ret, pad_idx = 0;
870  int64_t tsoffset = 0;
871 
872  if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_AUDIO) {
873  av_log(NULL, AV_LOG_ERROR, "Cannot connect audio filter to non audio input\n");
874  return AVERROR(EINVAL);
875  }
876 
878  av_bprintf(&args, "time_base=%d/%d:sample_rate=%d:sample_fmt=%s",
879  1, ifilter->sample_rate,
880  ifilter->sample_rate,
881  av_get_sample_fmt_name(ifilter->format));
882  if (ifilter->channel_layout)
883  av_bprintf(&args, ":channel_layout=0x%"PRIx64,
884  ifilter->channel_layout);
885  else
886  av_bprintf(&args, ":channels=%d", ifilter->channels);
887  snprintf(name, sizeof(name), "graph_%d_in_%d_%d", fg->index,
888  ist->file_index, ist->st->index);
889 
890  if ((ret = avfilter_graph_create_filter(&ifilter->filter, abuffer_filt,
891  name, args.str, NULL,
892  fg->graph)) < 0)
893  return ret;
894  last_filter = ifilter->filter;
895 
896 #define AUTO_INSERT_FILTER_INPUT(opt_name, filter_name, arg) do { \
897  AVFilterContext *filt_ctx; \
898  \
899  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
900  "similarly to -af " filter_name "=%s.\n", arg); \
901  \
902  snprintf(name, sizeof(name), "graph_%d_%s_in_%d_%d", \
903  fg->index, filter_name, ist->file_index, ist->st->index); \
904  ret = avfilter_graph_create_filter(&filt_ctx, \
905  avfilter_get_by_name(filter_name), \
906  name, arg, NULL, fg->graph); \
907  if (ret < 0) \
908  return ret; \
909  \
910  ret = avfilter_link(last_filter, 0, filt_ctx, 0); \
911  if (ret < 0) \
912  return ret; \
913  \
914  last_filter = filt_ctx; \
915 } while (0)
916 
917  if (audio_sync_method > 0) {
918  char args[256] = {0};
919 
920  av_strlcatf(args, sizeof(args), "async=%d", audio_sync_method);
921  if (audio_drift_threshold != 0.1)
922  av_strlcatf(args, sizeof(args), ":min_hard_comp=%f", audio_drift_threshold);
923  if (!fg->reconfiguration)
924  av_strlcatf(args, sizeof(args), ":first_pts=0");
925  AUTO_INSERT_FILTER_INPUT("-async", "aresample", args);
926  }
927 
928 // if (ost->audio_channels_mapped) {
929 // int i;
930 // AVBPrint pan_buf;
931 // av_bprint_init(&pan_buf, 256, 8192);
932 // av_bprintf(&pan_buf, "0x%"PRIx64,
933 // av_get_default_channel_layout(ost->audio_channels_mapped));
934 // for (i = 0; i < ost->audio_channels_mapped; i++)
935 // if (ost->audio_channels_map[i] != -1)
936 // av_bprintf(&pan_buf, ":c%d=c%d", i, ost->audio_channels_map[i]);
937 // AUTO_INSERT_FILTER_INPUT("-map_channel", "pan", pan_buf.str);
938 // av_bprint_finalize(&pan_buf, NULL);
939 // }
940 
941  if (audio_volume != 256) {
942  char args[256];
943 
944  av_log(NULL, AV_LOG_WARNING, "-vol has been deprecated. Use the volume "
945  "audio filter instead.\n");
946 
947  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
948  AUTO_INSERT_FILTER_INPUT("-vol", "volume", args);
949  }
950 
951  snprintf(name, sizeof(name), "trim for input stream %d:%d",
952  ist->file_index, ist->st->index);
953  if (copy_ts) {
954  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
956  tsoffset += f->ctx->start_time;
957  }
958  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
959  AV_NOPTS_VALUE : tsoffset, f->recording_time,
960  &last_filter, &pad_idx, name);
961  if (ret < 0)
962  return ret;
963 
964  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
965  return ret;
966 
967  return 0;
968 }
969 
971  AVFilterInOut *in)
972 {
973  if (!ifilter->ist->dec) {
975  "No decoder for stream #%d:%d, filtering impossible\n",
976  ifilter->ist->file_index, ifilter->ist->st->index);
978  }
979  switch (avfilter_pad_get_type(in->filter_ctx->input_pads, in->pad_idx)) {
980  case AVMEDIA_TYPE_VIDEO: return configure_input_video_filter(fg, ifilter, in);
981  case AVMEDIA_TYPE_AUDIO: return configure_input_audio_filter(fg, ifilter, in);
982  default: av_assert0(0);
983  }
984 }
985 
987 {
988  int i;
989  for (i = 0; i < fg->nb_outputs; i++)
990  fg->outputs[i]->filter = (AVFilterContext *)NULL;
991  for (i = 0; i < fg->nb_inputs; i++)
992  fg->inputs[i]->filter = (AVFilterContext *)NULL;
994 }
995 
997 {
998  AVFilterInOut *inputs, *outputs, *cur;
999  int ret, i, simple = filtergraph_is_simple(fg);
1000  const char *graph_desc = simple ? fg->outputs[0]->ost->avfilter :
1001  fg->graph_desc;
1002 
1003  cleanup_filtergraph(fg);
1004  if (!(fg->graph = avfilter_graph_alloc()))
1005  return AVERROR(ENOMEM);
1006 
1007  if (simple) {
1008  OutputStream *ost = fg->outputs[0]->ost;
1009  char args[512];
1010  AVDictionaryEntry *e = NULL;
1011 
1013 
1014  args[0] = 0;
1015  while ((e = av_dict_get(ost->sws_dict, "", e,
1017  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
1018  }
1019  if (strlen(args))
1020  args[strlen(args)-1] = 0;
1021  fg->graph->scale_sws_opts = av_strdup(args);
1022 
1023  args[0] = 0;
1024  while ((e = av_dict_get(ost->swr_opts, "", e,
1026  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
1027  }
1028  if (strlen(args))
1029  args[strlen(args)-1] = 0;
1030  av_opt_set(fg->graph, "aresample_swr_opts", args, 0);
1031 
1032  args[0] = '\0';
1033  while ((e = av_dict_get(fg->outputs[0]->ost->resample_opts, "", e,
1035  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
1036  }
1037  if (strlen(args))
1038  args[strlen(args) - 1] = '\0';
1039 
1040  e = av_dict_get(ost->encoder_opts, "threads", NULL, 0);
1041  if (e)
1042  av_opt_set(fg->graph, "threads", e->value, 0);
1043  } else {
1045  }
1046 
1047  if ((ret = avfilter_graph_parse2(fg->graph, graph_desc, &inputs, &outputs)) < 0)
1048  goto fail;
1049 
1052  : hw_device_ctx;
1053  for (i = 0; i < fg->graph->nb_filters; i++) {
1054  fg->graph->filters[i]->hw_device_ctx = av_buffer_ref(device);
1055  if (!fg->graph->filters[i]->hw_device_ctx) {
1056  ret = AVERROR(ENOMEM);
1057  goto fail;
1058  }
1059  }
1060  }
1061 
1062  if (simple && (!inputs || inputs->next || !outputs || outputs->next)) {
1063  const char *num_inputs;
1064  const char *num_outputs;
1065  if (!outputs) {
1066  num_outputs = "0";
1067  } else if (outputs->next) {
1068  num_outputs = ">1";
1069  } else {
1070  num_outputs = "1";
1071  }
1072  if (!inputs) {
1073  num_inputs = "0";
1074  } else if (inputs->next) {
1075  num_inputs = ">1";
1076  } else {
1077  num_inputs = "1";
1078  }
1079  av_log(NULL, AV_LOG_ERROR, "Simple filtergraph '%s' was expected "
1080  "to have exactly 1 input and 1 output."
1081  " However, it had %s input(s) and %s output(s)."
1082  " Please adjust, or use a complex filtergraph (-filter_complex) instead.\n",
1083  graph_desc, num_inputs, num_outputs);
1084  ret = AVERROR(EINVAL);
1085  goto fail;
1086  }
1087 
1088  for (cur = inputs, i = 0; cur; cur = cur->next, i++)
1089  if ((ret = configure_input_filter(fg, fg->inputs[i], cur)) < 0) {
1090  avfilter_inout_free(&inputs);
1091  avfilter_inout_free(&outputs);
1092  goto fail;
1093  }
1094  avfilter_inout_free(&inputs);
1095 
1096  for (cur = outputs, i = 0; cur; cur = cur->next, i++)
1097  configure_output_filter(fg, fg->outputs[i], cur);
1098  avfilter_inout_free(&outputs);
1099 
1100  if ((ret = avfilter_graph_config(fg->graph, NULL)) < 0)
1101  goto fail;
1102 
1103  /* limit the lists of allowed formats to the ones selected, to
1104  * make sure they stay the same if the filtergraph is reconfigured later */
1105  for (i = 0; i < fg->nb_outputs; i++) {
1106  OutputFilter *ofilter = fg->outputs[i];
1107  AVFilterContext *sink = ofilter->filter;
1108 
1109  ofilter->format = av_buffersink_get_format(sink);
1110 
1111  ofilter->width = av_buffersink_get_w(sink);
1112  ofilter->height = av_buffersink_get_h(sink);
1113 
1114  ofilter->sample_rate = av_buffersink_get_sample_rate(sink);
1116  }
1117 
1118  fg->reconfiguration = 1;
1119 
1120  for (i = 0; i < fg->nb_outputs; i++) {
1121  OutputStream *ost = fg->outputs[i]->ost;
1122  if (!ost->enc) {
1123  /* identical to the same check in ffmpeg.c, needed because
1124  complex filter graphs are initialized earlier */
1125  av_log(NULL, AV_LOG_ERROR, "Encoder (codec %s) not found for output stream #%d:%d\n",
1126  avcodec_get_name(ost->st->codecpar->codec_id), ost->file_index, ost->index);
1127  ret = AVERROR(EINVAL);
1128  goto fail;
1129  }
1130  if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
1131  !(ost->enc->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE))
1133  ost->enc_ctx->frame_size);
1134  }
1135 
1136  for (i = 0; i < fg->nb_inputs; i++) {
1137  while (av_fifo_size(fg->inputs[i]->frame_queue)) {
1138  AVFrame *tmp;
1139  av_fifo_generic_read(fg->inputs[i]->frame_queue, &tmp, sizeof(tmp), NULL);
1140  ret = av_buffersrc_add_frame(fg->inputs[i]->filter, tmp);
1141  av_frame_free(&tmp);
1142  if (ret < 0)
1143  goto fail;
1144  }
1145  }
1146 
1147  /* send the EOFs for the finished inputs */
1148  for (i = 0; i < fg->nb_inputs; i++) {
1149  if (fg->inputs[i]->eof) {
1150  ret = av_buffersrc_add_frame(fg->inputs[i]->filter, NULL);
1151  if (ret < 0)
1152  goto fail;
1153  }
1154  }
1155 
1156  /* process queued up subtitle packets */
1157  for (i = 0; i < fg->nb_inputs; i++) {
1158  InputStream *ist = fg->inputs[i]->ist;
1159  if (ist->sub2video.sub_queue && ist->sub2video.frame) {
1160  while (av_fifo_size(ist->sub2video.sub_queue)) {
1161  AVSubtitle tmp;
1162  av_fifo_generic_read(ist->sub2video.sub_queue, &tmp, sizeof(tmp), NULL);
1163  sub2video_update(ist, &tmp);
1164  avsubtitle_free(&tmp);
1165  }
1166  }
1167  }
1168 
1169  return 0;
1170 
1171 fail:
1172  cleanup_filtergraph(fg);
1173  return ret;
1174 }
1175 
1177 {
1178  av_buffer_unref(&ifilter->hw_frames_ctx);
1179 
1180  ifilter->format = frame->format;
1181 
1182  ifilter->width = frame->width;
1183  ifilter->height = frame->height;
1184  ifilter->sample_aspect_ratio = frame->sample_aspect_ratio;
1185 
1186  ifilter->sample_rate = frame->sample_rate;
1187  ifilter->channels = frame->channels;
1188  ifilter->channel_layout = frame->channel_layout;
1189 
1190  if (frame->hw_frames_ctx) {
1191  ifilter->hw_frames_ctx = av_buffer_ref(frame->hw_frames_ctx);
1192  if (!ifilter->hw_frames_ctx)
1193  return AVERROR(ENOMEM);
1194  }
1195 
1196  return 0;
1197 }
1198 
1200 {
1201  int i;
1202  for (i = 0; i < fg->nb_inputs; i++)
1203  if (fg->inputs[i]->ist == ist)
1204  return 1;
1205  return 0;
1206 }
1207 
1209 {
1210  return !fg->graph_desc;
1211 }
AVFilterContext ** filters
Definition: avfilter.h:842
const char * name
Definition: avisynth_c.h:775
void avfilter_graph_set_auto_convert(AVFilterGraph *graph, unsigned flags)
Enable or disable automatic format conversion inside the graph.
#define NULL
Definition: coverity.c:32
int width
Definition: ffmpeg.h:270
int keep_pix_fmt
Definition: ffmpeg.h:527
const char * s
Definition: avisynth_c.h:768
Bytestream IO Context.
Definition: avio.h:161
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:557
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
uint8_t * name
Definition: ffmpeg.h:263
int nb_outputs
Definition: ffmpeg.h:292
static const char * format[]
Definition: af_aiir.c:311
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:125
AVDictionary * swr_opts
Definition: ffmpeg.h:508
#define DECODING_FOR_FILTER
Definition: ffmpeg.h:302
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2363
This structure describes decoded (raw) audio or video data.
Definition: frame.h:218
static int configure_input_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
int avio_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer)
Return the written size and a pointer to the buffer.
Definition: aviobuf.c:1420
AVRational frame_rate
Definition: ffmpeg.h:477
HWDevice * filter_hw_device
Definition: ffmpeg_opt.c:81
double get_rotation(AVStream *st)
Definition: cmdutils.c:2151
int accurate_seek
Definition: ffmpeg.h:413
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
misc image utilities
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
Definition: avfiltergraph.c:83
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
Main libavfilter public API header.
Memory buffer source API.
const char * desc
Definition: nvenc.c:65
AVRational framerate
Definition: ffmpeg.h:333
int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx)
Check validity and configure all the links and formats in the graph.
void avfilter_inout_free(AVFilterInOut **inout)
Free the supplied list of AVFilterInOut and set *inout to NULL.
Definition: graphparser.c:203
struct AVFilterInOut * next
next input/input in the list, NULL if this is the last
Definition: avfilter.h:1014
int height
Definition: ffmpeg.h:247
int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the given stream matches a stream specifier.
Definition: cmdutils.c:2047
AVFilterInOut * out_tmp
Definition: ffmpeg.h:266
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:1039
int decoding_needed
Definition: ffmpeg.h:300
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3884
static int insert_trim(int64_t start_time, int64_t duration, AVFilterContext **last_filter, int *pad_idx, const char *filter_name)
void sub2video_update(InputStream *ist, AVSubtitle *sub)
Definition: ffmpeg.c:234
int num
Numerator.
Definition: rational.h:59
static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
int index
stream index in AVFormatContext
Definition: avformat.h:874
int init_complex_filtergraph(FilterGraph *fg)
void avfilter_graph_free(AVFilterGraph **graph)
Free a graph, destroy its links, and set *graph to NULL.
AVBufferRef * hw_device_ctx
For filters which will create hardware frames, sets the device the filter should create them in...
Definition: avfilter.h:394
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1727
int nb_input_streams
Definition: ffmpeg.c:142
#define DEF_CHOOSE_FORMAT(suffix, type, var, supported_list, none, get_name)
static enum AVPixelFormat * get_compliance_unofficial_pix_fmts(enum AVCodecID codec_id, const enum AVPixelFormat default_formats[])
Definition: ffmpeg_filter.c:42
AVCodec.
Definition: avcodec.h:3408
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1391
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:558
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
int index
Definition: ffmpeg.h:283
char * scale_sws_opts
sws options to use for the auto-inserted scale filters
Definition: avfilter.h:845
struct FilterGraph * graph
Definition: ffmpeg.h:238
AVBufferRef * hw_frames_ctx
For hwaccel-format frames, this should be a reference to the AVHWFramesContext describing the frame...
Definition: frame.h:556
Format I/O context.
Definition: avformat.h:1342
AVRational av_guess_frame_rate(AVFormatContext *ctx, AVStream *stream, AVFrame *frame)
Guess the frame rate, based on both the container and codec information.
Definition: utils.c:5008
#define SWS_BILINEAR
Definition: swscale.h:59
int configure_filtergraph(FilterGraph *fg)
memory buffer sink API for audio and video
enum AVPixelFormat choose_pixel_fmt(AVStream *st, AVCodecContext *enc_ctx, AVCodec *codec, enum AVPixelFormat target)
Definition: ffmpeg_filter.c:63
struct InputStream * ist
Definition: ffmpeg.h:237
char * name
name of this filter instance
Definition: avfilter.h:343
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
AVFilterGraph * graph
Definition: ffmpeg.h:286
int av_buffersink_get_sample_rate(const AVFilterContext *ctx)
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:135
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:349
static void filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip)
Definition: cfhd.c:114
static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
static int64_t start_time
Definition: ffplay.c:327
uint8_t
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:189
AVDictionary * sws_dict
Definition: ffmpeg.h:507
int width
Video only.
Definition: avcodec.h:3950
void check_filter_outputs(void)
AVOptions.
static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
int configure_output_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
int audio_sync_method
Definition: ffmpeg_opt.c:91
int shortest
Definition: ffmpeg.h:561
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1410
int64_t duration
Definition: movenc.c:63
static AVFrame * frame
int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt, const char *name, const char *args, void *opaque, AVFilterGraph *graph_ctx)
Create and add a filter instance into an existing graph.
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
enum AVMediaType type
Definition: ffmpeg.h:240
int nb_threads
Maximum number of threads used by filters in this graph.
Definition: avfilter.h:869
AVDictionary * resample_opts
Definition: ffmpeg.h:509
AVFilterContext * filter
Definition: ffmpeg.h:260
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:75
int nb_input_files
Definition: ffmpeg.c:144
AVCodec * dec
Definition: ffmpeg.h:305
int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, AVFilterInOut **inputs, AVFilterInOut **outputs)
Add a graph described by a string to a graph.
Definition: graphparser.c:407
int ist_in_filtergraph(FilterGraph *fg, InputStream *ist)
int file_index
Definition: ffmpeg.h:296
int av_buffersink_get_h(const AVFilterContext *ctx)
struct InputStream::sub2video sub2video
int av_buffersink_get_format(const AVFilterContext *ctx)
#define av_log(a,...)
int filter_complex_nbthreads
Definition: ffmpeg_opt.c:111
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: avcodec.h:2580
A filter pad used for either input or output.
Definition: internal.h:54
uint64_t channel_layout
Definition: ffmpeg.h:274
AVFifoBuffer * sub_queue
queue of AVSubtitle* before filter init
Definition: ffmpeg.h:349
static int insert_filter(AVFilterContext **last_filter, int *pad_idx, const char *filter_name, const char *args)
AVFilterPad * input_pads
array of input pads
Definition: avfilter.h:345
AVRational sample_aspect_ratio
Definition: ffmpeg.h:248
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:215
int width
Definition: frame.h:276
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
#define GET_CH_LAYOUT_NAME(ch_layout)
Definition: cmdutils.h:638
int sample_rate
Definition: ffmpeg.h:250
static AVBufferRef * hw_device_ctx
Definition: hw_decode.c:43
FilterGraph ** filtergraphs
Definition: ffmpeg.c:151
AVFilterContext * filter
Definition: ffmpeg.h:236
#define AVERROR(e)
Definition: error.h:43
int format
Definition: ffmpeg.h:245
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:202
unsigned nb_outputs
number of output pads
Definition: avfilter.h:351
Display matrix.
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Definition: bprint.c:69
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:91
int capabilities
Codec capabilities.
Definition: avcodec.h:3427
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
Definition: fifo.c:213
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3880
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1598
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:558
simple assert() macros that are a bit more flexible than ISO C assert().
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:236
const char * name
Name of the codec implementation.
Definition: avcodec.h:3415
const char * av_get_sample_fmt_name(enum AVSampleFormat sample_fmt)
Return the name of sample_fmt, or NULL if sample_fmt is not recognized.
Definition: samplefmt.c:49
int eof
Definition: ffmpeg.h:256
int format
video: the pixel format, value corresponds to enum AVPixelFormat audio: the sample format...
Definition: buffersrc.h:78
#define FFMAX(a, b)
Definition: common.h:94
#define fail()
Definition: checkasm.h:116
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition: avcodec.h:1031
static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2224
int filter_nbthreads
Definition: ffmpeg_opt.c:110
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
all automatic conversions disabled
Definition: avfilter.h:976
OutputFilter * filter
Definition: ffmpeg.h:501
uint64_t channel_layout
Channel layout of the audio data.
Definition: frame.h:396
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: allfilters.c:428
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1398
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:83
int channels
number of audio channels, only used for audio.
Definition: frame.h:523
audio channel layout utility functions
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3429
This structure contains the parameters describing the frames that will be passed to this filter...
Definition: buffersrc.h:73
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:886
unsigned nb_inputs
number of input pads
Definition: avfilter.h:347
external API header
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:555
struct OutputStream * ost
Definition: ffmpeg.h:261
int width
picture width / height.
Definition: avcodec.h:1690
uint8_t w
Definition: llviddspenc.c:38
char * apad
Definition: ffmpeg.h:510
const char AVS_Value args
Definition: avisynth_c.h:780
int width
Definition: ffmpeg.h:247
AVFormatContext * ctx
Definition: movenc.c:48
int nb_filtergraphs
Definition: ffmpeg.c:152
int audio_channels_mapped
Definition: ffmpeg.h:496
int n
Definition: avisynth_c.h:684
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:65
enum AVCodecID codec_id
Definition: vaapi_decode.c:362
int height
Definition: ffmpeg.h:270
static const AVFilterPad inputs[]
Definition: af_acontrast.c:193
int sample_rate
Definition: ffmpeg.h:273
#define GET_SAMPLE_FMT_NAME(sample_fmt)
Definition: cmdutils.h:631
AVFilterContext * filter_ctx
filter context associated to this input/output
Definition: avfilter.h:1008
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
const char * avcodec_get_name(enum AVCodecID id)
Get the name of a codec.
Definition: utils.c:1127
void exit_program(int ret)
Wraps exit with a program-specific cleanup routine.
Definition: cmdutils.c:136
AVCodecContext * enc
Definition: muxing.c:55
int start_at_zero
Definition: ffmpeg_opt.c:100
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:924
int audio_volume
Definition: ffmpeg_opt.c:90
Stream structure.
Definition: avformat.h:873
static char * describe_filter_link(FilterGraph *fg, AVFilterInOut *inout, int in)
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1003
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:291
InputFilter ** filters
Definition: ffmpeg.h:358
enum AVPixelFormat avcodec_find_best_pix_fmt_of_2(enum AVPixelFormat dst_pix_fmt1, enum AVPixelFormat dst_pix_fmt2, enum AVPixelFormat src_pix_fmt, int has_alpha, int *loss_ptr)
Definition: imgconvert.c:54
#define GET_SAMPLE_RATE_NAME(rate)
Definition: cmdutils.h:634
int64_t recording_time
Definition: ffmpeg.h:408
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:2193
AVBufferRef * hw_frames_ctx
Video with a hwaccel pixel format only.
Definition: buffersrc.h:106
AVStream * st
Definition: ffmpeg.h:297
sample_rate
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
#define AV_BPRINT_SIZE_AUTOMATIC
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:251
static int configure_input_audio_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
enum AVMediaType codec_type
Definition: avcodec.h:1526
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
enum AVCodecID codec_id
Definition: avcodec.h:1528
int av_fifo_size(const AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
Definition: fifo.c:77
int ist_index
Definition: ffmpeg.h:397
const char * graph_desc
Definition: ffmpeg.h:284
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:81
uint64_t av_buffersink_get_channel_layout(const AVFilterContext *ctx)
int64_t start_time
Definition: ffmpeg.h:406
void avio_w8(AVIOContext *s, int b)
Definition: aviobuf.c:196
main external API structure.
Definition: avcodec.h:1518
#define AV_PIX_FMT_RGB32
Definition: pixfmt.h:342
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
Definition: utils.c:1042
AVRational sample_aspect_ratio
Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
Definition: frame.h:306
int ifilter_parameters_from_frame(InputFilter *ifilter, const AVFrame *frame)
AVCodecContext * enc_ctx
Definition: ffmpeg.h:465
#define AUTO_INSERT_FILTER(opt_name, filter_name, arg)
AVBufferRef * hw_frames_ctx
Definition: ffmpeg.h:254
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi - 0x80) *(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t, *(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t, *(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31)))) #define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac) { } void ff_audio_convert_free(AudioConvert **ac) { if(! *ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);} AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map) { AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method !=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2) { ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc) { av_free(ac);return NULL;} return ac;} in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar) { ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar ? ac->channels :1;} else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;} int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in) { int use_generic=1;int len=in->nb_samples;int p;if(ac->dc) { av_log(ac->avr, AV_LOG_TRACE, "%d samples - audio_convert: %s to %s (dithered)\", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> in
int channels
Definition: ffmpeg.h:251
int * audio_channels_map
Definition: ffmpeg.h:495
static const uint16_t channel_layouts[7]
Definition: dca_lbr.c:113
int sample_rate
Sample rate of the audio data.
Definition: frame.h:391
Filter definition.
Definition: avfilter.h:144
int pad_idx
index of the filt_ctx pad to use for linking
Definition: avfilter.h:1011
Rational number (pair of numerator and denominator).
Definition: rational.h:58
int file_index
Definition: ffmpeg.h:443
AVCodecContext * dec_ctx
Definition: ffmpeg.h:304
cl_device_type type
AVMediaType
Definition: avutil.h:199
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:236
const char * name
Filter name.
Definition: avfilter.h:148
int av_buffersink_get_w(const AVFilterContext *ctx)
unsigned nb_filters
Definition: avfilter.h:843
int autorotate
Definition: ffmpeg.h:337
#define snprintf
Definition: snprintf.h:34
const char * avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
Get the name of an AVFilterPad.
Definition: avfilter.c:1034
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:266
float audio_drift_threshold
Definition: ffmpeg_opt.c:86
char * name
unique name for this input/output in the list
Definition: avfilter.h:1005
int nb_filters
Definition: ffmpeg.h:359
#define SWS_BITEXACT
Definition: swscale.h:84
int64_t start_time
Position of the first frame of the component, in AV_TIME_BASE fractional seconds. ...
Definition: avformat.h:1447
#define AVERROR_FILTER_NOT_FOUND
Filter not found.
Definition: error.h:58
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:159
static int sub2video_prepare(InputStream *ist, InputFilter *ifilter)
A reference to a data buffer.
Definition: buffer.h:81
static AVStream * ost
int reconfiguration
Definition: ffmpeg.h:287
struct FilterGraph * graph
Definition: ffmpeg.h:262
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
sample_rates
void av_buffersink_set_frame_size(AVFilterContext *ctx, unsigned frame_size)
Set the frame size for an audio buffer sink.
Definition: buffersink.c:175
int av_buffersrc_parameters_set(AVFilterContext *ctx, AVBufferSrcParameters *param)
Initialize the buffersrc or abuffersrc filter with the provided parameters.
Definition: buffersrc.c:93
AVStream * st
Definition: muxing.c:54
AVBufferRef * device_ref
Definition: ffmpeg.h:77
#define AV_CODEC_CAP_LOSSLESS
Codec is lossless.
Definition: avcodec.h:1049
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:93
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:76
char * key
Definition: dict.h:86
int den
Denominator.
Definition: rational.h:60
uint64_t channel_layout
Definition: ffmpeg.h:252
int copy_ts
Definition: ffmpeg_opt.c:99
AVFormatContext * ctx
Definition: ffmpeg.h:394
#define AVERROR_DECODER_NOT_FOUND
Decoder not found.
Definition: error.h:52
int do_deinterlace
Definition: ffmpeg_opt.c:94
#define GROW_ARRAY(array, nb_elems)
Definition: cmdutils.h:622
pixel format definitions
char * avfilter
Definition: ffmpeg.h:502
uint8_t * name
Definition: ffmpeg.h:239
char * value
Definition: dict.h:87
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
Definition: fifo.c:43
int len
AVFilterContext * avfilter_graph_alloc_filter(AVFilterGraph *graph, const AVFilter *filter, const char *name)
Create a new filter instance in a filter graph.
int channels
number of audio channels
Definition: avcodec.h:2174
OutputFilter ** outputs
Definition: ffmpeg.h:291
InputFile ** input_files
Definition: ffmpeg.c:143
AVBufferSrcParameters * av_buffersrc_parameters_alloc(void)
Allocate a new AVBufferSrcParameters instance.
Definition: buffersrc.c:82
AVFormatContext * ctx
Definition: ffmpeg.h:554
int filtergraph_is_simple(FilterGraph *fg)
An instance of a filter.
Definition: avfilter.h:338
static char * choose_pix_fmts(OutputFilter *ofilter)
static void cleanup_filtergraph(FilterGraph *fg)
AVDictionary * encoder_opts
Definition: ffmpeg.h:506
int64_t av_get_default_channel_layout(int nb_channels)
Return default channel layout for a given number of channels.
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:701
int height
Definition: frame.h:276
FILE * out
Definition: movenc.c:54
InputFilter ** inputs
Definition: ffmpeg.h:289
#define av_freep(p)
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:70
OutputFile ** output_files
Definition: ffmpeg.c:148
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition: log.h:170
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1020
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3431
int format
Definition: ffmpeg.h:272
formats
Definition: signature.h:48
int init_simple_filtergraph(InputStream *ist, OutputStream *ost)
int discard
Definition: ffmpeg.h:298
const char * av_get_pix_fmt_name(enum AVPixelFormat pix_fmt)
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition: pixdesc.c:2279
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:902
void choose_sample_fmt(AVStream *st, AVCodec *codec)
Definition: ffmpeg_filter.c:92
int nb_inputs
Definition: ffmpeg.h:290
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:928
int index
Definition: ffmpeg.h:444
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
enum AVMediaType type
Definition: ffmpeg.h:267
AVFifoBuffer * frame_queue
Definition: ffmpeg.h:242
#define AUTO_INSERT_FILTER_INPUT(opt_name, filter_name, arg)
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:449
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition: avcodec.h:2576
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:341
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:248
#define tb
Definition: regdef.h:68
int attribute_align_arg av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame)
Add a frame to the buffer source.
Definition: buffersrc.c:144
InputStream ** input_streams
Definition: ffmpeg.c:141
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
discard nothing
Definition: avcodec.h:788
static uint8_t tmp[11]
Definition: aes_ctr.c:26