FFmpeg  2.6.9
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules 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/opt.h"
35 #include "libavutil/pixdesc.h"
36 #include "libavutil/pixfmt.h"
37 #include "libavutil/imgutils.h"
38 #include "libavutil/samplefmt.h"
39 
41 {
42  if (codec && codec->pix_fmts) {
43  const enum AVPixelFormat *p = codec->pix_fmts;
44  const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(target);
45  int has_alpha = desc ? desc->nb_components % 2 == 0 : 0;
46  enum AVPixelFormat best= AV_PIX_FMT_NONE;
47  static const enum AVPixelFormat mjpeg_formats[] =
49  static const enum AVPixelFormat ljpeg_formats[] =
52 
54  if (enc_ctx->codec_id == AV_CODEC_ID_MJPEG) {
55  p = mjpeg_formats;
56  } else if (enc_ctx->codec_id == AV_CODEC_ID_LJPEG) {
57  p =ljpeg_formats;
58  }
59  }
60  for (; *p != AV_PIX_FMT_NONE; p++) {
61  best= avcodec_find_best_pix_fmt_of_2(best, *p, target, has_alpha, NULL);
62  if (*p == target)
63  break;
64  }
65  if (*p == AV_PIX_FMT_NONE) {
66  if (target != AV_PIX_FMT_NONE)
68  "Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'\n",
69  av_get_pix_fmt_name(target),
70  codec->name,
71  av_get_pix_fmt_name(best));
72  return best;
73  }
74  }
75  return target;
76 }
77 
79 {
80  if (codec && codec->sample_fmts) {
81  const enum AVSampleFormat *p = codec->sample_fmts;
82  for (; *p != -1; p++) {
83  if (*p == st->codec->sample_fmt)
84  break;
85  }
86  if (*p == -1) {
88  av_log(NULL, AV_LOG_ERROR, "Conversion will not be lossless.\n");
91  "Incompatible sample format '%s' for codec '%s', auto-selecting format '%s'\n",
93  codec->name,
95  st->codec->sample_fmt = codec->sample_fmts[0];
96  }
97  }
98 }
99 
100 static char *choose_pix_fmts(OutputStream *ost)
101 {
102  AVDictionaryEntry *strict_dict = av_dict_get(ost->encoder_opts, "strict", NULL, 0);
103  if (strict_dict)
104  // used by choose_pixel_fmt() and below
105  av_opt_set(ost->enc_ctx, "strict", strict_dict->value, 0);
106 
107  if (ost->keep_pix_fmt) {
108  if (ost->filter)
111  if (ost->enc_ctx->pix_fmt == AV_PIX_FMT_NONE)
112  return NULL;
114  }
115  if (ost->enc_ctx->pix_fmt != AV_PIX_FMT_NONE) {
116  return av_strdup(av_get_pix_fmt_name(choose_pixel_fmt(ost->st, ost->enc_ctx, ost->enc, ost->enc_ctx->pix_fmt)));
117  } else if (ost->enc && ost->enc->pix_fmts) {
118  const enum AVPixelFormat *p;
119  AVIOContext *s = NULL;
120  uint8_t *ret;
121  int len;
122 
123  if (avio_open_dyn_buf(&s) < 0)
124  exit_program(1);
125 
126  p = ost->enc->pix_fmts;
128  if (ost->enc_ctx->codec_id == AV_CODEC_ID_MJPEG) {
130  } else if (ost->enc_ctx->codec_id == AV_CODEC_ID_LJPEG) {
133  }
134  }
135 
136  for (; *p != AV_PIX_FMT_NONE; p++) {
137  const char *name = av_get_pix_fmt_name(*p);
138  avio_printf(s, "%s|", name);
139  }
140  len = avio_close_dyn_buf(s, &ret);
141  ret[len - 1] = 0;
142  return ret;
143  } else
144  return NULL;
145 }
146 
147 /* Define a function for building a string containing a list of
148  * allowed formats. */
149 #define DEF_CHOOSE_FORMAT(type, var, supported_list, none, get_name) \
150 static char *choose_ ## var ## s(OutputStream *ost) \
151 { \
152  if (ost->enc_ctx->var != none) { \
153  get_name(ost->enc_ctx->var); \
154  return av_strdup(name); \
155  } else if (ost->enc && ost->enc->supported_list) { \
156  const type *p; \
157  AVIOContext *s = NULL; \
158  uint8_t *ret; \
159  int len; \
160  \
161  if (avio_open_dyn_buf(&s) < 0) \
162  exit_program(1); \
163  \
164  for (p = ost->enc->supported_list; *p != none; p++) { \
165  get_name(*p); \
166  avio_printf(s, "%s|", name); \
167  } \
168  len = avio_close_dyn_buf(s, &ret); \
169  ret[len - 1] = 0; \
170  return ret; \
171  } else \
172  return NULL; \
173 }
174 
175 // DEF_CHOOSE_FORMAT(enum AVPixelFormat, pix_fmt, pix_fmts, AV_PIX_FMT_NONE,
176 // GET_PIX_FMT_NAME)
177 
180 
183 
184 DEF_CHOOSE_FORMAT(uint64_t, channel_layout, channel_layouts, 0,
186 
188 {
189  FilterGraph *fg = av_mallocz(sizeof(*fg));
190 
191  if (!fg)
192  exit_program(1);
193  fg->index = nb_filtergraphs;
194 
195  GROW_ARRAY(fg->outputs, fg->nb_outputs);
196  if (!(fg->outputs[0] = av_mallocz(sizeof(*fg->outputs[0]))))
197  exit_program(1);
198  fg->outputs[0]->ost = ost;
199  fg->outputs[0]->graph = fg;
200 
201  ost->filter = fg->outputs[0];
202 
203  GROW_ARRAY(fg->inputs, fg->nb_inputs);
204  if (!(fg->inputs[0] = av_mallocz(sizeof(*fg->inputs[0]))))
205  exit_program(1);
206  fg->inputs[0]->ist = ist;
207  fg->inputs[0]->graph = fg;
208 
209  GROW_ARRAY(ist->filters, ist->nb_filters);
210  ist->filters[ist->nb_filters - 1] = fg->inputs[0];
211 
213  filtergraphs[nb_filtergraphs - 1] = fg;
214 
215  return fg;
216 }
217 
219 {
220  InputStream *ist = NULL;
222  int i;
223 
224  // TODO: support other filter types
225  if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
226  av_log(NULL, AV_LOG_FATAL, "Only video and audio filters supported "
227  "currently.\n");
228  exit_program(1);
229  }
230 
231  if (in->name) {
233  AVStream *st = NULL;
234  char *p;
235  int file_idx = strtol(in->name, &p, 0);
236 
237  if (file_idx < 0 || file_idx >= nb_input_files) {
238  av_log(NULL, AV_LOG_FATAL, "Invalid file index %d in filtergraph description %s.\n",
239  file_idx, fg->graph_desc);
240  exit_program(1);
241  }
242  s = input_files[file_idx]->ctx;
243 
244  for (i = 0; i < s->nb_streams; i++) {
245  enum AVMediaType stream_type = s->streams[i]->codec->codec_type;
246  if (stream_type != type &&
247  !(stream_type == AVMEDIA_TYPE_SUBTITLE &&
248  type == AVMEDIA_TYPE_VIDEO /* sub2video hack */))
249  continue;
250  if (check_stream_specifier(s, s->streams[i], *p == ':' ? p + 1 : p) == 1) {
251  st = s->streams[i];
252  break;
253  }
254  }
255  if (!st) {
256  av_log(NULL, AV_LOG_FATAL, "Stream specifier '%s' in filtergraph description %s "
257  "matches no streams.\n", p, fg->graph_desc);
258  exit_program(1);
259  }
260  ist = input_streams[input_files[file_idx]->ist_index + st->index];
261  } else {
262  /* find the first unused stream of corresponding type */
263  for (i = 0; i < nb_input_streams; i++) {
264  ist = input_streams[i];
265  if (ist->dec_ctx->codec_type == type && ist->discard)
266  break;
267  }
268  if (i == nb_input_streams) {
269  av_log(NULL, AV_LOG_FATAL, "Cannot find a matching stream for "
270  "unlabeled input pad %d on filter %s\n", in->pad_idx,
271  in->filter_ctx->name);
272  exit_program(1);
273  }
274  }
275  av_assert0(ist);
276 
277  ist->discard = 0;
279  ist->st->discard = AVDISCARD_NONE;
280 
281  GROW_ARRAY(fg->inputs, fg->nb_inputs);
282  if (!(fg->inputs[fg->nb_inputs - 1] = av_mallocz(sizeof(*fg->inputs[0]))))
283  exit_program(1);
284  fg->inputs[fg->nb_inputs - 1]->ist = ist;
285  fg->inputs[fg->nb_inputs - 1]->graph = fg;
286 
287  GROW_ARRAY(ist->filters, ist->nb_filters);
288  ist->filters[ist->nb_filters - 1] = fg->inputs[fg->nb_inputs - 1];
289 }
290 
291 static int insert_trim(int64_t start_time, int64_t duration,
292  AVFilterContext **last_filter, int *pad_idx,
293  const char *filter_name)
294 {
295  AVFilterGraph *graph = (*last_filter)->graph;
296  AVFilterContext *ctx;
297  const AVFilter *trim;
298  enum AVMediaType type = avfilter_pad_get_type((*last_filter)->output_pads, *pad_idx);
299  const char *name = (type == AVMEDIA_TYPE_VIDEO) ? "trim" : "atrim";
300  int ret = 0;
301 
302  if (duration == INT64_MAX && start_time == AV_NOPTS_VALUE)
303  return 0;
304 
305  trim = avfilter_get_by_name(name);
306  if (!trim) {
307  av_log(NULL, AV_LOG_ERROR, "%s filter not present, cannot limit "
308  "recording time.\n", name);
310  }
311 
312  ctx = avfilter_graph_alloc_filter(graph, trim, filter_name);
313  if (!ctx)
314  return AVERROR(ENOMEM);
315 
316  if (duration != INT64_MAX) {
317  ret = av_opt_set_int(ctx, "durationi", duration,
319  }
320  if (ret >= 0 && start_time != AV_NOPTS_VALUE) {
321  ret = av_opt_set_int(ctx, "starti", start_time,
323  }
324  if (ret < 0) {
325  av_log(ctx, AV_LOG_ERROR, "Error configuring the %s filter", name);
326  return ret;
327  }
328 
329  ret = avfilter_init_str(ctx, NULL);
330  if (ret < 0)
331  return ret;
332 
333  ret = avfilter_link(*last_filter, *pad_idx, ctx, 0);
334  if (ret < 0)
335  return ret;
336 
337  *last_filter = ctx;
338  *pad_idx = 0;
339  return 0;
340 }
341 
343 {
344  char *pix_fmts;
345  OutputStream *ost = ofilter->ost;
346  OutputFile *of = output_files[ost->file_index];
347  AVCodecContext *codec = ost->enc_ctx;
349  int pad_idx = out->pad_idx;
350  int ret;
351  char name[255];
352 
353  snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index);
354  ret = avfilter_graph_create_filter(&ofilter->filter,
355  avfilter_get_by_name("buffersink"),
356  name, NULL, NULL, fg->graph);
357 
358  if (ret < 0)
359  return ret;
360 
361  if (codec->width || codec->height) {
362  char args[255];
364 
365  snprintf(args, sizeof(args), "%d:%d:0x%X",
366  codec->width,
367  codec->height,
368  (unsigned)ost->sws_flags);
369  snprintf(name, sizeof(name), "scaler for output stream %d:%d",
370  ost->file_index, ost->index);
371  if ((ret = avfilter_graph_create_filter(&filter, avfilter_get_by_name("scale"),
372  name, args, NULL, fg->graph)) < 0)
373  return ret;
374  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
375  return ret;
376 
377  last_filter = filter;
378  pad_idx = 0;
379  }
380 
381  if ((pix_fmts = choose_pix_fmts(ost))) {
383  snprintf(name, sizeof(name), "pixel format for output stream %d:%d",
384  ost->file_index, ost->index);
385  ret = avfilter_graph_create_filter(&filter,
386  avfilter_get_by_name("format"),
387  "format", pix_fmts, NULL, fg->graph);
388  av_freep(&pix_fmts);
389  if (ret < 0)
390  return ret;
391  if ((ret = avfilter_link(last_filter, pad_idx, filter, 0)) < 0)
392  return ret;
393 
394  last_filter = filter;
395  pad_idx = 0;
396  }
397 
398  if (ost->frame_rate.num && 0) {
399  AVFilterContext *fps;
400  char args[255];
401 
402  snprintf(args, sizeof(args), "fps=%d/%d", ost->frame_rate.num,
403  ost->frame_rate.den);
404  snprintf(name, sizeof(name), "fps for output stream %d:%d",
405  ost->file_index, ost->index);
407  name, args, NULL, fg->graph);
408  if (ret < 0)
409  return ret;
410 
411  ret = avfilter_link(last_filter, pad_idx, fps, 0);
412  if (ret < 0)
413  return ret;
414  last_filter = fps;
415  pad_idx = 0;
416  }
417 
418  snprintf(name, sizeof(name), "trim for output stream %d:%d",
419  ost->file_index, ost->index);
420  ret = insert_trim(of->start_time, of->recording_time,
421  &last_filter, &pad_idx, name);
422  if (ret < 0)
423  return ret;
424 
425 
426  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
427  return ret;
428 
429  return 0;
430 }
431 
433 {
434  OutputStream *ost = ofilter->ost;
435  OutputFile *of = output_files[ost->file_index];
436  AVCodecContext *codec = ost->enc_ctx;
438  int pad_idx = out->pad_idx;
439  char *sample_fmts, *sample_rates, *channel_layouts;
440  char name[255];
441  int ret;
442 
443  snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index);
444  ret = avfilter_graph_create_filter(&ofilter->filter,
445  avfilter_get_by_name("abuffersink"),
446  name, NULL, NULL, fg->graph);
447  if (ret < 0)
448  return ret;
449  if ((ret = av_opt_set_int(ofilter->filter, "all_channel_counts", 1, AV_OPT_SEARCH_CHILDREN)) < 0)
450  return ret;
451 
452 #define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \
453  AVFilterContext *filt_ctx; \
454  \
455  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
456  "similarly to -af " filter_name "=%s.\n", arg); \
457  \
458  ret = avfilter_graph_create_filter(&filt_ctx, \
459  avfilter_get_by_name(filter_name), \
460  filter_name, arg, NULL, fg->graph); \
461  if (ret < 0) \
462  return ret; \
463  \
464  ret = avfilter_link(last_filter, pad_idx, filt_ctx, 0); \
465  if (ret < 0) \
466  return ret; \
467  \
468  last_filter = filt_ctx; \
469  pad_idx = 0; \
470 } while (0)
471  if (ost->audio_channels_mapped) {
472  int i;
473  AVBPrint pan_buf;
474  av_bprint_init(&pan_buf, 256, 8192);
475  av_bprintf(&pan_buf, "0x%"PRIx64,
477  for (i = 0; i < ost->audio_channels_mapped; i++)
478  if (ost->audio_channels_map[i] != -1)
479  av_bprintf(&pan_buf, ":c%d=c%d", i, ost->audio_channels_map[i]);
480 
481  AUTO_INSERT_FILTER("-map_channel", "pan", pan_buf.str);
482  av_bprint_finalize(&pan_buf, NULL);
483  }
484 
485  if (codec->channels && !codec->channel_layout)
487 
488  sample_fmts = choose_sample_fmts(ost);
489  sample_rates = choose_sample_rates(ost);
490  channel_layouts = choose_channel_layouts(ost);
491  if (sample_fmts || sample_rates || channel_layouts) {
492  AVFilterContext *format;
493  char args[256];
494  args[0] = 0;
495 
496  if (sample_fmts)
497  av_strlcatf(args, sizeof(args), "sample_fmts=%s:",
498  sample_fmts);
499  if (sample_rates)
500  av_strlcatf(args, sizeof(args), "sample_rates=%s:",
501  sample_rates);
502  if (channel_layouts)
503  av_strlcatf(args, sizeof(args), "channel_layouts=%s:",
504  channel_layouts);
505 
506  av_freep(&sample_fmts);
507  av_freep(&sample_rates);
508  av_freep(&channel_layouts);
509 
510  snprintf(name, sizeof(name), "audio format for output stream %d:%d",
511  ost->file_index, ost->index);
512  ret = avfilter_graph_create_filter(&format,
513  avfilter_get_by_name("aformat"),
514  name, args, NULL, fg->graph);
515  if (ret < 0)
516  return ret;
517 
518  ret = avfilter_link(last_filter, pad_idx, format, 0);
519  if (ret < 0)
520  return ret;
521 
522  last_filter = format;
523  pad_idx = 0;
524  }
525 
526  if (audio_volume != 256 && 0) {
527  char args[256];
528 
529  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
530  AUTO_INSERT_FILTER("-vol", "volume", args);
531  }
532 
533  if (ost->apad && of->shortest) {
534  char args[256];
535  int i;
536 
537  for (i=0; i<of->ctx->nb_streams; i++)
538  if (of->ctx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
539  break;
540 
541  if (i<of->ctx->nb_streams) {
542  snprintf(args, sizeof(args), "%s", ost->apad);
543  AUTO_INSERT_FILTER("-apad", "apad", args);
544  }
545  }
546 
547  snprintf(name, sizeof(name), "trim for output stream %d:%d",
548  ost->file_index, ost->index);
549  ret = insert_trim(of->start_time, of->recording_time,
550  &last_filter, &pad_idx, name);
551  if (ret < 0)
552  return ret;
553 
554  if ((ret = avfilter_link(last_filter, pad_idx, ofilter->filter, 0)) < 0)
555  return ret;
556 
557  return 0;
558 }
559 
560 #define DESCRIBE_FILTER_LINK(f, inout, in) \
561 { \
562  AVFilterContext *ctx = inout->filter_ctx; \
563  AVFilterPad *pads = in ? ctx->input_pads : ctx->output_pads; \
564  int nb_pads = in ? ctx->nb_inputs : ctx->nb_outputs; \
565  AVIOContext *pb; \
566  \
567  if (avio_open_dyn_buf(&pb) < 0) \
568  exit_program(1); \
569  \
570  avio_printf(pb, "%s", ctx->filter->name); \
571  if (nb_pads > 1) \
572  avio_printf(pb, ":%s", avfilter_pad_get_name(pads, inout->pad_idx));\
573  avio_w8(pb, 0); \
574  avio_close_dyn_buf(pb, &f->name); \
575 }
576 
578 {
579  av_freep(&ofilter->name);
580  DESCRIBE_FILTER_LINK(ofilter, out, 0);
581 
582  switch (avfilter_pad_get_type(out->filter_ctx->output_pads, out->pad_idx)) {
583  case AVMEDIA_TYPE_VIDEO: return configure_output_video_filter(fg, ofilter, out);
584  case AVMEDIA_TYPE_AUDIO: return configure_output_audio_filter(fg, ofilter, out);
585  default: av_assert0(0);
586  }
587 }
588 
590 {
592  int i, w, h;
593 
594  /* Compute the size of the canvas for the subtitles stream.
595  If the subtitles codec has set a size, use it. Otherwise use the
596  maximum dimensions of the video streams in the same file. */
597  w = ist->dec_ctx->width;
598  h = ist->dec_ctx->height;
599  if (!(w && h)) {
600  for (i = 0; i < avf->nb_streams; i++) {
601  if (avf->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
602  w = FFMAX(w, avf->streams[i]->codec->width);
603  h = FFMAX(h, avf->streams[i]->codec->height);
604  }
605  }
606  if (!(w && h)) {
607  w = FFMAX(w, 720);
608  h = FFMAX(h, 576);
609  }
610  av_log(avf, AV_LOG_INFO, "sub2video: using %dx%d canvas\n", w, h);
611  }
612  ist->sub2video.w = ist->dec_ctx->width = ist->resample_width = w;
613  ist->sub2video.h = ist->dec_ctx->height = ist->resample_height = h;
614 
615  /* rectangles are AV_PIX_FMT_PAL8, but we have no guarantee that the
616  palettes for all rectangles are identical or compatible */
618 
619  ist->sub2video.frame = av_frame_alloc();
620  if (!ist->sub2video.frame)
621  return AVERROR(ENOMEM);
622  ist->sub2video.last_pts = INT64_MIN;
623  return 0;
624 }
625 
627  AVFilterInOut *in)
628 {
630  const AVFilter *buffer_filt = avfilter_get_by_name("buffer");
631  InputStream *ist = ifilter->ist;
632  InputFile *f = input_files[ist->file_index];
633  AVRational tb = ist->framerate.num ? av_inv_q(ist->framerate) :
634  ist->st->time_base;
635  AVRational fr = ist->framerate;
636  AVRational sar;
637  AVBPrint args;
638  char name[255];
639  int ret, pad_idx = 0;
640  int64_t tsoffset = 0;
641 
642  if (ist->dec_ctx->codec_type == AVMEDIA_TYPE_AUDIO) {
643  av_log(NULL, AV_LOG_ERROR, "Cannot connect video filter to audio input\n");
644  return AVERROR(EINVAL);
645  }
646 
647  if (!fr.num)
648  fr = av_guess_frame_rate(input_files[ist->file_index]->ctx, ist->st, NULL);
649 
651  ret = sub2video_prepare(ist);
652  if (ret < 0)
653  return ret;
654  }
655 
656  sar = ist->st->sample_aspect_ratio.num ?
657  ist->st->sample_aspect_ratio :
659  if(!sar.den)
660  sar = (AVRational){0,1};
661  av_bprint_init(&args, 0, 1);
662  av_bprintf(&args,
663  "video_size=%dx%d:pix_fmt=%d:time_base=%d/%d:"
664  "pixel_aspect=%d/%d:sws_param=flags=%d", ist->resample_width,
665  ist->resample_height,
667  tb.num, tb.den, sar.num, sar.den,
669  if (fr.num && fr.den)
670  av_bprintf(&args, ":frame_rate=%d/%d", fr.num, fr.den);
671  snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index,
672  ist->file_index, ist->st->index);
673 
674  if ((ret = avfilter_graph_create_filter(&ifilter->filter, buffer_filt, name,
675  args.str, NULL, fg->graph)) < 0)
676  return ret;
677  last_filter = ifilter->filter;
678 
679  if (ist->framerate.num) {
680  AVFilterContext *setpts;
681 
682  snprintf(name, sizeof(name), "force CFR for input from stream %d:%d",
683  ist->file_index, ist->st->index);
684  if ((ret = avfilter_graph_create_filter(&setpts,
685  avfilter_get_by_name("setpts"),
686  name, "N", NULL,
687  fg->graph)) < 0)
688  return ret;
689 
690  if ((ret = avfilter_link(last_filter, 0, setpts, 0)) < 0)
691  return ret;
692 
693  last_filter = setpts;
694  }
695 
696  if (do_deinterlace) {
697  AVFilterContext *yadif;
698 
699  snprintf(name, sizeof(name), "deinterlace input from stream %d:%d",
700  ist->file_index, ist->st->index);
701  if ((ret = avfilter_graph_create_filter(&yadif,
702  avfilter_get_by_name("yadif"),
703  name, "", NULL,
704  fg->graph)) < 0)
705  return ret;
706 
707  if ((ret = avfilter_link(last_filter, 0, yadif, 0)) < 0)
708  return ret;
709 
710  last_filter = yadif;
711  }
712 
713  snprintf(name, sizeof(name), "trim for input stream %d:%d",
714  ist->file_index, ist->st->index);
715  if (copy_ts) {
716  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
718  tsoffset += f->ctx->start_time;
719  }
720  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
721  AV_NOPTS_VALUE : tsoffset, f->recording_time,
722  &last_filter, &pad_idx, name);
723  if (ret < 0)
724  return ret;
725 
726  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
727  return ret;
728  return 0;
729 }
730 
732  AVFilterInOut *in)
733 {
735  const AVFilter *abuffer_filt = avfilter_get_by_name("abuffer");
736  InputStream *ist = ifilter->ist;
737  InputFile *f = input_files[ist->file_index];
738  AVBPrint args;
739  char name[255];
740  int ret, pad_idx = 0;
741  int64_t tsoffset = 0;
742 
743  if (ist->dec_ctx->codec_type != AVMEDIA_TYPE_AUDIO) {
744  av_log(NULL, AV_LOG_ERROR, "Cannot connect audio filter to non audio input\n");
745  return AVERROR(EINVAL);
746  }
747 
749  av_bprintf(&args, "time_base=%d/%d:sample_rate=%d:sample_fmt=%s",
750  1, ist->dec_ctx->sample_rate,
751  ist->dec_ctx->sample_rate,
753  if (ist->dec_ctx->channel_layout)
754  av_bprintf(&args, ":channel_layout=0x%"PRIx64,
755  ist->dec_ctx->channel_layout);
756  else
757  av_bprintf(&args, ":channels=%d", ist->dec_ctx->channels);
758  snprintf(name, sizeof(name), "graph %d input from stream %d:%d", fg->index,
759  ist->file_index, ist->st->index);
760 
761  if ((ret = avfilter_graph_create_filter(&ifilter->filter, abuffer_filt,
762  name, args.str, NULL,
763  fg->graph)) < 0)
764  return ret;
765  last_filter = ifilter->filter;
766 
767 #define AUTO_INSERT_FILTER_INPUT(opt_name, filter_name, arg) do { \
768  AVFilterContext *filt_ctx; \
769  \
770  av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
771  "similarly to -af " filter_name "=%s.\n", arg); \
772  \
773  snprintf(name, sizeof(name), "graph %d %s for input stream %d:%d", \
774  fg->index, filter_name, ist->file_index, ist->st->index); \
775  ret = avfilter_graph_create_filter(&filt_ctx, \
776  avfilter_get_by_name(filter_name), \
777  name, arg, NULL, fg->graph); \
778  if (ret < 0) \
779  return ret; \
780  \
781  ret = avfilter_link(last_filter, 0, filt_ctx, 0); \
782  if (ret < 0) \
783  return ret; \
784  \
785  last_filter = filt_ctx; \
786 } while (0)
787 
788  if (audio_sync_method > 0) {
789  char args[256] = {0};
790 
791  av_strlcatf(args, sizeof(args), "async=%d", audio_sync_method);
792  if (audio_drift_threshold != 0.1)
793  av_strlcatf(args, sizeof(args), ":min_hard_comp=%f", audio_drift_threshold);
794  if (!fg->reconfiguration)
795  av_strlcatf(args, sizeof(args), ":first_pts=0");
796  AUTO_INSERT_FILTER_INPUT("-async", "aresample", args);
797  }
798 
799 // if (ost->audio_channels_mapped) {
800 // int i;
801 // AVBPrint pan_buf;
802 // av_bprint_init(&pan_buf, 256, 8192);
803 // av_bprintf(&pan_buf, "0x%"PRIx64,
804 // av_get_default_channel_layout(ost->audio_channels_mapped));
805 // for (i = 0; i < ost->audio_channels_mapped; i++)
806 // if (ost->audio_channels_map[i] != -1)
807 // av_bprintf(&pan_buf, ":c%d=c%d", i, ost->audio_channels_map[i]);
808 // AUTO_INSERT_FILTER_INPUT("-map_channel", "pan", pan_buf.str);
809 // av_bprint_finalize(&pan_buf, NULL);
810 // }
811 
812  if (audio_volume != 256) {
813  char args[256];
814 
815  av_log(NULL, AV_LOG_WARNING, "-vol has been deprecated. Use the volume "
816  "audio filter instead.\n");
817 
818  snprintf(args, sizeof(args), "%f", audio_volume / 256.);
819  AUTO_INSERT_FILTER_INPUT("-vol", "volume", args);
820  }
821 
822  snprintf(name, sizeof(name), "trim for input stream %d:%d",
823  ist->file_index, ist->st->index);
824  if (copy_ts) {
825  tsoffset = f->start_time == AV_NOPTS_VALUE ? 0 : f->start_time;
827  tsoffset += f->ctx->start_time;
828  }
829  ret = insert_trim(((f->start_time == AV_NOPTS_VALUE) || !f->accurate_seek) ?
830  AV_NOPTS_VALUE : tsoffset, f->recording_time,
831  &last_filter, &pad_idx, name);
832  if (ret < 0)
833  return ret;
834 
835  if ((ret = avfilter_link(last_filter, 0, in->filter_ctx, in->pad_idx)) < 0)
836  return ret;
837 
838  return 0;
839 }
840 
842  AVFilterInOut *in)
843 {
844  av_freep(&ifilter->name);
845  DESCRIBE_FILTER_LINK(ifilter, in, 1);
846 
847  if (!ifilter->ist->dec) {
849  "No decoder for stream #%d:%d, filtering impossible\n",
850  ifilter->ist->file_index, ifilter->ist->st->index);
852  }
853  switch (avfilter_pad_get_type(in->filter_ctx->input_pads, in->pad_idx)) {
854  case AVMEDIA_TYPE_VIDEO: return configure_input_video_filter(fg, ifilter, in);
855  case AVMEDIA_TYPE_AUDIO: return configure_input_audio_filter(fg, ifilter, in);
856  default: av_assert0(0);
857  }
858 }
859 
861 {
862  AVFilterInOut *inputs, *outputs, *cur;
863  int ret, i, init = !fg->graph, simple = !fg->graph_desc;
864  const char *graph_desc = simple ? fg->outputs[0]->ost->avfilter :
865  fg->graph_desc;
866 
868  if (!(fg->graph = avfilter_graph_alloc()))
869  return AVERROR(ENOMEM);
870 
871  if (simple) {
872  OutputStream *ost = fg->outputs[0]->ost;
873  char args[512];
874  AVDictionaryEntry *e = NULL;
875 
876  snprintf(args, sizeof(args), "flags=0x%X", (unsigned)ost->sws_flags);
877  fg->graph->scale_sws_opts = av_strdup(args);
878 
879  args[0] = 0;
880  while ((e = av_dict_get(ost->swr_opts, "", e,
882  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
883  }
884  if (strlen(args))
885  args[strlen(args)-1] = 0;
886  av_opt_set(fg->graph, "aresample_swr_opts", args, 0);
887 
888  args[0] = '\0';
889  while ((e = av_dict_get(fg->outputs[0]->ost->resample_opts, "", e,
891  av_strlcatf(args, sizeof(args), "%s=%s:", e->key, e->value);
892  }
893  if (strlen(args))
894  args[strlen(args) - 1] = '\0';
895  fg->graph->resample_lavr_opts = av_strdup(args);
896 
897  e = av_dict_get(ost->encoder_opts, "threads", NULL, 0);
898  if (e)
899  av_opt_set(fg->graph, "threads", e->value, 0);
900  }
901 
902  if ((ret = avfilter_graph_parse2(fg->graph, graph_desc, &inputs, &outputs)) < 0)
903  return ret;
904 
905  if (simple && (!inputs || inputs->next || !outputs || outputs->next)) {
906  av_log(NULL, AV_LOG_ERROR, "Simple filtergraph '%s' does not have "
907  "exactly one input and output.\n", graph_desc);
908  return AVERROR(EINVAL);
909  }
910 
911  for (cur = inputs; !simple && init && cur; cur = cur->next)
912  init_input_filter(fg, cur);
913 
914  for (cur = inputs, i = 0; cur; cur = cur->next, i++)
915  if ((ret = configure_input_filter(fg, fg->inputs[i], cur)) < 0) {
916  avfilter_inout_free(&inputs);
917  avfilter_inout_free(&outputs);
918  return ret;
919  }
920  avfilter_inout_free(&inputs);
921 
922  if (!init || simple) {
923  /* we already know the mappings between lavfi outputs and output streams,
924  * so we can finish the setup */
925  for (cur = outputs, i = 0; cur; cur = cur->next, i++)
926  configure_output_filter(fg, fg->outputs[i], cur);
927  avfilter_inout_free(&outputs);
928 
929  if ((ret = avfilter_graph_config(fg->graph, NULL)) < 0)
930  return ret;
931  } else {
932  /* wait until output mappings are processed */
933  for (cur = outputs; cur;) {
934  GROW_ARRAY(fg->outputs, fg->nb_outputs);
935  if (!(fg->outputs[fg->nb_outputs - 1] = av_mallocz(sizeof(*fg->outputs[0]))))
936  exit_program(1);
937  fg->outputs[fg->nb_outputs - 1]->graph = fg;
938  fg->outputs[fg->nb_outputs - 1]->out_tmp = cur;
939  cur = cur->next;
940  fg->outputs[fg->nb_outputs - 1]->out_tmp->next = NULL;
941  }
942  }
943 
944  fg->reconfiguration = 1;
945 
946  for (i = 0; i < fg->nb_outputs; i++) {
947  OutputStream *ost = fg->outputs[i]->ost;
948  if (ost &&
949  ost->enc->type == AVMEDIA_TYPE_AUDIO &&
952  ost->enc_ctx->frame_size);
953  }
954 
955  return 0;
956 }
957 
959 {
960  int i;
961  for (i = 0; i < fg->nb_inputs; i++)
962  if (fg->inputs[i]->ist == ist)
963  return 1;
964  return 0;
965 }
966 
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:439
const char * s
Definition: avisynth_c.h:669
Bytestream IO Context.
Definition: avio.h:68
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:457
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition: bprint.c:94
uint8_t * name
Definition: ffmpeg.h:225
int nb_outputs
Definition: ffmpeg.h:241
AVDictionary * swr_opts
Definition: ffmpeg.h:427
#define DECODING_FOR_FILTER
Definition: ffmpeg.h:251
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2029
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:1112
AVRational frame_rate
Definition: ffmpeg.h:399
#define CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition: avcodec.h:880
int accurate_seek
Definition: ffmpeg.h:347
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:73
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:181
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:246
Main libavfilter public API header.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
AVRational framerate
Definition: ffmpeg.h:274
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:1360
int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the given stream matches a stream specifier.
Definition: cmdutils.c:1971
AVFilterInOut * out_tmp
Definition: ffmpeg.h:228
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:888
int decoding_needed
Definition: ffmpeg.h:249
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:879
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:808
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_dlog(ac->avr,"%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
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:1621
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:1442
#define DEF_CHOOSE_FORMAT(type, var, supported_list, none, get_name)
enum AVMediaType type
Definition: avcodec.h:3186
int nb_input_streams
Definition: ffmpeg.c:137
AVCodec.
Definition: avcodec.h:3173
int avio_open_dyn_buf(AVIOContext **s)
Open a write only memory stream.
Definition: aviobuf.c:1100
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition: ffmpeg.h:458
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition: bprint.c:235
int index
Definition: ffmpeg.h:232
char * scale_sws_opts
sws options to use for the auto-inserted scale filters
Definition: avfilter.h:1178
struct FilterGraph * graph
Definition: ffmpeg.h:217
Format I/O context.
Definition: avformat.h:1226
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:4201
#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:40
struct InputStream * ist
Definition: ffmpeg.h:216
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:235
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:319
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1991
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:461
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1294
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:428
AVFilterContext * filter
Definition: ffmpeg.h:222
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV422P and setting color_...
Definition: pixfmt.h:81
int nb_input_files
Definition: ffmpeg.c:139
#define CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition: avcodec.h:757
AVCodec * dec
Definition: ffmpeg.h:254
static int64_t duration
Definition: ffplay.c:320
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:245
struct InputStream::sub2video sub2video
int resample_pix_fmt
Definition: ffmpeg.h:280
int resample_height
Definition: ffmpeg.h:278
#define av_log(a,...)
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:175
#define GET_CH_LAYOUT_NAME(ch_layout)
Definition: cmdutils.h:592
FilterGraph ** filtergraphs
Definition: ffmpeg.c:146
AVFilterContext * filter
Definition: ffmpeg.h:215
#define AVERROR(e)
Definition: error.h:43
int64_t sws_flags
Definition: ffmpeg.h:425
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:102
int capabilities
Codec capabilities.
Definition: avcodec.h:3192
int flags
CODEC_FLAG_*.
Definition: avcodec.h:1333
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:490
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
Definition: avcodec.h:3180
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:79
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:2044
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:72
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:826
OutputFilter * filter
Definition: ffmpeg.h:420
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:1282
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:3194
external API header
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of PIX_FMT_YUV420P and setting color_...
Definition: pixfmt.h:80
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition: opt.h:602
struct OutputStream * ost
Definition: ffmpeg.h:223
ret
Definition: avfilter.c:974
int width
picture width / height.
Definition: avcodec.h:1412
char * apad
Definition: ffmpeg.h:430
AVS_Value args
Definition: avisynth_c.h:604
int nb_filtergraphs
Definition: ffmpeg.c:147
int(* hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame)
Definition: ffmpeg.h:319
int audio_channels_mapped
Definition: ffmpeg.h:415
#define GET_SAMPLE_FMT_NAME(sample_fmt)
Definition: cmdutils.h:585
AVFilterContext * filter_ctx
filter context associated to this input/output
Definition: avfilter.h:1354
void exit_program(int ret)
Wraps exit with a program-specific cleanup routine.
Definition: cmdutils.c:121
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:807
A linked-list of the inputs/outputs of the filter chain.
Definition: avfilter.h:1349
all automatic conversions disabled
Definition: avfilter.h:1322
InputFilter ** filters
Definition: ffmpeg.h:305
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:342
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:2003
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
Definition: avcodec.h:2545
sample_rate
#define AV_LOG_INFO
Standard information.
Definition: log.h:186
#define AV_BPRINT_SIZE_AUTOMATIC
static int configure_input_audio_filter(FilterGraph *fg, InputFilter *ifilter, AVFilterInOut *in)
enum AVMediaType codec_type
Definition: avcodec.h:1247
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:59
enum AVCodecID codec_id
Definition: avcodec.h:1256
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:265
int sample_rate
samples per second
Definition: avcodec.h:1983
static char * choose_pix_fmts(OutputStream *ost)
int ist_index
Definition: ffmpeg.h:337
const char * graph_desc
Definition: ffmpeg.h:233
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:341
main external API structure.
Definition: avcodec.h:1239
#define AV_PIX_FMT_RGB32
Definition: pixfmt.h:335
static int sub2video_prepare(InputStream *ist)
AVCodecContext * enc_ctx
Definition: ffmpeg.h:391
#define AUTO_INSERT_FILTER(opt_name, filter_name, arg)
GLint GLenum type
Definition: opengl_enc.c:105
AVCodecContext * dec_ctx
Definition: ffmpeg.h:253
AVStream * st
Definition: ffmpeg.h:246
int * audio_channels_map
Definition: ffmpeg.h:414
Filter definition.
Definition: avfilter.h:470
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:237
int pad_idx
index of the filt_ctx pad to use for linking
Definition: avfilter.h:1357
rational number numerator/denominator
Definition: rational.h:43
int file_index
Definition: ffmpeg.h:375
AVMediaType
Definition: avutil.h:192
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
#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:1351
int nb_filters
Definition: ffmpeg.h:306
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:1311
#define AVERROR_FILTER_NOT_FOUND
Filter not found.
Definition: error.h:58
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_dlog(ac->avr,"%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
int resample_width
Definition: ffmpeg.h:279
int reconfiguration
Definition: ffmpeg.h:236
struct FilterGraph * graph
Definition: ffmpeg.h:224
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:68
void av_buffersink_set_frame_size(AVFilterContext *ctx, unsigned frame_size)
Set the frame size for an audio buffer sink.
Definition: buffersink.c:259
#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 PIX_FMT_YUV444P and setting color_...
Definition: pixfmt.h:82
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:334
AVCodec * enc
Definition: ffmpeg.h:392
#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:421
uint8_t * name
Definition: ffmpeg.h:218
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:1984
OutputFilter ** outputs
Definition: ffmpeg.h:240
InputFile ** input_files
Definition: ffmpeg.c:138
AVFormatContext * ctx
Definition: ffmpeg.h:454
An instance of a filter.
Definition: avfilter.h:633
AVDictionary * encoder_opts
Definition: ffmpeg.h:426
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:238
#define av_freep(p)
enum AVPixelFormat hwaccel_retrieved_pix_fmt
Definition: ffmpeg.h:321
#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:143
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition: log.h:169
enum AVSampleFormat * sample_fmts
array of supported sample formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3196
int discard
Definition: ffmpeg.h:247
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:1950
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avformat.h:849
void choose_sample_fmt(AVStream *st, AVCodec *codec)
Definition: ffmpeg_filter.c:78
int nb_inputs
Definition: ffmpeg.h:239
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:872
int index
Definition: ffmpeg.h:376
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66
#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:368
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:2541
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:241
#define tb
Definition: regdef.h:68
InputStream ** input_streams
Definition: ffmpeg.c:136
int avio_printf(AVIOContext *s, const char *fmt,...) av_printf_format(2
discard nothing
Definition: avcodec.h:661
const char * name
Definition: opengl_enc.c:103