FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 
29 
30 #include "libavutil/avassert.h"
31 #include "libavutil/avstring.h"
32 #include "libavutil/bprint.h"
34 #include "libavutil/display.h"
35 #include "libavutil/opt.h"
36 #include "libavutil/pixdesc.h"
37 #include "libavutil/pixfmt.h"
38 #include "libavutil/imgutils.h"
39 #include "libavutil/samplefmt.h"
40 
42 {
43  if (codec && codec->pix_fmts) {
44  const enum AVPixelFormat *p = codec->pix_fmts;
45  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(target);
46  int has_alpha = desc ? desc->nb_components % 2 == 0 : 0;
47  enum AVPixelFormat best= AV_PIX_FMT_NONE;
48  static const enum AVPixelFormat mjpeg_formats[] =
50  static const enum AVPixelFormat ljpeg_formats[] =
53 
55  if (enc_ctx->codec_id == AV_CODEC_ID_MJPEG) {
56  p = mjpeg_formats;
57  } else if (enc_ctx->codec_id == AV_CODEC_ID_LJPEG) {
58  p =ljpeg_formats;
59  }
60  }
61  for (; *p != AV_PIX_FMT_NONE; p++) {
62  best= avcodec_find_best_pix_fmt_of_2(best, *p, target, has_alpha, NULL);
63  if (*p == target)
64  break;
65  }
66  if (*p == AV_PIX_FMT_NONE) {
67  if (target != AV_PIX_FMT_NONE)
69  "Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'\n",
70  av_get_pix_fmt_name(target),
71  codec->name,
72  av_get_pix_fmt_name(best));
73  return best;
74  }
75  }
76  return target;
77 }
78 
80 {
81  if (codec && codec->sample_fmts) {
82  const enum AVSampleFormat *p = codec->sample_fmts;
83  for (; *p != -1; p++) {
84  if (*p == st->codec->sample_fmt)
85  break;
86  }
87  if (*p == -1) {
89  av_log(NULL, AV_LOG_ERROR, "Conversion will not be lossless.\n");
92  "Incompatible sample format '%s' for codec '%s', auto-selecting format '%s'\n",
94  codec->name,
96  st->codec->sample_fmt = codec->sample_fmts[0];
97  }
98  }
99 }
100 
101 static char *choose_pix_fmts(OutputStream *ost)
102 {
103  AVDictionaryEntry *strict_dict = av_dict_get(ost->encoder_opts, "strict", NULL, 0);
104  if (strict_dict)
105  // used by choose_pixel_fmt() and below
106  av_opt_set(ost->enc_ctx, "strict", strict_dict->value, 0);
107 
108  if (ost->keep_pix_fmt) {
109  if (ost->filter)
112  if (ost->enc_ctx->pix_fmt == AV_PIX_FMT_NONE)
113  return NULL;
115  }
116  if (ost->enc_ctx->pix_fmt != AV_PIX_FMT_NONE) {
117  return av_strdup(av_get_pix_fmt_name(choose_pixel_fmt(ost->st, ost->enc_ctx, ost->enc, ost->enc_ctx->pix_fmt)));
118  } else if (ost->enc && ost->enc->pix_fmts) {
119  const enum AVPixelFormat *p;
120  AVIOContext *s = NULL;
121  uint8_t *ret;
122  int len;
123 
124  if (avio_open_dyn_buf(&s) < 0)
125  exit_program(1);
126 
127  p = ost->enc->pix_fmts;
129  if (ost->enc_ctx->codec_id == AV_CODEC_ID_MJPEG) {
131  } else if (ost->enc_ctx->codec_id == AV_CODEC_ID_LJPEG) {
134  }
135  }
136 
137  for (; *p != AV_PIX_FMT_NONE; p++) {
138  const char *name = av_get_pix_fmt_name(*p);
139  avio_printf(s, "%s|", name);
140  }
141  len = avio_close_dyn_buf(s, &ret);
142  ret[len - 1] = 0;
143  return ret;
144  } else
145  return NULL;
146 }
147 
148 /* Define a function for building a string containing a list of
149  * allowed formats. */
150 #define DEF_CHOOSE_FORMAT(type, var, supported_list, none, get_name) \
151 static char *choose_ ## var ## s(OutputStream *ost) \
152 { \
153  if (ost->enc_ctx->var != none) { \
154  get_name(ost->enc_ctx->var); \
155  return av_strdup(name); \
156  } else if (ost->enc && ost->enc->supported_list) { \
157  const type *p; \
158  AVIOContext *s = NULL; \
159  uint8_t *ret; \
160  int len; \
161  \
162  if (avio_open_dyn_buf(&s) < 0) \
163  exit_program(1); \
164  \
165  for (p = ost->enc->supported_list; *p != none; p++) { \
166  get_name(*p); \
167  avio_printf(s, "%s|", name); \
168  } \
169  len = avio_close_dyn_buf(s, &ret); \
170  ret[len - 1] = 0; \
171  return ret; \
172  } else \
173  return NULL; \
174 }
175 
176 // DEF_CHOOSE_FORMAT(enum AVPixelFormat, pix_fmt, pix_fmts, AV_PIX_FMT_NONE,
177 // GET_PIX_FMT_NAME)
178 
181 
184 
185 DEF_CHOOSE_FORMAT(uint64_t, channel_layout, channel_layouts, 0,
187 
189 {
190  FilterGraph *fg = av_mallocz(sizeof(*fg));
191 
192  if (!fg)
193  exit_program(1);
194  fg->index = nb_filtergraphs;
195 
196  GROW_ARRAY(fg->outputs, fg->nb_outputs);
197  if (!(fg->outputs[0] = av_mallocz(sizeof(*fg->outputs[0]))))
198  exit_program(1);
199  fg->outputs[0]->ost = ost;
200  fg->outputs[0]->graph = fg;
201 
202  ost->filter = fg->outputs[0];
203 
204  GROW_ARRAY(fg->inputs, fg->nb_inputs);
205  if (!(fg->inputs[0] = av_mallocz(sizeof(*fg->inputs[0]))))
206  exit_program(1);
207  fg->inputs[0]->ist = ist;
208  fg->inputs[0]->graph = fg;
209 
210  GROW_ARRAY(ist->filters, ist->nb_filters);
211  ist->filters[ist->nb_filters - 1] = fg->inputs[0];
212 
214  filtergraphs[nb_filtergraphs - 1] = fg;
215 
216  return fg;
217 }
218 
220 {
221  InputStream *ist = NULL;
223  int i;
224 
225  // TODO: support other filter types
226  if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
227  av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported "
228  "currently.\n");
229  exit_program(1);
230  }
231 
232  if (in->name) {
234  AVStream *st = NULL;
235  char *p;
236  int file_idx = strtol(in->name, &p, 0);
237 
238  if (file_idx < 0 || file_idx >= nb_input_files) {
239  av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n",
240  file_idx, fg->graph_desc);
241  exit_program(1);
242  }
243  s = input_files[file_idx]->ctx;
244 
245  for (i = 0; i < s->nb_streams; i++) {
246  enum AVMediaType stream_type = s->streams[i]->codec->codec_type;
247  if (stream_type != type &&
248  !(stream_type == AVMEDIA_TYPE_SUBTITLE &&
249  type == AVMEDIA_TYPE_VIDEO /* sub2video hack */))
250  continue;
251  if (check_stream_specifier(s, s->streams[i], *p == ':' ? p + 1 : p) == 1) {
252  st = s->streams[i];
253  break;
254  }
255  }
256  if (!st) {
257  av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
258  "matches no streams.\n", p, fg->graph_desc);
259  exit_program(1);
260  }
261  ist = input_streams[input_files[file_idx]->ist_index + st->index];
262  } else {
263  /* find the first unused stream of corresponding type */
264  for (i = 0; i < nb_input_streams; i++) {
265  ist = input_streams[i];
266  if (ist->dec_ctx->codec_type == type && ist->discard)
267  break;
268  }
269  if (i == nb_input_streams) {
270  av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for "
271  "unlabeled input pad %d on filter %s\n", in->pad_idx,
272  in->filter_ctx->name);
273  exit_program(1);
274  }
275  }
276  av_assert0(ist);
277 
278  ist->discard = 0;
280  ist->st->discard = AVDISCARD_NONE;
281 
282  GROW_ARRAY(fg->inputs, fg->nb_inputs);
283  if (!(fg->inputs[fg->nb_inputs - 1] = av_mallocz(sizeof(*fg->inputs[0]))))
284  exit_program(1);
285  fg->inputs[fg->nb_inputs - 1]->ist = ist;
286  fg->inputs[fg->nb_inputs - 1]->graph = fg;
287 
288  GROW_ARRAY(ist->filters, ist->nb_filters);
289  ist->filters[ist->nb_filters - 1] = fg->inputs[fg->nb_inputs - 1];
290 }
291 
292 static int insert_trim(int64_t start_time, int64_t duration,
293  AVFilterContext **last_filter, int *pad_idx,
294  const char *filter_name)
295 {
296  AVFilterGraph *graph = (*last_filter)->graph;
297  AVFilterContext *ctx;
298  const AVFilter *trim;
299  enum AVMediaType type = avfilter_pad_get_type((*last_filter)->output_pads, *pad_idx);
300  const char *name = (type == AVMEDIA_TYPE_VIDEO) ? "trim" : "atrim";
301  int ret = 0;
302 
303  if (duration == INT64_MAX && start_time == AV_NOPTS_VALUE)
304  return 0;
305 
306  trim = avfilter_get_by_name(name);
307  if (!trim) {
308  av_log(NULL, AV_LOG_ERROR, "%s filter not present, cannot limit "
309  "recording time.\n", name);
311  }
312 
313  ctx = avfilter_graph_alloc_filter(graph, trim, filter_name);
314  if (!ctx)
315  return AVERROR(ENOMEM);
316 
317  if (duration != INT64_MAX) {
318  ret = av_opt_set_int(ctx, "durationi", duration,
320  }
321  if (ret >= 0 && start_time != AV_NOPTS_VALUE) {
322  ret = av_opt_set_int(ctx, "starti", start_time,
324  }
325  if (ret < 0) {
326  av_log(ctx, AV_LOG_ERROR, "Error configuring the %s filter", name);
327  return ret;
328  }
329 
330  ret = avfilter_init_str(ctx, NULL);
331  if (ret < 0)
332  return ret;
333 
334  ret = avfilter_link(*last_filter, *pad_idx, ctx, 0);
335  if (ret < 0)
336  return ret;
337 
338  *last_filter = ctx;
339  *pad_idx = 0;
340  return 0;
341 }
342 
343 static int insert_filter(AVFilterContext **last_filter, int *pad_idx,
344  const char *filter_name, const char *args)
345 {
346  AVFilterGraph *graph = (*last_filter)->graph;
347  AVFilterContext *ctx;
348  int ret;
349 
350  ret = avfilter_graph_create_filter(&ctx,
351  avfilter_get_by_name(filter_name),
352  filter_name, args, NULL, graph);
353  if (ret < 0)
354  return ret;
355 
356  ret = avfilter_link(*last_filter, *pad_idx, ctx, 0);
357  if (ret < 0)
358  return ret;
359 
360  *last_filter = ctx;
361  *pad_idx = 0;
362  return 0;
363 }
364 
366 {
367  char *pix_fmts;
368  OutputStream *ost = ofilter->ost;
369  OutputFile *of = output_files[ost->file_index];
370  AVCodecContext *codec = ost->enc_ctx;
372  int pad_idx = out->pad_idx;
373  int ret;
374  char name[255];
375 
376  snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index);
377  ret = avfilter_graph_create_filter(&ofilter->filter,
378  avfilter_get_by_name("buffersink"),
379  name, NULL, NULL, fg->graph);
380 
381  if (ret < 0)
382  return ret;
383 
384  if (codec->width || codec->height) {
385  char args[255];
387 
388  snprintf(args, sizeof(args), "%d:%d:0x%X",
389  codec->width,
390  codec->height,
391  (unsigned)ost->sws_flags);
392  snprintf(name, sizeof(name), "scaler for output stream %d:%d",
393  ost->file_index, ost->index);
394  if ((ret = avfilter_graph_create_filter(&filter, avfilter_get_by_name("scale"),
395  name, args, NULL, fg->graph)) < 0)
396  return ret;
397  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
398  return ret;
399 
400  last_filter = filter;
401  pad_idx = 0;
402  }
403 
404  if ((pix_fmts = choose_pix_fmts(ost))) {
406  snprintf(name, sizeof(name), "pixel format for output stream %d:%d",
407  ost->file_index, ost->index);
408  ret = avfilter_graph_create_filter(&filter,
409  avfilter_get_by_name("format"),
410  "format", pix_fmts, NULL, fg->graph);
411  av_freep(&pix_fmts);
412  if (ret < 0)
413  return ret;
414  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
415  return ret;
416 
417  last_filter = filter;
418  pad_idx = 0;
419  }
420 
421  if (ost->frame_rate.num && 0) {
422  AVFilterContext *fps;
423  char args[255];
424 
425  snprintf(args, sizeof(args), "fps=%d/%d", ost->frame_rate.num,
426  ost->frame_rate.den);
427  snprintf(name, sizeof(name), "fps for output stream %d:%d",
428  ost->file_index, ost->index);
430  name, args, NULL, fg->graph);
431  if (ret < 0)
432  return ret;
433 
434  ret = avfilter_link(last_filter, pad_idx, fps, 0);
435  if (ret < 0)
436  return ret;
437  last_filter = fps;
438  pad_idx = 0;
439  }
440 
441  snprintf(name, sizeof(name), "trim for output stream %d:%d",
442  ost->file_index, ost->index);
443  ret = insert_trim(of->start_time, of->recording_time,
444  &last_filter, &pad_idx, name);
445  if (ret < 0)
446  return ret;
447 
448 
449  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
450  return ret;
451 
452  return 0;
453 }
454 
456 {
457  OutputStream *ost = ofilter->ost;
458  OutputFile *of = output_files[ost->file_index];
459  AVCodecContext *codec = ost->enc_ctx;
461  int pad_idx = out->pad_idx;
462  char *sample_fmts, *sample_rates, *channel_layouts;
463  char name[255];
464  int ret;
465 
466  snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index);
467  ret = avfilter_graph_create_filter(&ofilter->filter,
468  avfilter_get_by_name("abuffersink"),
469  name, NULL, NULL, fg->graph);
470  if (ret < 0)
471  return ret;
472  if ((ret = av_opt_set_int(ofilter->filter, "all_channel_counts", 1, AV_OPT_SEARCH_CHILDREN)) < 0)
473  return ret;
474 
475 #define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \
476  AVFilterContext *filt_ctx; \
477  \
478  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
479  "similarly to -af " filter_name "=%s.\n", arg); \
480  \
481  ret = avfilter_graph_create_filter(&filt_ctx, \
482  avfilter_get_by_name(filter_name), \
483  filter_name, arg, NULL, fg->graph); \
484  if (ret < 0) \
485  return ret; \
486  \
487  ret = avfilter_link(last_filter, pad_idx, filt_ctx, 0); \
488  if (ret < 0) \
489  return ret; \
490  \
491  last_filter = filt_ctx; \
492  pad_idx = 0; \
493 } while (0)
494  if (ost->audio_channels_mapped) {
495  int i;
496  AVBPrint pan_buf;
497  av_bprint_init(&pan_buf, 256, 8192);
498  av_bprintf(&pan_buf, "0x%"PRIx64,
500  for (i = 0; i < ost->audio_channels_mapped; i++)
501  if (ost->audio_channels_map[i] != -1)
502  av_bprintf(&pan_buf, ":c%d=c%d", i, ost->audio_channels_map[i]);
503 
504  AUTO_INSERT_FILTER("-map_channel", "pan", pan_buf.str);
505  av_bprint_finalize(&pan_buf, NULL);
506  }
507 
508  if (codec->channels && !codec->channel_layout)
510 
511  sample_fmts = choose_sample_fmts(ost);
512  sample_rates = choose_sample_rates(ost);
513  channel_layouts = choose_channel_layouts(ost);
514  if (sample_fmts || sample_rates || channel_layouts) {
515  AVFilterContext *format;
516  char args[256];
517  args[0] = 0;
518 
519  if (sample_fmts)
520  av_strlcatf(args, sizeof(args), "sample_fmts=%s:",
521  sample_fmts);
522  if (sample_rates)
523  av_strlcatf(args, sizeof(args), "sample_rates=%s:",
524  sample_rates);
525  if (channel_layouts)
526  av_strlcatf(args, sizeof(args), "channel_layouts=%s:",
527  channel_layouts);
528 
529  av_freep(&sample_fmts);
530  av_freep(&sample_rates);
531  av_freep(&channel_layouts);
532 
533  snprintf(name, sizeof(name), "audio format for output stream %d:%d",
534  ost->file_index, ost->index);
535  ret = avfilter_graph_create_filter(&format,
536  avfilter_get_by_name("aformat"),
537  name, args, NULL, fg->graph);
538  if (ret < 0)
539  return ret;
540 
541  ret = avfilter_link(last_filter, pad_idx, format, 0);
542  if (ret < 0)
543  return ret;
544 
545  last_filter = format;
546  pad_idx = 0;
547  }
548 
549  if (audio_volume != 256 && 0) {
550  char args[256];
551 
552  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
553  AUTO_INSERT_FILTER("-vol", "volume", args);
554  }
555 
556  if (ost->apad && of->shortest) {
557  char args[256];
558  int i;
559 
560  for (i=0; i<of->ctx->nb_streams; i++)
561  if (of->ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
562  break;
563 
564  if (i<of->ctx->nb_streams) {
565  snprintf(args, sizeof(args), "%s", ost->apad);
566  AUTO_INSERT_FILTER("-apad", "apad", args);
567  }
568  }
569 
570  snprintf(name, sizeof(name), "trim for output stream %d:%d",
571  ost->file_index, ost->index);
572  ret = insert_trim(of->start_time, of->recording_time,
573  &last_filter, &pad_idx, name);
574  if (ret < 0)
575  return ret;
576 
577  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
578  return ret;
579 
580  return 0;
581 }
582 
583 #define DESCRIBE_FILTER_LINK(f, inout, in) \
584 { \
585  AVFilterContext *ctx = inout->filter_ctx; \
586  AVFilterPad *pads = in ? ctx->input_pads : ctx->output_pads; \
587  int nb_pads = in ? ctx->nb_inputs : ctx->nb_outputs; \
588  AVIOContext *pb; \
589  \
590  if (avio_open_dyn_buf(&pb) < 0) \
591  exit_program(1); \
592  \
593  avio_printf(pb, "%s", ctx->filter->name); \
594  if (nb_pads > 1) \
595  avio_printf(pb, ":%s", avfilter_pad_get_name(pads, inout->pad_idx));\
596  avio_w8(pb, 0); \
597  avio_close_dyn_buf(pb, &f->name); \
598 }
599 
601 {
602  av_freep(&ofilter->name);
603  DESCRIBE_FILTER_LINK(ofilter, out, 0);
604 
605  switch (avfilter_pad_get_type(out->filter_ctx->output_pads, out->pad_idx)) {
606  case AVMEDIA_TYPE_VIDEO: return configure_output_video_filter(fg, ofilter, out);
607  case AVMEDIA_TYPE_AUDIO: return configure_output_audio_filter(fg, ofilter, out);
608  default: av_assert0(0);
609  }
610 }
611 
613 {
615  int i, w, h;
616 
617  /* Compute the size of the canvas for the subtitles stream.
618  If the subtitles codec has set a size, use it. Otherwise use the
619  maximum dimensions of the video streams in the same file. */
620  w = ist->dec_ctx->width;
621  h = ist->dec_ctx->height;
622  if (!(w && h)) {
623  for (i = 0; i < avf->nb_streams; i++) {
624  if (avf->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
625  w = FFMAX(w, avf->streams[i]->codec->width);
626  h = FFMAX(h, avf->streams[i]->codec->height);
627  }
628  }
629  if (!(w && h)) {
630  w = FFMAX(w, 720);
631  h = FFMAX(h, 576);
632  }
633  av_log(avf, AV_LOG_INFO, "sub2video: using %dx%d canvas\n", w, h);
634  }
635  ist->sub2video.w = ist->dec_ctx->width = ist->resample_width = w;
636  ist->sub2video.h = ist->dec_ctx->height = ist->resample_height = h;
637 
638  /* rectangles are AV_PIX_FMT_PAL8, but we have no guarantee that the
639  palettes for all rectangles are identical or compatible */
641 
642  ist->sub2video.frame = av_frame_alloc();
643  if (!ist->sub2video.frame)
644  return AVERROR(ENOMEM);
645  ist->sub2video.last_pts = INT64_MIN;
646  return 0;
647 }
648 
650  AVFilterInOut *in)
651 {
653  const AVFilter *buffer_filt = avfilter_get_by_name("buffer");
654  InputStream *ist = ifilter->ist;
655  InputFile *f = input_files[ist->file_index];
656  AVRational tb = ist->framerate.num ? av_inv_q(ist->framerate) :
657  ist->st->time_base;
658  AVRational fr = ist->framerate;
659  AVRational sar;
660  AVBPrint args;
661  char name[255];
662  int ret, pad_idx = 0;
663  int64_t tsoffset = 0;
664 
665  if (ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) {
666  av_log(NULL, AV_LOG_ERROR, "Cannot connect video filter to audio input\n");
667  return AVERROR(EINVAL);
668  }
669 
670  if (!fr.num)
671  fr = av_guess_frame_rate(input_files[ist->file_index]->ctx, ist->st, NULL);
672 
674  ret = sub2video_prepare(ist);
675  if (ret < 0)
676  return ret;
677  }
678 
679  sar = ist->st->sample_aspect_ratio.num ?
680  ist->st->sample_aspect_ratio :
682  if(!sar.den)
683  sar = (AVRational){0,1};
684  av_bprint_init(&args, 0, 1);
685  av_bprintf(&args,
686  "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:"
687  "pixel_aspect=%d/%d:sws_param=flags=%d", ist->resample_width,
688  ist->resample_height,
690  tb.num, tb.den, sar.num, sar.den,
692  if (fr.num && fr.den)
693  av_bprintf(&args, ":frame_rate=%d/%d", fr.num, fr.den);
694  snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index,
695  ist->file_index, ist->st->index);
696 
697  if ((ret = avfilter_graph_create_filter(&ifilter->filter, buffer_filt, name,
698  args.str, NULL, fg->graph)) < 0)
699  return ret;
700  last_filter = ifilter->filter;
701 
702  if (ist->autorotate) {
703  double theta = get_rotation(ist->st);
704 
705  if (fabs(theta - 90) < 1.0) {
706  ret = insert_filter(&last_filter, &pad_idx, "transpose", "clock");
707  } else if (fabs(theta - 180) < 1.0) {
708  ret = insert_filter(&last_filter, &pad_idx, "hflip", NULL);
709  if (ret < 0)
710  return ret;
711  ret = insert_filter(&last_filter, &pad_idx, "vflip", NULL);
712  } else if (fabs(theta - 270) < 1.0) {
713  ret = insert_filter(&last_filter, &pad_idx, "transpose", "cclock");
714  } else if (fabs(theta) > 1.0) {
715  char rotate_buf[64];
716  snprintf(rotate_buf, sizeof(rotate_buf), "%f*PI/180", theta);
717  ret = insert_filter(&last_filter, &pad_idx, "rotate", rotate_buf);
718  }
719  if (ret < 0)
720  return ret;
721  }
722 
723  if (ist->framerate.num) {
724  AVFilterContext *setpts;
725 
726  snprintf(name, sizeof(name), "force CFR for input from stream %d:%d",
727  ist->file_index, ist->st->index);
728  if ((ret = avfilter_graph_create_filter(&setpts,
729  avfilter_get_by_name("setpts"),
730  name, "N", NULL,
731  fg->graph)) < 0)
732  return ret;
733 
734  if ((ret = avfilter_link(last_filter, 0, setpts, 0)) < 0)
735  return ret;
736 
737  last_filter = setpts;
738  }
739 
740  if (do_deinterlace) {
741  AVFilterContext *yadif;
742 
743  snprintf(name, sizeof(name), "deinterlace input from stream %d:%d",
744  ist->file_index, ist->st->index);
745  if ((ret = avfilter_graph_create_filter(&yadif,
746  avfilter_get_by_name("yadif"),
747  name, "", NULL,
748  fg->graph)) < 0)
749  return ret;
750 
751  if ((ret = avfilter_link(last_filter, 0, yadif, 0)) < 0)
752  return ret;
753 
754  last_filter = yadif;
755  }
756 
757  snprintf(name, sizeof(name), "trim for input stream %d:%d",
758  ist->file_index, ist->st->index);
759  if (copy_ts) {
760  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
762  tsoffset += f->ctx->start_time;
763  }
764  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
765  AV_NOPTS_VALUE : tsoffset, f->recording_time,
766  &last_filter, &pad_idx, name);
767  if (ret < 0)
768  return ret;
769 
770  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
771  return ret;
772  return 0;
773 }
774 
776  AVFilterInOut *in)
777 {
779  const AVFilter *abuffer_filt = avfilter_get_by_name("abuffer");
780  InputStream *ist = ifilter->ist;
781  InputFile *f = input_files[ist->file_index];
782  AVBPrint args;
783  char name[255];
784  int ret, pad_idx = 0;
785  int64_t tsoffset = 0;
786 
787  if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_AUDIO) {
788  av_log(NULL, AV_LOG_ERROR, "Cannot connect audio filter to non audio input\n");
789  return AVERROR(EINVAL);
790  }
791 
793  av_bprintf(&args, "time_base=%d/%d:sample_rate=%d:sample_fmt=%s",
794  1, ist->dec_ctx->sample_rate,
795  ist->dec_ctx->sample_rate,
797  if (ist->dec_ctx->channel_layout)
798  av_bprintf(&args, ":channel_layout=0x%"PRIx64,
799  ist->dec_ctx->channel_layout);
800  else
801  av_bprintf(&args, ":channels=%d", ist->dec_ctx->channels);
802  snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index,
803  ist->file_index, ist->st->index);
804 
805  if ((ret = avfilter_graph_create_filter(&ifilter->filter, abuffer_filt,
806  name, args.str, NULL,
807  fg->graph)) < 0)
808  return ret;
809  last_filter = ifilter->filter;
810 
811 #define AUTO_INSERT_FILTER_INPUT(opt_name, filter_name, arg) do { \
812  AVFilterContext *filt_ctx; \
813  \
814  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
815  "similarly to -af " filter_name "=%s.\n", arg); \
816  \
817  snprintf(name, sizeof(name), "graph %d %s for input stream %d:%d", \
818  fg->index, filter_name, ist->file_index, ist->st->index); \
819  ret = avfilter_graph_create_filter(&filt_ctx, \
820  avfilter_get_by_name(filter_name), \
821  name, arg, NULL, fg->graph); \
822  if (ret < 0) \
823  return ret; \
824  \
825  ret = avfilter_link(last_filter, 0, filt_ctx, 0); \
826  if (ret < 0) \
827  return ret; \
828  \
829  last_filter = filt_ctx; \
830 } while (0)
831 
832  if (audio_sync_method > 0) {
833  char args[256] = {0};
834 
835  av_strlcatf(args, sizeof(args), "async=%d", audio_sync_method);
836  if (audio_drift_threshold != 0.1)
837  av_strlcatf(args, sizeof(args), ":min_hard_comp=%f", audio_drift_threshold);
838  if (!fg->reconfiguration)
839  av_strlcatf(args, sizeof(args), ":first_pts=0");
840  AUTO_INSERT_FILTER_INPUT("-async", "aresample", args);
841  }
842 
843 // if (ost->audio_channels_mapped) {
844 // int i;
845 // AVBPrint pan_buf;
846 // av_bprint_init(&pan_buf, 256, 8192);
847 // av_bprintf(&pan_buf, "0x%"PRIx64,
848 // av_get_default_channel_layout(ost->audio_channels_mapped));
849 // for (i = 0; i < ost->audio_channels_mapped; i++)
850 // if (ost->audio_channels_map[i] != -1)
851 // av_bprintf(&pan_buf, ":c%d=c%d", i, ost->audio_channels_map[i]);
852 // AUTO_INSERT_FILTER_INPUT("-map_channel", "pan", pan_buf.str);
853 // av_bprint_finalize(&pan_buf, NULL);
854 // }
855 
856  if (audio_volume != 256) {
857  char args[256];
858 
859  av_log(NULL, AV_LOG_WARNING, "-vol has been deprecated. Use the volume "
860  "audio filter instead.\n");
861 
862  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
863  AUTO_INSERT_FILTER_INPUT("-vol", "volume", args);
864  }
865 
866  snprintf(name, sizeof(name), "trim for input stream %d:%d",
867  ist->file_index, ist->st->index);
868  if (copy_ts) {
869  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
871  tsoffset += f->ctx->start_time;
872  }
873  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
874  AV_NOPTS_VALUE : tsoffset, f->recording_time,
875  &last_filter, &pad_idx, name);
876  if (ret < 0)
877  return ret;
878 
879  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
880  return ret;
881 
882  return 0;
883 }
884 
886  AVFilterInOut *in)
887 {
888  av_freep(&ifilter->name);
889  DESCRIBE_FILTER_LINK(ifilter, in, 1);
890 
891  if (!ifilter->ist->dec) {
893  "No decoder for stream #%d:%d, filtering impossible\n",
894  ifilter->ist->file_index, ifilter->ist->st->index);
896  }
897  switch (avfilter_pad_get_type(in->filter_ctx->input_pads, in->pad_idx)) {
898  case AVMEDIA_TYPE_VIDEO: return configure_input_video_filter(fg, ifilter, in);
899  case AVMEDIA_TYPE_AUDIO: return configure_input_audio_filter(fg, ifilter, in);
900  default: av_assert0(0);
901  }
902 }
903 
905 {
906  AVFilterInOut *inputs, *outputs, *cur;
907  int ret, i, init = !fg->graph, simple = !fg->graph_desc;
908  const char *graph_desc = simple ? fg->outputs[0]->ost->avfilter :
909  fg->graph_desc;
910 
912  if (!(fg->graph = avfilter_graph_alloc()))
913  return AVERROR(ENOMEM);
914 
915  if (simple) {
916  OutputStream *ost = fg->outputs[0]->ost;
917  char args[512];
918  AVDictionaryEntry *e = NULL;
919 
920  snprintf(args, sizeof(args), "flags=0x%X", (unsigned)ost->sws_flags);
921  fg->graph->scale_sws_opts = av_strdup(args);
922 
923  args[0] = 0;
924  while ((e = av_dict_get(ost->swr_opts, "", e,
926  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
927  }
928  if (strlen(args))
929  args[strlen(args)-1] = 0;
930  av_opt_set(fg->graph, "aresample_swr_opts", args, 0);
931 
932  args[0] = '\0';
933  while ((e = av_dict_get(fg->outputs[0]->ost->resample_opts, "", e,
935  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
936  }
937  if (strlen(args))
938  args[strlen(args) - 1] = '\0';
939  fg->graph->resample_lavr_opts = av_strdup(args);
940 
941  e = av_dict_get(ost->encoder_opts, "threads", NULL, 0);
942  if (e)
943  av_opt_set(fg->graph, "threads", e->value, 0);
944  }
945 
946  if ((ret = avfilter_graph_parse2(fg->graph, graph_desc, &inputs, &outputs)) < 0)
947  return ret;
948 
949  if (simple && (!inputs || inputs->next || !outputs || outputs->next)) {
950  av_log(NULL, AV_LOG_ERROR, "Simple filtergraph '%s' does not have "
951  "exactly one input and output.\n", graph_desc);
952  return AVERROR(EINVAL);
953  }
954 
955  for (cur = inputs; !simple && init && cur; cur = cur->next)
956  init_input_filter(fg, cur);
957 
958  for (cur = inputs, i = 0; cur; cur = cur->next, i++)
959  if ((ret = configure_input_filter(fg, fg->inputs[i], cur)) < 0) {
960  avfilter_inout_free(&inputs);
961  avfilter_inout_free(&outputs);
962  return ret;
963  }
964  avfilter_inout_free(&inputs);
965 
966  if (!init || simple) {
967  /* we already know the mappings between lavfi outputs and output streams,
968  * so we can finish the setup */
969  for (cur = outputs, i = 0; cur; cur = cur->next, i++)
970  configure_output_filter(fg, fg->outputs[i], cur);
971  avfilter_inout_free(&outputs);
972 
973  if ((ret = avfilter_graph_config(fg->graph, NULL)) < 0)
974  return ret;
975  } else {
976  /* wait until output mappings are processed */
977  for (cur = outputs; cur;) {
978  GROW_ARRAY(fg->outputs, fg->nb_outputs);
979  if (!(fg->outputs[fg->nb_outputs - 1] = av_mallocz(sizeof(*fg->outputs[0]))))
980  exit_program(1);
981  fg->outputs[fg->nb_outputs - 1]->graph = fg;
982  fg->outputs[fg->nb_outputs - 1]->out_tmp = cur;
983  cur = cur->next;
984  fg->outputs[fg->nb_outputs - 1]->out_tmp->next = NULL;
985  }
986  }
987 
988  fg->reconfiguration = 1;
989 
990  for (i = 0; i < fg->nb_outputs; i++) {
991  OutputStream *ost = fg->outputs[i]->ost;
992  if (ost &&
993  ost->enc->type == AVMEDIA_TYPE_AUDIO &&
996  ost->enc_ctx->frame_size);
997  }
998 
999  return 0;
1000 }
1001 
1003 {
1004  int i;
1005  for (i = 0; i < fg->nb_inputs; i++)
1006  if (fg->inputs[i]->ist == ist)
1007  return 1;
1008  return 0;
1009 }
1010 
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 keep_pix_fmt
Definition: ffmpeg.h:446
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:464
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
uint8_t * name
Definition: ffmpeg.h:228
int nb_outputs
Definition: ffmpeg.h:244
AVDictionary * swr_opts
Definition: ffmpeg.h:434
#define DECODING_FOR_FILTER
Definition: ffmpeg.h:254
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2090
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:1125
AVRational frame_rate
Definition: ffmpeg.h:405
#define CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition: avcodec.h:882
double get_rotation(AVStream *st)
Definition: cmdutils.c:2090
int accurate_seek
Definition: ffmpeg.h:352
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:68
misc image utilities
AVFilterGraph * avfilter_graph_alloc(void)
Allocate a filter graph.
Definition: avfiltergraph.c:76
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
Main libavfilter public API header.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
AVRational framerate
Definition: ffmpeg.h:277
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:184
struct AVFilterInOut * next
next input/input in the list, NULL if this is the last
Definition: avfilter.h:1362
int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the given stream matches a stream specifier.
Definition: cmdutils.c:1986
AVFilterInOut * out_tmp
Definition: ffmpeg.h:231
enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
Get the type of an AVFilterPad.
Definition: avfilter.c:995
#define CODEC_CAP_LOSSLESS
Codec is lossless.
Definition: avcodec.h:890
int decoding_needed
Definition: ffmpeg.h:252
static int insert_trim(int64_t start_time, int64_t duration, AVFilterContext **last_filter, int *pad_idx, const char *filter_name)
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition: avformat.h:914
int num
numerator
Definition: rational.h:44
FilterGraph * init_simple_filtergraph(InputStream *ist, OutputStream *ost)
static void init_input_filter(FilterGraph *fg, AVFilterInOut *in)
int index
stream index in AVFormatContext
Definition: avformat.h:843
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:1623
void avfilter_graph_free(AVFilterGraph **graph)
Free a graph, destroy its links, and set *graph to NULL.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1444
#define DEF_CHOOSE_FORMAT(type, var, supported_list, none, get_name)
enum AVMediaType type
Definition: avcodec.h:3194
int nb_input_streams
Definition: ffmpeg.c:138
AVCodec.
Definition: avcodec.h:3181
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1113
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:465
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
int index
Definition: ffmpeg.h:235
char * scale_sws_opts
sws options to use for the auto-inserted scale filters
Definition: avfilter.h:1178
struct FilterGraph * graph
Definition: ffmpeg.h:220
all automatic conversions disabled
Definition: avfilter.h:1324
Format I/O context.
Definition: avformat.h:1272
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:4211
#define SWS_BILINEAR
Definition: swscale.h:57
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:41
struct InputStream * ist
Definition: ffmpeg.h:219
char * name
name of this filter instance
Definition: avfilter.h:638
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
static AVFilter ** last_filter
Definition: avfilter.c:482
AVFilterGraph * graph
Definition: ffmpeg.h:238
supported_samplerates
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
Definition: avfilter.c:131
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:647
static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
static int64_t start_time
Definition: ffplay.c:320
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1993
uint8_t
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
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:87
int shortest
Definition: ffmpeg.h:468
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1340
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.
char * resample_lavr_opts
libavresample options to use for the auto-inserted resample filters
Definition: avfilter.h:1179
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:39
AVDictionary * resample_opts
Definition: ffmpeg.h:435
AVFilterContext * filter
Definition: ffmpeg.h:225
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:76
int nb_input_files
Definition: ffmpeg.c:140
#define CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:759
AVCodec * dec
Definition: ffmpeg.h:257
static int64_t duration
Definition: ffplay.c:321
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:388
int ist_in_filtergraph(FilterGraph *fg, InputStream *ist)
int file_index
Definition: ffmpeg.h:248
struct InputStream::sub2video sub2video
int resample_pix_fmt
Definition: ffmpeg.h:284
int resample_height
Definition: ffmpeg.h:282
#define av_log(a,...)
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:640
#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:592
FilterGraph ** filtergraphs
Definition: ffmpeg.c:147
AVFilterContext * filter
Definition: ffmpeg.h:218
#define AVERROR(e)
Definition: error.h:43
int64_t sws_flags
Definition: ffmpeg.h:432
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:97
int capabilities
Codec capabilities.
Definition: avcodec.h:3200
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1335
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:491
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
Definition: avcodec.h:3188
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:47
#define FFMAX(a, b)
Definition: common.h:64
static const int sample_rates[]
Definition: dcaenc.h:32
static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, AVFilterInOut *out)
uint64_t channel_layout
Audio channel layout.
Definition: avcodec.h:2046
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:67
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
OutputFilter * filter
Definition: ffmpeg.h:427
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
Definition: avfilter.c:487
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1328
uint8_t nb_components
The number of components each pixel has, (1-4)
Definition: pixdesc.h:71
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:3202
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:75
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:602
struct OutputStream * ost
Definition: ffmpeg.h:226
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1414
char * apad
Definition: ffmpeg.h:437
AVS_Value args
Definition: avisynth_c.h:562
int nb_filtergraphs
Definition: ffmpeg.c:148
int(* hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame)
Definition: ffmpeg.h:323
int audio_channels_mapped
Definition: ffmpeg.h:422
#define GET_SAMPLE_FMT_NAME(sample_fmt)
Definition: cmdutils.h:585
AVFilterContext * filter_ctx
filter context associated to this input/output
Definition: avfilter.h:1356
void exit_program(int ret)
Wraps exit with a program-specific cleanup routine.
Definition: cmdutils.c:123
int start_at_zero
Definition: ffmpeg_opt.c:96
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
Definition: avfilter.c:883
int audio_volume
Definition: ffmpeg_opt.c:86
Stream structure.
Definition: avformat.h:842
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1351
InputFilter ** filters
Definition: ffmpeg.h:309
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:58
#define GET_SAMPLE_RATE_NAME(rate)
Definition: cmdutils.h:588
int64_t recording_time
Definition: ffmpeg.h:347
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:2005
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: avcodec.h:2547
sample_rate
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
#define AV_BPRINT_SIZE_AUTOMATIC
static int configure_input_audio_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
enum AVMediaType codec_type
Definition: avcodec.h:1249
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:59
enum AVCodecID codec_id
Definition: avcodec.h:1258
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:265
int sample_rate
samples per second
Definition: avcodec.h:1985
static char * choose_pix_fmts(OutputStream *ost)
int ist_index
Definition: ffmpeg.h:341
const char * graph_desc
Definition: ffmpeg.h:236
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition: pixdesc.h:69
int64_t start_time
Definition: ffmpeg.h:345
main external API structure.
Definition: avcodec.h:1241
#define AV_PIX_FMT_RGB32
Definition: pixfmt.h:341
static int sub2video_prepare(InputStream *ist)
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> in
AVCodecContext * enc_ctx
Definition: ffmpeg.h:396
#define AUTO_INSERT_FILTER(opt_name, filter_name, arg)
GLint GLenum type
Definition: opengl_enc.c:105
AVCodecContext * dec_ctx
Definition: ffmpeg.h:256
AVStream * st
Definition: ffmpeg.h:249
int * audio_channels_map
Definition: ffmpeg.h:421
Filter definition.
Definition: avfilter.h:470
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
int pad_idx
index of the filt_ctx pad to use for linking
Definition: avfilter.h:1359
rational number numerator/denominator
Definition: rational.h:43
int file_index
Definition: ffmpeg.h:380
AVMediaType
Definition: avutil.h:192
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
int autorotate
Definition: ffmpeg.h:281
#define snprintf
Definition: snprintf.h:34
float audio_drift_threshold
Definition: ffmpeg_opt.c:82
char * name
unique name for this input/output in the list
Definition: avfilter.h:1353
int nb_filters
Definition: ffmpeg.h:310
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition: rational.h:133
#define SWS_BITEXACT
Definition: swscale.h:82
int64_t start_time
Position of the first frame of the component, in AV_TIME_BASE fractional seconds. ...
Definition: avformat.h:1357
#define AVERROR_FILTER_NOT_FOUND
Filter not found.
Definition: error.h:58
int resample_width
Definition: ffmpeg.h:283
int reconfiguration
Definition: ffmpeg.h:239
struct FilterGraph * graph
Definition: ffmpeg.h:227
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
void av_buffersink_set_frame_size(AVFilterContext *ctx, unsigned frame_size)
Set the frame size for an audio buffer sink.
Definition: buffersink.c:261
#define DESCRIBE_FILTER_LINK(f, inout, in)
AVStream * st
Definition: muxing.c:54
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:77
char * key
Definition: dict.h:87
int den
denominator
Definition: rational.h:45
int copy_ts
Definition: ffmpeg_opt.c:95
AVFormatContext * ctx
Definition: ffmpeg.h:338
AVCodec * enc
Definition: ffmpeg.h:397
#define AVERROR_DECODER_NOT_FOUND
Decoder not found.
Definition: error.h:52
int do_deinterlace
Definition: ffmpeg_opt.c:90
#define GROW_ARRAY(array, nb_elems)
Definition: cmdutils.h:579
pixel format definitions
char * avfilter
Definition: ffmpeg.h:428
uint8_t * name
Definition: ffmpeg.h:221
char * value
Definition: dict.h:88
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:1986
OutputFilter ** outputs
Definition: ffmpeg.h:243
InputFile ** input_files
Definition: ffmpeg.c:139
AVFormatContext * ctx
Definition: ffmpeg.h:461
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;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);returnNULL;}returnac;}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;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->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);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
An instance of a filter.
Definition: avfilter.h:633
AVDictionary * encoder_opts
Definition: ffmpeg.h:433
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
InputFilter ** inputs
Definition: ffmpeg.h:241
#define av_freep(p)
enum AVPixelFormat hwaccel_retrieved_pix_fmt
Definition: ffmpeg.h:325
#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:72
OutputFile ** output_files
Definition: ffmpeg.c:144
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition: log.h:170
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3204
int discard
Definition: ffmpeg.h:250
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:2011
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:884
void choose_sample_fmt(AVStream *st, AVCodec *codec)
Definition: ffmpeg_filter.c:79
int nb_inputs
Definition: ffmpeg.h:242
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:907
int index
Definition: ffmpeg.h:381
AVPixelFormat
Pixel format.
Definition: pixfmt.h:61
#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:369
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:250
int strict_std_compliance
strictly follow the standard (MPEG4, ...).
Definition: avcodec.h:2543
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
#define tb
Definition: regdef.h:68
InputStream ** input_streams
Definition: ffmpeg.c:137
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
discard nothing
Definition: avcodec.h:663
const char * name
Definition: opengl_enc.c:103