FFmpeg
Loading...
Searching...
No Matches
ffmpeg_mux_init.c
Go to the documentation of this file.
1/*
2 * Muxer/output file setup.
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 <string.h>
22
23#include "cmdutils.h"
24#include "ffmpeg.h"
25#include "ffmpeg_mux.h"
26#include "ffmpeg_sched.h"
27#include "fopen_utf8.h"
28
30#include "libavformat/avio.h"
31
32#include "libavcodec/avcodec.h"
33
35
36#include "libavutil/avassert.h"
37#include "libavutil/avstring.h"
38#include "libavutil/avutil.h"
39#include "libavutil/bprint.h"
40#include "libavutil/dict.h"
41#include "libavutil/display.h"
43#include "libavutil/iamf.h"
45#include "libavutil/log.h"
46#include "libavutil/mem.h"
47#include "libavutil/opt.h"
49#include "libavutil/pixdesc.h"
50#include "libavutil/stereo3d.h"
51
52#define DEFAULT_PASS_LOGFILENAME_PREFIX "ffmpeg2pass"
53
54static int check_opt_bitexact(void *ctx, const AVDictionary *opts,
55 const char *opt_name, int flag)
56{
57 const AVDictionaryEntry *e = av_dict_get(opts, opt_name, NULL, 0);
58
59 if (e) {
60 const AVOption *o = av_opt_find(ctx, opt_name, NULL, 0, 0);
61 int val = 0;
62 if (!o)
63 return 0;
65 return !!(val & flag);
66 }
67 return 0;
68}
69
71 MuxStream *ms, const AVCodec **enc)
72{
73 OutputStream *ost = &ms->ost;
74 enum AVMediaType type = ost->type;
75 const char *codec_name = NULL;
76
77 *enc = NULL;
78
79 opt_match_per_stream_str(ost, &o->codec_names, s, ost->st, &codec_name);
80
81 if (type != AVMEDIA_TYPE_VIDEO &&
84 if (codec_name && strcmp(codec_name, "copy")) {
85 const char *type_str = av_get_media_type_string(type);
87 "Encoder '%s' specified, but only '-codec copy' supported "
88 "for %s streams\n", codec_name, type_str);
89 return AVERROR(ENOSYS);
90 }
91 return 0;
92 }
93
94 if (!codec_name) {
95 ms->par_in->codec_id = av_guess_codec(s->oformat, NULL, s->url, NULL, ost->type);
97 if (!*enc) {
98 av_log(ost, AV_LOG_FATAL, "Automatic encoder selection failed "
99 "Default encoder for format %s (codec %s) is "
100 "probably disabled. Please choose an encoder manually.\n",
101 s->oformat->name, avcodec_get_name(ms->par_in->codec_id));
103 }
104 } else if (strcmp(codec_name, "copy")) {
105 int ret = find_codec(ost, codec_name, ost->type, 1, enc);
106 if (ret < 0)
107 return ret;
108 ms->par_in->codec_id = (*enc)->id;
109 }
110
111 return 0;
112}
113
114static char *get_line(AVIOContext *s, AVBPrint *bprint)
115{
116 char c;
117
118 while ((c = avio_r8(s)) && c != '\n')
119 av_bprint_chars(bprint, c, 1);
120
121 if (!av_bprint_is_complete(bprint))
122 return NULL;
123
124 return bprint->str;
125}
126
127static int get_preset_file_2(const char *preset_name, const char *codec_name, AVIOContext **s)
128{
129 int i, ret = -1;
130 char filename[1000];
131 char *env_avconv_datadir = getenv_utf8("AVCONV_DATADIR");
132 char *env_home = getenv_utf8("HOME");
133 const char *base[3] = { env_avconv_datadir,
134 env_home,
136 };
137
138 for (i = 0; i < FF_ARRAY_ELEMS(base) && ret < 0; i++) {
139 if (!base[i])
140 continue;
141 if (codec_name) {
142 snprintf(filename, sizeof(filename), "%s%s/%s-%s.avpreset", base[i],
143 i != 1 ? "" : "/.avconv", codec_name, preset_name);
144 ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL);
145 }
146 if (ret < 0) {
147 snprintf(filename, sizeof(filename), "%s%s/%s.avpreset", base[i],
148 i != 1 ? "" : "/.avconv", preset_name);
149 ret = avio_open2(s, filename, AVIO_FLAG_READ, &int_cb, NULL);
150 }
151 }
152 freeenv_utf8(env_home);
153 freeenv_utf8(env_avconv_datadir);
154 return ret;
155}
156
157typedef struct EncStatsFile {
158 char *path;
161
164
165static int enc_stats_get_file(AVIOContext **io, const char *path)
166{
167 EncStatsFile *esf;
168 int ret;
169
170 for (int i = 0; i < nb_enc_stats_files; i++)
171 if (!strcmp(path, enc_stats_files[i].path)) {
172 *io = enc_stats_files[i].io;
173 return 0;
174 }
175
177 if (ret < 0)
178 return ret;
179
181
182 ret = avio_open2(&esf->io, path, AVIO_FLAG_WRITE, &int_cb, NULL);
183 if (ret < 0) {
184 av_log(NULL, AV_LOG_ERROR, "Error opening stats file '%s': %s\n",
185 path, av_err2str(ret));
186 return ret;
187 }
188
189 esf->path = av_strdup(path);
190 if (!esf->path)
191 return AVERROR(ENOMEM);
192
193 *io = esf->io;
194
195 return 0;
196}
197
199{
200 for (int i = 0; i < nb_enc_stats_files; i++) {
201 av_freep(&enc_stats_files[i].path);
203 }
206}
207
208static int unescape(char **pdst, size_t *dst_len,
209 const char **pstr, char delim)
210{
211 const char *str = *pstr;
212 char *dst;
213 size_t len, idx;
214
215 *pdst = NULL;
216
217 len = strlen(str);
218 if (!len)
219 return 0;
220
221 dst = av_malloc(len + 1);
222 if (!dst)
223 return AVERROR(ENOMEM);
224
225 for (idx = 0; *str; idx++, str++) {
226 if (str[0] == '\\' && str[1])
227 str++;
228 else if (*str == delim)
229 break;
230
231 dst[idx] = *str;
232 }
233 if (!idx) {
234 av_freep(&dst);
235 return 0;
236 }
237
238 dst[idx] = 0;
239
240 *pdst = dst;
241 *dst_len = idx;
242 *pstr = str;
243
244 return 0;
245}
246
247static int enc_stats_init(OutputStream *ost, EncStats *es, int pre,
248 const char *path, const char *fmt_spec)
249{
250 static const struct {
251 enum EncStatsType type;
252 const char *str;
253 unsigned pre_only:1;
254 unsigned post_only:1;
255 unsigned need_input_data:1;
256 } fmt_specs[] = {
257 { ENC_STATS_FILE_IDX, "fidx" },
258 { ENC_STATS_STREAM_IDX, "sidx" },
259 { ENC_STATS_FRAME_NUM, "n" },
260 { ENC_STATS_FRAME_NUM_IN, "ni", 0, 0, 1 },
261 { ENC_STATS_TIMEBASE, "tb" },
262 { ENC_STATS_TIMEBASE_IN, "tbi", 0, 0, 1 },
263 { ENC_STATS_PTS, "pts" },
264 { ENC_STATS_PTS_TIME, "t" },
265 { ENC_STATS_PTS_IN, "ptsi", 0, 0, 1 },
266 { ENC_STATS_PTS_TIME_IN, "ti", 0, 0, 1 },
267 { ENC_STATS_DTS, "dts", 0, 1 },
268 { ENC_STATS_DTS_TIME, "dt", 0, 1 },
269 { ENC_STATS_SAMPLE_NUM, "sn", 1 },
270 { ENC_STATS_NB_SAMPLES, "samp", 1 },
271 { ENC_STATS_PKT_SIZE, "size", 0, 1 },
272 { ENC_STATS_BITRATE, "br", 0, 1 },
273 { ENC_STATS_AVG_BITRATE, "abr", 0, 1 },
274 { ENC_STATS_KEYFRAME, "key", 0, 1 },
275 };
276 const char *next = fmt_spec;
277
278 int ret;
279
280 while (*next) {
282 char *val;
283 size_t val_len;
284
285 // get the sequence up until next opening brace
286 ret = unescape(&val, &val_len, &next, '{');
287 if (ret < 0)
288 return ret;
289
290 if (val) {
291 ret = GROW_ARRAY(es->components, es->nb_components);
292 if (ret < 0) {
293 av_freep(&val);
294 return ret;
295 }
296
297 c = &es->components[es->nb_components - 1];
298 c->type = ENC_STATS_LITERAL;
299 c->str = val;
300 c->str_len = val_len;
301 }
302
303 if (!*next)
304 break;
305 next++;
306
307 // get the part inside braces
308 ret = unescape(&val, &val_len, &next, '}');
309 if (ret < 0)
310 return ret;
311
312 if (!val) {
314 "Empty formatting directive in: %s\n", fmt_spec);
315 return AVERROR(EINVAL);
316 }
317
318 if (!*next) {
320 "Missing closing brace in: %s\n", fmt_spec);
321 ret = AVERROR(EINVAL);
322 goto fail;
323 }
324 next++;
325
326 ret = GROW_ARRAY(es->components, es->nb_components);
327 if (ret < 0)
328 goto fail;
329
330 c = &es->components[es->nb_components - 1];
331
332 for (size_t i = 0; i < FF_ARRAY_ELEMS(fmt_specs); i++) {
333 if (!strcmp(val, fmt_specs[i].str)) {
334 if ((pre && fmt_specs[i].post_only) || (!pre && fmt_specs[i].pre_only)) {
336 "Format directive '%s' may only be used %s-encoding\n",
337 val, pre ? "post" : "pre");
338 ret = AVERROR(EINVAL);
339 goto fail;
340 }
341
342 c->type = fmt_specs[i].type;
343
344 if (fmt_specs[i].need_input_data && !ost->ist) {
346 "Format directive '%s' is unavailable, because "
347 "this output stream has no associated input stream\n",
348 val);
349 }
350
351 break;
352 }
353 }
354
355 if (!c->type) {
356 av_log(NULL, AV_LOG_ERROR, "Invalid format directive: %s\n", val);
357 ret = AVERROR(EINVAL);
358 goto fail;
359 }
360
361fail:
362 av_freep(&val);
363 if (ret < 0)
364 return ret;
365 }
366
367 ret = pthread_mutex_init(&es->lock, NULL);
368 if (ret)
369 return AVERROR(ret);
370 es->lock_initialized = 1;
371
372 ret = enc_stats_get_file(&es->io, path);
373 if (ret < 0)
374 return ret;
375
376 return 0;
377}
378
379static const char *output_stream_item_name(void *obj)
380{
381 const MuxStream *ms = obj;
382
383 return ms->log_name;
384}
385
387 .class_name = "OutputStream",
388 .version = LIBAVUTIL_VERSION_INT,
389 .item_name = output_stream_item_name,
390 .category = AV_CLASS_CATEGORY_MUXER,
391};
392
394{
395 const char *type_str = av_get_media_type_string(type);
396 MuxStream *ms;
397
398 ms = allocate_array_elem(&mux->of.streams, sizeof(*ms), &mux->of.nb_streams);
399 if (!ms)
400 return NULL;
401
402 ms->ost.file = &mux->of;
403 ms->ost.index = mux->of.nb_streams - 1;
404 ms->ost.type = type;
405
407
408 ms->sch_idx = -1;
409 ms->sch_idx_enc = -1;
410
411 snprintf(ms->log_name, sizeof(ms->log_name), "%cost#%d:%d",
412 type_str ? *type_str : '?', mux->of.index, ms->ost.index);
413
414 return ms;
415}
416
418 OutputStream *ost, char **dst)
419{
420 const char *filters = NULL;
422
423 if (!ost->ist) {
424 if (filters) {
426 "Filtergraph '%s' was specified for a stream fed from a complex "
427 "filtergraph. Simple and complex filtering cannot be used "
428 "together for the same stream.\n", filters);
429 return AVERROR(EINVAL);
430 }
431 return 0;
432 }
433
434 if (filters)
436 else
437 *dst = av_strdup(ost->type == AVMEDIA_TYPE_VIDEO ? "null" : "anull");
438 return *dst ? 0 : AVERROR(ENOMEM);
439}
440
441static int parse_matrix_coeffs(void *logctx, uint16_t *dest, const char *str)
442{
443 const char *p = str;
444 for (int i = 0;; i++) {
445 dest[i] = atoi(p);
446 if (i == 63)
447 break;
448 p = strchr(p, ',');
449 if (!p) {
450 av_log(logctx, AV_LOG_FATAL,
451 "Syntax error in matrix \"%s\" at coeff %d\n", str, i);
452 return AVERROR(EINVAL);
453 }
454 p++;
455 }
456
457 return 0;
458}
459
461{
462 for (; *formats != AV_PIX_FMT_NONE; formats++)
463 if (*formats == format)
464 return 1;
465 return 0;
466}
467
468static enum AVPixelFormat
470{
471 const enum AVPixelFormat *p;
473 //FIXME: This should check for AV_PIX_FMT_FLAG_ALPHA after PAL8 pixel format without alpha is implemented
474 int has_alpha = desc ? desc->nb_components % 2 == 0 : 0;
476 int ret;
477
479 0, (const void **) &p, NULL);
480 if (ret < 0)
481 return AV_PIX_FMT_NONE;
482
483 for (; *p != AV_PIX_FMT_NONE; p++) {
484 best = av_find_best_pix_fmt_of_2(best, *p, target, has_alpha, NULL);
485 if (*p == target)
486 break;
487 }
488 if (*p == AV_PIX_FMT_NONE) {
489 if (target != AV_PIX_FMT_NONE)
491 "Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'\n",
492 av_get_pix_fmt_name(target),
493 avctx->codec->name,
494 av_get_pix_fmt_name(best));
495 return best;
496 }
497 return target;
498}
499
501{
502 const enum AVPixelFormat *fmts;
503 enum AVPixelFormat fmt;
504 int ret;
505
506 fmt = av_get_pix_fmt(name);
507 if (fmt == AV_PIX_FMT_NONE) {
508 av_log(ost, AV_LOG_FATAL, "Unknown pixel format requested: %s.\n", name);
509 return AV_PIX_FMT_NONE;
510 }
511
513 0, (const void **) &fmts, NULL);
514 if (ret < 0)
515 return AV_PIX_FMT_NONE;
516
517 /* when the user specified-format is an alias for an endianness-specific
518 * one (e.g. rgb48 -> rgb48be/le), it gets translated into the native
519 * endianness by av_get_pix_fmt();
520 * the following code handles the case when the native endianness is not
521 * supported by the encoder, but the other one is */
522 if (fmts && !pixfmt_in_list(fmts, fmt)) {
523 const char *name_canonical = av_get_pix_fmt_name(fmt);
524 int len = strlen(name_canonical);
525
526 if (strcmp(name, name_canonical) &&
527 (!strcmp(name_canonical + len - 2, "le") ||
528 !strcmp(name_canonical + len - 2, "be"))) {
529 char name_other[64];
530 enum AVPixelFormat fmt_other;
531
532 snprintf(name_other, sizeof(name_other), "%s%ce",
533 name, name_canonical[len - 2] == 'l' ? 'b' : 'l');
534 fmt_other = av_get_pix_fmt(name_other);
535 if (fmt_other != AV_PIX_FMT_NONE && pixfmt_in_list(fmts, fmt_other)) {
536 av_log(ost, AV_LOG_VERBOSE, "Mapping pixel format %s->%s\n",
537 name, name_other);
538 fmt = fmt_other;
539 }
540 }
541 }
542
543 if (fmts && !pixfmt_in_list(fmts, fmt))
544 fmt = choose_pixel_fmt(ost->enc->enc_ctx, fmt);
545
546 return fmt;
547}
548
549static int parse_stereo3d_type(void *logctx, const char *arg, int *type)
550{
551 static const struct {
552 const char *name;
553 int type;
554 } aliases[] = {
555 { "2d", AV_STEREO3D_2D },
556 { "mono", AV_STEREO3D_2D },
557 { "sbs", AV_STEREO3D_SIDEBYSIDE },
558 { "sbsl", AV_STEREO3D_SIDEBYSIDE },
559 { "tb", AV_STEREO3D_TOPBOTTOM },
560 { "tbl", AV_STEREO3D_TOPBOTTOM },
561 };
562 static const enum AVStereo3DType v1_types[] = {
566 };
567
568 for (int i = 0; i < FF_ARRAY_ELEMS(aliases); i++) {
569 if (!av_strcasecmp(arg, aliases[i].name)) {
570 *type = aliases[i].type;
571 return 0;
572 }
573 }
574
575 for (int i = 0; i < FF_ARRAY_ELEMS(v1_types); i++) {
576 const char *name = av_stereo3d_type_name(v1_types[i]);
577 if (!av_strcasecmp(arg, name)) {
578 *type = v1_types[i];
579 return 0;
580 }
581 }
582
583 av_log(logctx, AV_LOG_ERROR,
584 "Invalid stereoscopic 3D layout '%s'. "
585 "Valid values are: 2d, mono, sbs, sbsl, side by side, "
586 "tb, tbl, top and bottom.\n", arg);
587 return AVERROR(EINVAL);
588}
589
591{
592 AVFormatContext *oc = mux->fc;
593
594 for (int i = 0; i < o->stereo3ds.nb_opt; i++) {
595 const SpecifierOpt *so = &o->stereo3ds.opt[i];
596 int matched_video = 0, matched_other = 0;
597
598 /* Empty specifier applies to video only; ignore other stream types. */
599 if (!so->specifier[0])
600 continue;
601
602 for (unsigned j = 0; j < oc->nb_streams; j++) {
603 AVStream *st = oc->streams[j];
604 if (!stream_specifier_match(&so->stream_spec, oc, st, mux))
605 continue;
607 matched_video++;
608 else
609 matched_other++;
610 }
611
612 if (matched_other) {
613 av_log(mux, AV_LOG_ERROR,
614 "-stereo3d is only valid for video streams (specifier '%s').\n",
615 so->specifier);
616 return AVERROR(EINVAL);
617 }
618 if (!matched_video) {
619 av_log(mux, AV_LOG_ERROR,
620 "Stream specifier '%s' for -stereo3d matches no video streams.\n",
621 so->specifier);
622 return AVERROR(EINVAL);
623 }
624 }
625
626 return 0;
627}
628
629static int new_stream_video(Muxer *mux, const OptionsContext *o,
630 OutputStream *ost, int *keep_pix_fmt,
631 enum VideoSyncMethod *vsync_method)
632{
634 AVFormatContext *oc = mux->fc;
635 AVStream *st;
636 const char *frame_rate = NULL, *max_frame_rate = NULL, *frame_aspect_ratio = NULL;
637 const char *stereo3d = NULL;
638 int ret = 0;
639
640 st = ost->st;
641
642 opt_match_per_stream_str(ost, &o->frame_rates, oc, st, &frame_rate);
643 if (frame_rate && av_parse_video_rate(&ms->frame_rate, frame_rate) < 0) {
644 av_log(ost, AV_LOG_FATAL, "Invalid framerate value: %s\n", frame_rate);
645 return AVERROR(EINVAL);
646 }
647
648 opt_match_per_stream_str(ost, &o->max_frame_rates, oc, st, &max_frame_rate);
649 if (max_frame_rate && av_parse_video_rate(&ms->max_frame_rate, max_frame_rate) < 0) {
650 av_log(ost, AV_LOG_FATAL, "Invalid maximum framerate value: %s\n", max_frame_rate);
651 return AVERROR(EINVAL);
652 }
653
654 if (frame_rate && max_frame_rate) {
655 av_log(ost, AV_LOG_ERROR, "Only one of -fpsmax and -r can be set for a stream.\n");
656 return AVERROR(EINVAL);
657 }
658
659 opt_match_per_stream_str(ost, &o->frame_aspect_ratios, oc, st, &frame_aspect_ratio);
660 if (frame_aspect_ratio) {
661 AVRational q;
662 if (av_parse_ratio(&q, frame_aspect_ratio, 255, 0, NULL) < 0 ||
663 q.num <= 0 || q.den <= 0) {
664 av_log(ost, AV_LOG_FATAL, "Invalid aspect ratio: %s\n", frame_aspect_ratio);
665 return AVERROR(EINVAL);
666 }
667 ost->frame_aspect_ratio = q;
668 }
669
670 opt_match_per_stream_str(ost, &o->stereo3ds, oc, st, &stereo3d);
671 if (stereo3d) {
672 ret = parse_stereo3d_type(ost, stereo3d, &ms->stereo3d_type);
673 if (ret < 0)
674 return ret;
675 ms->stereo3d_set = 1;
676 }
677
678 if (ost->enc) {
679 AVCodecContext *video_enc = ost->enc->enc_ctx;
680 const char *p = NULL, *fps_mode = NULL;
681 const char *frame_size = NULL;
682 const char *frame_pix_fmt = NULL;
683 const char *intra_matrix = NULL, *inter_matrix = NULL;
684 const char *chroma_intra_matrix = NULL;
685 int do_pass = 0;
686 int i;
687
689 if (frame_size) {
690 ret = av_parse_video_size(&video_enc->width, &video_enc->height, frame_size);
691 if (ret < 0) {
692 av_log(ost, AV_LOG_FATAL, "Invalid frame size: %s.\n", frame_size);
693 return AVERROR(EINVAL);
694 }
695 }
696
697 opt_match_per_stream_str(ost, &o->frame_pix_fmts, oc, st, &frame_pix_fmt);
698 if (frame_pix_fmt && *frame_pix_fmt == '+') {
699 *keep_pix_fmt = 1;
700 if (!*++frame_pix_fmt)
701 frame_pix_fmt = NULL;
702 }
703 if (frame_pix_fmt) {
704 video_enc->pix_fmt = pix_fmt_parse(ost, frame_pix_fmt);
705 if (video_enc->pix_fmt == AV_PIX_FMT_NONE)
706 return AVERROR(EINVAL);
707 }
708
709 opt_match_per_stream_str(ost, &o->intra_matrices, oc, st, &intra_matrix);
710 if (intra_matrix) {
711 if (!(video_enc->intra_matrix = av_mallocz(sizeof(*video_enc->intra_matrix) * 64)))
712 return AVERROR(ENOMEM);
713
714 ret = parse_matrix_coeffs(ost, video_enc->intra_matrix, intra_matrix);
715 if (ret < 0)
716 return ret;
717 }
718 opt_match_per_stream_str(ost, &o->chroma_intra_matrices, oc, st, &chroma_intra_matrix);
719 if (chroma_intra_matrix) {
720 if (!(video_enc->chroma_intra_matrix = av_mallocz(sizeof(*video_enc->chroma_intra_matrix) * 64)))
721 return AVERROR(ENOMEM);
722 ret = parse_matrix_coeffs(ost, video_enc->chroma_intra_matrix, chroma_intra_matrix);
723 if (ret < 0)
724 return ret;
725 }
726 opt_match_per_stream_str(ost, &o->inter_matrices, oc, st, &inter_matrix);
727 if (inter_matrix) {
728 if (!(video_enc->inter_matrix = av_mallocz(sizeof(*video_enc->inter_matrix) * 64)))
729 return AVERROR(ENOMEM);
730 ret = parse_matrix_coeffs(ost, video_enc->inter_matrix, inter_matrix);
731 if (ret < 0)
732 return ret;
733 }
734
735 opt_match_per_stream_str(ost, &o->rc_overrides, oc, st, &p);
736 for (i = 0; p; i++) {
737 int start, end, q;
738 int e = sscanf(p, "%d,%d,%d", &start, &end, &q);
739 if (e != 3) {
740 av_log(ost, AV_LOG_FATAL, "error parsing rc_override\n");
741 return AVERROR(EINVAL);
742 }
743 video_enc->rc_override =
744 av_realloc_array(video_enc->rc_override,
745 i + 1, sizeof(RcOverride));
746 if (!video_enc->rc_override) {
747 av_log(ost, AV_LOG_FATAL, "Could not (re)allocate memory for rc_override.\n");
748 return AVERROR(ENOMEM);
749 }
750 video_enc->rc_override[i].start_frame = start;
751 video_enc->rc_override[i].end_frame = end;
752 if (q > 0) {
753 video_enc->rc_override[i].qscale = q;
754 video_enc->rc_override[i].quality_factor = 1.0;
755 }
756 else {
757 video_enc->rc_override[i].qscale = 0;
758 video_enc->rc_override[i].quality_factor = -q/100.0;
759 }
760 p = strchr(p, '/');
761 if (p) p++;
762 }
763 video_enc->rc_override_count = i;
764
765 /* two pass mode */
766 opt_match_per_stream_int(ost, &o->pass, oc, st, &do_pass);
767 if (do_pass) {
768 if (do_pass & 1)
769 video_enc->flags |= AV_CODEC_FLAG_PASS1;
770 if (do_pass & 2)
771 video_enc->flags |= AV_CODEC_FLAG_PASS2;
772 }
773
774 opt_match_per_stream_str(ost, &o->passlogfiles, oc, st, &ost->logfile_prefix);
775 if (ost->logfile_prefix &&
776 !(ost->logfile_prefix = av_strdup(ost->logfile_prefix)))
777 return AVERROR(ENOMEM);
778
779 if (do_pass) {
780 int ost_idx = -1;
781 char logfilename[1024];
782 FILE *f;
783
784 /* compute this stream's global index */
785 for (int idx = 0; idx <= ost->file->index; idx++)
786 ost_idx += output_files[idx]->nb_streams;
787
788 snprintf(logfilename, sizeof(logfilename), "%s-%d.log",
789 ost->logfile_prefix ? ost->logfile_prefix :
791 ost_idx);
792 if (!strcmp(video_enc->codec->name, "libx264") || !strcmp(video_enc->codec->name, "libvvenc")) {
793 if (av_opt_is_set_to_default_by_name(video_enc, "stats",
795 av_opt_set(video_enc, "stats", logfilename,
797 } else if (!strcmp(video_enc->codec->name, "libx265")) {
798 if (av_opt_is_set_to_default_by_name(video_enc, "x265-stats",
800 av_opt_set(video_enc, "x265-stats", logfilename,
802 } else {
803 if (video_enc->flags & AV_CODEC_FLAG_PASS2) {
804 char *logbuffer = read_file_to_string(logfilename);
805
806 if (!logbuffer) {
807 av_log(ost, AV_LOG_FATAL, "Error reading log file '%s' for pass-2 encoding\n",
808 logfilename);
809 return AVERROR(EIO);
810 }
811 video_enc->stats_in = logbuffer;
812 }
813 if (video_enc->flags & AV_CODEC_FLAG_PASS1) {
814 f = fopen_utf8(logfilename, "wb");
815 if (!f) {
817 "Cannot write log file '%s' for pass-1 encoding: %s\n",
818 logfilename, strerror(errno));
819 return AVERROR(errno);
820 }
821 ost->logfile = f;
822 }
823 }
824 }
825
827
828 *vsync_method = VSYNC_AUTO;
829 opt_match_per_stream_str(ost, &o->fps_mode, oc, st, &fps_mode);
830 if (fps_mode) {
831 ret = parse_and_set_vsync(fps_mode, vsync_method, ost->file->index, ost->index);
832 if (ret < 0)
833 return ret;
834 }
835
836 if ((ms->frame_rate.num || ms->max_frame_rate.num) &&
837 !(*vsync_method == VSYNC_AUTO ||
838 *vsync_method == VSYNC_CFR || *vsync_method == VSYNC_VSCFR)) {
839 av_log(ost, AV_LOG_FATAL, "One of -r/-fpsmax was specified "
840 "together a non-CFR -vsync/-fps_mode. This is contradictory.\n");
841 return AVERROR(EINVAL);
842 }
843
844 if (*vsync_method == VSYNC_AUTO) {
845 if (ms->frame_rate.num || ms->max_frame_rate.num) {
846 *vsync_method = VSYNC_CFR;
847 } else if (!strcmp(oc->oformat->name, "avi")) {
848 *vsync_method = VSYNC_VFR;
849 } else {
850 *vsync_method = (oc->oformat->flags & AVFMT_VARIABLE_FPS) ?
853 }
854
855 if (ost->ist && *vsync_method == VSYNC_CFR) {
856 const InputFile *ifile = ost->ist->file;
857
858 if (ifile->nb_streams == 1 && ifile->input_ts_offset == 0)
859 *vsync_method = VSYNC_VSCFR;
860 }
861
862 if (*vsync_method == VSYNC_CFR && copy_ts) {
863 *vsync_method = VSYNC_VSCFR;
864 }
865 }
866 }
867
868 return 0;
869}
870
871static int new_stream_audio(Muxer *mux, const OptionsContext *o,
873{
875 AVFormatContext *oc = mux->fc;
876 AVStream *st = ost->st;
877
878 if (ost->enc) {
879 AVCodecContext *audio_enc = ost->enc->enc_ctx;
880 int channels = 0;
881 const char *layout = NULL;
882 const char *sample_fmt = NULL;
883
885 if (channels) {
887 audio_enc->ch_layout.nb_channels = channels;
888 }
889
891 if (layout && av_channel_layout_from_string(&audio_enc->ch_layout, layout) < 0) {
892 av_log(ost, AV_LOG_FATAL, "Unknown channel layout: %s\n", layout);
893 return AVERROR(EINVAL);
894 }
895
896 opt_match_per_stream_str(ost, &o->sample_fmts, oc, st, &sample_fmt);
897 if (sample_fmt &&
898 (audio_enc->sample_fmt = av_get_sample_fmt(sample_fmt)) == AV_SAMPLE_FMT_NONE) {
899 av_log(ost, AV_LOG_FATAL, "Invalid sample format '%s'\n", sample_fmt);
900 return AVERROR(EINVAL);
901 }
902
904 opt_match_per_stream_str(ost, &o->apad, oc, st, &ms->apad);
905 }
906
907 return 0;
908}
909
910static int new_stream_subtitle(Muxer *mux, const OptionsContext *o,
912{
913 AVStream *st;
914
915 st = ost->st;
916
917 if (ost->enc) {
918 AVCodecContext *subtitle_enc = ost->enc->enc_ctx;
919
920 AVCodecDescriptor const *input_descriptor =
921 avcodec_descriptor_get(ost->ist->par->codec_id);
922 AVCodecDescriptor const *output_descriptor =
923 avcodec_descriptor_get(subtitle_enc->codec_id);
924 int input_props = 0, output_props = 0;
925
926 const char *frame_size = NULL;
927
929 if (frame_size) {
930 int ret = av_parse_video_size(&subtitle_enc->width, &subtitle_enc->height, frame_size);
931 if (ret < 0) {
932 av_log(ost, AV_LOG_FATAL, "Invalid frame size: %s.\n", frame_size);
933 return ret;
934 }
935 }
936 if (input_descriptor)
937 input_props = input_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
938 if (output_descriptor)
939 output_props = output_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
940 if (input_props && output_props && input_props != output_props) {
942 "Subtitle encoding currently only possible from text to text "
943 "or bitmap to bitmap\n");
944 return AVERROR(EINVAL);
945 }
946 }
947
948 return 0;
949}
950
951static int
952ost_bind_filter(const Muxer *mux, MuxStream *ms, OutputFilter *ofilter,
953 const OptionsContext *o,
954 AVRational enc_tb, enum VideoSyncMethod vsync_method,
955 int keep_pix_fmt, int autoscale, int threads_manual,
956 const ViewSpecifier *vs,
958{
959 OutputStream *ost = &ms->ost;
960 AVCodecContext *enc_ctx = ost->enc->enc_ctx;
961 char name[16];
962 char *filters = NULL;
963 int ret;
964
966 .enc = enc_ctx->codec,
967 .name = name,
968 .format = (ost->type == AVMEDIA_TYPE_VIDEO) ?
969 enc_ctx->pix_fmt : enc_ctx->sample_fmt,
970 .width = enc_ctx->width,
971 .height = enc_ctx->height,
972 .color_space = enc_ctx->colorspace,
973 .color_range = enc_ctx->color_range,
974 .alpha_mode = enc_ctx->alpha_mode,
975 .vsync_method = vsync_method,
976 .frame_rate = ms->frame_rate,
977 .max_frame_rate = ms->max_frame_rate,
978 .sample_rate = enc_ctx->sample_rate,
979 .ch_layout = enc_ctx->ch_layout,
980 .sws_opts = o->g->sws_dict,
981 .swr_opts = o->g->swr_opts,
982 .output_tb = enc_tb,
983 .trim_start_us = mux->of.start_time,
984 .trim_duration_us = mux->of.recording_time,
985 .ts_offset = mux->of.start_time == AV_NOPTS_VALUE ?
986 0 : mux->of.start_time,
987 .vs = vs,
988 .nb_threads = -1,
989 .reinit_opts = ost->enc->reinit_opts,
990
991 .flags = OFILTER_FLAG_DISABLE_CONVERT * !!keep_pix_fmt |
992 OFILTER_FLAG_AUTOSCALE * !!autoscale |
994 };
995
996 snprintf(name, sizeof(name), "#%d:%d", mux->of.index, ost->index);
997
998 if (ost->type == AVMEDIA_TYPE_VIDEO) {
999 if (!keep_pix_fmt) {
1000 ret = avcodec_get_supported_config(enc_ctx, NULL,
1002 (const void **) &opts.pix_fmts, NULL);
1003 if (ret < 0)
1004 return ret;
1005 }
1006 if (!ms->force_fps) {
1007 ret = avcodec_get_supported_config(enc_ctx, NULL,
1009 (const void **) &opts.frame_rates, NULL);
1010 if (ret < 0)
1011 return ret;
1012 }
1013 ret = avcodec_get_supported_config(enc_ctx, NULL,
1015 (const void **) &opts.color_spaces, NULL);
1016 if (ret < 0)
1017 return ret;
1018 ret = avcodec_get_supported_config(enc_ctx, NULL,
1020 (const void **) &opts.color_ranges, NULL);
1021 if (ret < 0)
1022 return ret;
1023 ret = avcodec_get_supported_config(enc_ctx, NULL,
1025 (const void **) &opts.alpha_modes, NULL);
1026 if (ret < 0)
1027 return ret;
1028 } else {
1029 ret = avcodec_get_supported_config(enc_ctx, NULL,
1031 (const void **) &opts.sample_fmts, NULL);
1032 if (ret < 0)
1033 return ret;
1034 ret = avcodec_get_supported_config(enc_ctx, NULL,
1036 (const void **) &opts.sample_rates, NULL);
1037 if (ret < 0)
1038 return ret;
1039 ret = avcodec_get_supported_config(enc_ctx, NULL,
1041 (const void **) &opts.ch_layouts, NULL);
1042 if (ret < 0)
1043 return ret;
1044 }
1045
1046 if (threads_manual) {
1047 ret = av_opt_get_int(enc_ctx, "threads", 0, &opts.nb_threads);
1048 if (ret < 0)
1049 return ret;
1050 }
1051
1052 ret = ost_get_filters(o, mux->fc, ost, &filters);
1053 if (ret < 0)
1054 return ret;
1055
1056 if (ofilter) {
1058 ost->filter = ofilter;
1059 ret = ofilter_bind_enc(ofilter, ms->sch_idx_enc, &opts);
1060 } else {
1061 ret = fg_create_simple(&ost->fg_simple, ost->ist, &filters,
1062 mux->sch, ms->sch_idx_enc, &opts);
1063 if (ret >= 0)
1064 ost->filter = ost->fg_simple->outputs[0];
1065
1066 }
1067 if (ret < 0)
1068 return ret;
1069
1070 *src = SCH_ENC(ms->sch_idx_enc);
1071
1072 return 0;
1073}
1074
1075static int streamcopy_init(const OptionsContext *o, const Muxer *mux,
1076 OutputStream *ost, AVDictionary **encoder_opts)
1077{
1078 MuxStream *ms = ms_from_ost(ost);
1079
1080 const InputStream *ist = ost->ist;
1081 const InputFile *ifile = ist->file;
1082
1083 AVCodecParameters *par = ms->par_in;
1084 uint32_t codec_tag = par->codec_tag;
1085
1086 AVCodecContext *codec_ctx = NULL;
1087
1088 AVRational fr = ms->frame_rate;
1089
1090 int ret = 0;
1091
1092 const char *filters = NULL;
1093 opt_match_per_stream_str(ost, &o->filters, mux->fc, ost->st, &filters);
1094
1095 if (filters) {
1097 "Filtergraph '%s' was specified, but codec copy was selected. "
1098 "Filtering and streamcopy cannot be used together.\n", filters);
1099 return AVERROR(EINVAL);
1100 }
1101
1102 codec_ctx = avcodec_alloc_context3(NULL);
1103 if (!codec_ctx)
1104 return AVERROR(ENOMEM);
1105
1106 ret = avcodec_parameters_to_context(codec_ctx, ist->par);
1107 if (ret >= 0)
1108 ret = av_opt_set_dict(codec_ctx, encoder_opts);
1109 if (ret < 0) {
1111 "Error setting up codec context options.\n");
1112 goto fail;
1113 }
1114
1115 ret = avcodec_parameters_from_context(par, codec_ctx);
1116 if (ret < 0) {
1118 "Error getting reference codec parameters.\n");
1119 goto fail;
1120 }
1121
1122 if (!codec_tag) {
1123 const struct AVCodecTag * const *ct = mux->fc->oformat->codec_tag;
1124 unsigned int codec_tag_tmp;
1125 if (!ct || av_codec_get_id (ct, par->codec_tag) == par->codec_id ||
1126 !av_codec_get_tag2(ct, par->codec_id, &codec_tag_tmp))
1127 codec_tag = par->codec_tag;
1128 }
1129
1130 par->codec_tag = codec_tag;
1131
1132 if (!fr.num)
1133 fr = ist->framerate;
1134
1135 if (fr.num)
1136 ost->st->avg_frame_rate = fr;
1137 else
1138 ost->st->avg_frame_rate = ist->st->avg_frame_rate;
1139
1140 // copy timebase while removing common factors
1141 if (ost->st->time_base.num <= 0 || ost->st->time_base.den <= 0) {
1142 if (fr.num)
1143 ost->st->time_base = av_inv_q(fr);
1144 else
1145 ost->st->time_base = av_add_q(ist->st->time_base, (AVRational){0, 1});
1146 }
1147
1148 if (!ms->copy_prior_start) {
1149 ms->ts_copy_start = (mux->of.start_time == AV_NOPTS_VALUE) ?
1150 0 : mux->of.start_time;
1151 if (copy_ts && ifile->start_time != AV_NOPTS_VALUE) {
1153 ifile->start_time + ifile->ts_offset);
1154 }
1155 }
1156
1157 for (int i = 0; i < ist->st->codecpar->nb_coded_side_data; i++) {
1158 const AVPacketSideData *sd_src = &ist->st->codecpar->coded_side_data[i];
1159 AVPacketSideData *sd_dst;
1160
1161 sd_dst = av_packet_side_data_new(&ost->st->codecpar->coded_side_data,
1162 &ost->st->codecpar->nb_coded_side_data,
1163 sd_src->type, sd_src->size, 0);
1164 if (!sd_dst) {
1165 ret = AVERROR(ENOMEM);
1166 goto fail;
1167 }
1168 memcpy(sd_dst->data, sd_src->data, sd_src->size);
1169 }
1170
1171 switch (par->codec_type) {
1172 case AVMEDIA_TYPE_AUDIO:
1173 if ((par->block_align == 1 || par->block_align == 1152 || par->block_align == 576) &&
1174 par->codec_id == AV_CODEC_ID_MP3)
1175 par->block_align = 0;
1176 if (par->codec_id == AV_CODEC_ID_AC3)
1177 par->block_align = 0;
1178 break;
1179 case AVMEDIA_TYPE_VIDEO: {
1180 AVRational sar;
1181 if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option
1182 sar =
1183 av_mul_q(ost->frame_aspect_ratio,
1184 (AVRational){ par->height, par->width });
1185 av_log(ost, AV_LOG_WARNING, "Overriding aspect ratio "
1186 "with stream copy may produce invalid files\n");
1187 }
1188 else if (ist->st->sample_aspect_ratio.num)
1189 sar = ist->st->sample_aspect_ratio;
1190 else
1191 sar = par->sample_aspect_ratio;
1192 ost->st->sample_aspect_ratio = par->sample_aspect_ratio = sar;
1193 ost->st->r_frame_rate = ist->st->r_frame_rate;
1194 break;
1195 }
1196 }
1197
1198fail:
1199 avcodec_free_context(&codec_ctx);
1200 return ret;
1201}
1202
1203static int set_encoder_id(OutputStream *ost, const AVCodec *codec)
1204{
1205 const char *cname = codec->name;
1206 uint8_t *encoder_string;
1207 int encoder_string_len;
1208
1209 encoder_string_len = sizeof(LIBAVCODEC_IDENT) + strlen(cname) + 2;
1210 encoder_string = av_mallocz(encoder_string_len);
1211 if (!encoder_string)
1212 return AVERROR(ENOMEM);
1213
1214 if (!ost->file->bitexact && !ost->bitexact)
1215 av_strlcpy(encoder_string, LIBAVCODEC_IDENT " ", encoder_string_len);
1216 else
1217 av_strlcpy(encoder_string, "Lavc ", encoder_string_len);
1218 av_strlcat(encoder_string, cname, encoder_string_len);
1219 av_dict_set(&ost->st->metadata, "encoder", encoder_string,
1221
1222 return 0;
1223}
1224
1225static int ost_add(Muxer *mux, const OptionsContext *o, enum AVMediaType type,
1226 InputStream *ist, OutputFilter *ofilter, const ViewSpecifier *vs,
1227 OutputStream **post)
1228{
1229 AVFormatContext *oc = mux->fc;
1230 MuxStream *ms;
1232 const AVCodec *enc;
1233 AVStream *st;
1234 SchedulerNode src = { .type = SCH_NODE_TYPE_NONE };
1235 AVDictionary *encoder_opts = NULL;
1236 int ret = 0, keep_pix_fmt = 0, autoscale = 1;
1237 int threads_manual = 0;
1238 AVRational enc_tb = { 0, 0 };
1239 enum VideoSyncMethod vsync_method = VSYNC_AUTO;
1240 const char *bsfs = NULL, *time_base = NULL, *codec_tag = NULL, *manual_disp = NULL;
1241 char *next;
1242 double qscale = -1;
1243
1244 st = avformat_new_stream(oc, NULL);
1245 if (!st)
1246 return AVERROR(ENOMEM);
1247
1248 ms = mux_stream_alloc(mux, type);
1249 if (!ms)
1250 return AVERROR(ENOMEM);
1251
1252 // only streams with sources (i.e. not attachments)
1253 // are handled by the scheduler
1254 if (ist || ofilter) {
1256 if (ret < 0)
1257 return ret;
1258
1259 ret = sch_add_mux_stream(mux->sch, mux->sch_idx);
1260 if (ret < 0)
1261 return ret;
1262
1263 av_assert0(ret == mux->nb_sch_stream_idx - 1);
1264 mux->sch_stream_idx[ret] = ms->ost.index;
1265 ms->sch_idx = ret;
1266 }
1267
1268 ost = &ms->ost;
1269
1270 if (o->streamid) {
1272 char idx[16], *p;
1273 snprintf(idx, sizeof(idx), "%d", ost->index);
1274
1275 e = av_dict_get(o->streamid, idx, NULL, 0);
1276 if (e) {
1277 st->id = strtol(e->value, &p, 0);
1278 if (!e->value[0] || *p) {
1279 av_log(ost, AV_LOG_FATAL, "Invalid stream id: %s\n", e->value);
1280 return AVERROR(EINVAL);
1281 }
1282 }
1283 }
1284
1286 if (!ms->par_in)
1287 return AVERROR(ENOMEM);
1288
1290
1291 ost->st = st;
1292 ost->ist = ist;
1293 ost->kf.ref_pts = AV_NOPTS_VALUE;
1294 ms->par_in->codec_type = type;
1295 st->codecpar->codec_type = type;
1296
1297 if (ost->type == AVMEDIA_TYPE_VIDEO) {
1298 if (ost->ist)
1299 ost->st->disposition = ost->ist->st->disposition;
1300
1301 opt_match_per_stream_str(ost, &o->disposition, oc, st, &manual_disp);
1302 if (manual_disp) {
1303 ret = av_opt_set(ost->st, "disposition", manual_disp, 0);
1304 if (ret < 0)
1305 return ret;
1306 }
1307
1308 ost->st->disposition &= AV_DISPOSITION_ATTACHED_PIC;
1309 }
1310
1311 ret = choose_encoder(o, oc, ms, &enc);
1312 if (ret < 0) {
1313 av_log(ost, AV_LOG_FATAL, "Error selecting an encoder\n");
1314 return ret;
1315 }
1316
1317 if (enc) {
1318 ret = sch_add_enc(mux->sch, encoder_thread, ost,
1319 ost->type == AVMEDIA_TYPE_SUBTITLE ? NULL : enc_open);
1320 if (ret < 0)
1321 return ret;
1322 ms->sch_idx_enc = ret;
1323
1324 ret = enc_alloc(&ost->enc, enc, mux->sch, ms->sch_idx_enc, ost);
1325 if (ret < 0)
1326 return ret;
1327
1328 av_strlcat(ms->log_name, "/", sizeof(ms->log_name));
1329 av_strlcat(ms->log_name, enc->name, sizeof(ms->log_name));
1330 } else {
1331 if (ofilter) {
1333 "Streamcopy requested for output stream fed "
1334 "from a complex filtergraph. Filtering and streamcopy "
1335 "cannot be used together.\n");
1336 return AVERROR(EINVAL);
1337 }
1338
1339 av_strlcat(ms->log_name, "/copy", sizeof(ms->log_name));
1340 }
1341
1342 av_log(ost, AV_LOG_VERBOSE, "Created %s stream from ",
1344 if (ist)
1345 av_log(ost, AV_LOG_VERBOSE, "input stream %d:%d",
1346 ist->file->index, ist->index);
1347 else if (ofilter)
1348 av_log(ost, AV_LOG_VERBOSE, "complex filtergraph %d:[%s]",
1349 ofilter->graph->index, ofilter->name);
1350 else if (type == AVMEDIA_TYPE_ATTACHMENT)
1351 av_log(ost, AV_LOG_VERBOSE, "attached file");
1352 else av_assert0(0);
1353 av_log(ost, AV_LOG_VERBOSE, "\n");
1354
1355 ms->pkt = av_packet_alloc();
1356 if (!ms->pkt)
1357 return AVERROR(ENOMEM);
1358
1359 if (ost->enc) {
1360 AVIOContext *s = NULL;
1361 char *buf = NULL, *arg = NULL;
1362 const char *enc_stats_pre = NULL, *enc_stats_post = NULL, *mux_stats = NULL;
1363 const char *enc_time_base = NULL, *enc_reinit_opts = NULL, *preset = NULL;
1364
1365 ret = filter_codec_opts(o->g->codec_opts, enc->id,
1366 oc, st, enc, &encoder_opts,
1367 &mux->enc_opts_used);
1368 if (ret < 0)
1369 goto fail;
1370
1372 opt_match_per_stream_int(ost, &o->autoscale, oc, st, &autoscale);
1373 if (preset && (!(ret = get_preset_file_2(preset, enc->name, &s)))) {
1374 AVBPrint bprint;
1376 do {
1377 av_bprint_clear(&bprint);
1378 buf = get_line(s, &bprint);
1379 if (!buf) {
1380 ret = AVERROR(ENOMEM);
1381 break;
1382 }
1383
1384 if (!buf[0] || buf[0] == '#')
1385 continue;
1386 if (!(arg = strchr(buf, '='))) {
1387 av_log(ost, AV_LOG_FATAL, "Invalid line found in the preset file.\n");
1388 ret = AVERROR(EINVAL);
1389 break;
1390 }
1391 *arg++ = 0;
1392 av_dict_set(&encoder_opts, buf, arg, AV_DICT_DONT_OVERWRITE);
1393 } while (!s->eof_reached);
1394 av_bprint_finalize(&bprint, NULL);
1395 avio_closep(&s);
1396 }
1397 if (ret) {
1399 "Preset %s specified, but could not be opened.\n", preset);
1400 goto fail;
1401 }
1402
1403 opt_match_per_stream_str(ost, &o->enc_reinit_opts, oc, st, &enc_reinit_opts);
1404 if (enc_reinit_opts &&
1406 ost->enc->reinit_opts = av_strdup(enc_reinit_opts);
1407 if (!ost->enc->reinit_opts) {
1408 ret = AVERROR(ENOMEM);
1409 goto fail;
1410 }
1411 }
1412
1413 opt_match_per_stream_str(ost, &o->enc_stats_pre, oc, st, &enc_stats_pre);
1414 if (enc_stats_pre &&
1416 const char *format = "{fidx} {sidx} {n} {t}";
1417
1419
1420 ret = enc_stats_init(ost, &ost->enc_stats_pre, 1, enc_stats_pre, format);
1421 if (ret < 0)
1422 goto fail;
1423 }
1424
1425 opt_match_per_stream_str(ost, &o->enc_stats_post, oc, st, &enc_stats_post);
1426 if (enc_stats_post &&
1428 const char *format = "{fidx} {sidx} {n} {t}";
1429
1431
1432 ret = enc_stats_init(ost, &ost->enc_stats_post, 0, enc_stats_post, format);
1433 if (ret < 0)
1434 goto fail;
1435 }
1436
1437 opt_match_per_stream_str(ost, &o->mux_stats, oc, st, &mux_stats);
1438 if (mux_stats &&
1440 const char *format = "{fidx} {sidx} {n} {t}";
1441
1443
1444 ret = enc_stats_init(ost, &ms->stats, 0, mux_stats, format);
1445 if (ret < 0)
1446 goto fail;
1447 }
1448
1449 opt_match_per_stream_str(ost, &o->enc_time_bases, oc, st, &enc_time_base);
1450 if (enc_time_base && type == AVMEDIA_TYPE_SUBTITLE)
1452 "-enc_time_base not supported for subtitles, ignoring\n");
1453 else if (enc_time_base) {
1454 AVRational q;
1455
1456 if (!strcmp(enc_time_base, "demux")) {
1457 q = (AVRational){ ENC_TIME_BASE_DEMUX, 0 };
1458 } else if (!strcmp(enc_time_base, "filter")) {
1459 q = (AVRational){ ENC_TIME_BASE_FILTER, 0 };
1460 } else {
1461 ret = av_parse_ratio(&q, enc_time_base, INT_MAX, 0, NULL);
1462 if (ret < 0 || q.den <= 0 || q.num < 0) {
1463 av_log(ost, AV_LOG_FATAL, "Invalid time base: %s\n", enc_time_base);
1464 ret = ret < 0 ? ret : AVERROR(EINVAL);
1465 goto fail;
1466 }
1467 }
1468
1469 enc_tb = q;
1470 }
1471
1472 threads_manual = !!av_dict_get(encoder_opts, "threads", NULL, 0);
1473
1474 ret = av_dict_copy(&ost->enc->encoder_opts, encoder_opts, 0);
1475 if (ret < 0)
1476 goto fail;
1477 ret = av_opt_set_dict2(ost->enc->enc_ctx, &encoder_opts, AV_OPT_SEARCH_CHILDREN);
1478 if (ret < 0) {
1479 av_log(ost, AV_LOG_ERROR, "Error applying encoder options: %s\n",
1480 av_err2str(ret));
1481 goto fail;
1482 }
1483
1484 ret = check_avoptions(encoder_opts);
1485 if (ret < 0)
1486 goto fail;
1487
1488 // default to automatic thread count
1489 if (!threads_manual)
1490 ost->enc->enc_ctx->thread_count = 0;
1491 } else {
1493 NULL, &encoder_opts,
1494 &mux->enc_opts_used);
1495 if (ret < 0)
1496 goto fail;
1497 }
1498
1499
1500 if (o->bitexact) {
1501 ost->bitexact = 1;
1502 } else if (ost->enc) {
1503 ost->bitexact = !!(ost->enc->enc_ctx->flags & AV_CODEC_FLAG_BITEXACT);
1504 }
1505
1506 if (enc) {
1507 ret = set_encoder_id(ost, enc);
1508 if (ret < 0)
1509 return ret;
1510 }
1511
1512 opt_match_per_stream_str(ost, &o->time_bases, oc, st, &time_base);
1513 if (time_base) {
1514 AVRational q;
1515 if (av_parse_ratio(&q, time_base, INT_MAX, 0, NULL) < 0 ||
1516 q.num <= 0 || q.den <= 0) {
1517 av_log(ost, AV_LOG_FATAL, "Invalid time base: %s\n", time_base);
1518 ret = AVERROR(EINVAL);
1519 goto fail;
1520 }
1521 st->time_base = q;
1522 }
1523
1524 ms->max_frames = INT64_MAX;
1526 for (int i = 0; i < o->max_frames.nb_opt; i++) {
1527 char *p = o->max_frames.opt[i].specifier;
1528 if (!*p && type != AVMEDIA_TYPE_VIDEO) {
1529 av_log(ost, AV_LOG_WARNING, "Applying unspecific -frames to non video streams, maybe you meant -vframes ?\n");
1530 break;
1531 }
1532 }
1533
1534 ms->copy_prior_start = -1;
1536 opt_match_per_stream_str(ost, &o->bitstream_filters, oc, st, &bsfs);
1537 if (bsfs && *bsfs) {
1538 ret = av_bsf_list_parse_str(bsfs, &ms->bsf_ctx);
1539 if (ret < 0) {
1540 av_log(ost, AV_LOG_ERROR, "Error parsing bitstream filter sequence '%s': %s\n", bsfs, av_err2str(ret));
1541 goto fail;
1542 }
1543 }
1544
1545 opt_match_per_stream_str(ost, &o->codec_tags, oc, st, &codec_tag);
1546 if (codec_tag) {
1547 uint32_t tag = strtol(codec_tag, &next, 0);
1548 if (*next) {
1549 uint8_t buf[4] = { 0 };
1550 memcpy(buf, codec_tag, FFMIN(sizeof(buf), strlen(codec_tag)));
1551 tag = AV_RL32(buf);
1552 }
1553 ost->st->codecpar->codec_tag = tag;
1554 ms->par_in->codec_tag = tag;
1555 if (ost->enc)
1556 ost->enc->codec_tag = tag;
1557 }
1558
1559 opt_match_per_stream_dbl(ost, &o->qscale, oc, st, &qscale);
1560 if (ost->enc && qscale >= 0) {
1561 ost->enc->flags |= AV_CODEC_FLAG_QSCALE;
1562 ost->enc->global_quality = FF_QP2LAMBDA * qscale;
1563 }
1564
1565 if (ms->sch_idx >= 0) {
1566 int max_muxing_queue_size = 128;
1567 int muxing_queue_data_threshold = 50 * 1024 * 1024;
1568
1570 &max_muxing_queue_size);
1572 oc, st, &muxing_queue_data_threshold);
1573
1575 max_muxing_queue_size, muxing_queue_data_threshold);
1576 }
1577
1579 &ost->bits_per_raw_sample);
1580
1582 oc, st, &ost->fix_sub_duration_heartbeat);
1583
1584 if (oc->oformat->flags & AVFMT_GLOBALHEADER && ost->enc)
1585 ost->enc->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
1586 if (oc->oformat->flags & AVFMT_FIXED_FRAMESIZE && ost->enc)
1587 ost->enc->flags2 |= AV_CODEC_FLAG2_FIXED_FRAME_SIZE;
1588
1590 oc, st, &ms->copy_initial_nonkeyframes);
1591 switch (type) {
1592 case AVMEDIA_TYPE_VIDEO: ret = new_stream_video (mux, o, ost, &keep_pix_fmt, &vsync_method); break;
1593 case AVMEDIA_TYPE_AUDIO: ret = new_stream_audio (mux, o, ost); break;
1594 case AVMEDIA_TYPE_SUBTITLE: ret = new_stream_subtitle (mux, o, ost); break;
1595 }
1596 if (ret < 0)
1597 goto fail;
1598
1599 if (ost->enc &&
1601 ret = ost_bind_filter(mux, ms, ofilter, o, enc_tb, vsync_method,
1602 keep_pix_fmt, autoscale, threads_manual, vs, &src);
1603 if (ret < 0)
1604 goto fail;
1605 } else if (ost->ist) {
1606 ret = ist_use(ost->ist, !!ost->enc, NULL, &src);
1607 if (ret < 0) {
1609 "Error binding an input stream\n");
1610 goto fail;
1611 }
1612 ms->sch_idx_src = src.idx;
1613
1614 // src refers to a decoder for transcoding, demux stream otherwise
1615 if (ost->enc) {
1616 ret = sch_connect(mux->sch,
1617 src, SCH_ENC(ms->sch_idx_enc));
1618 if (ret < 0)
1619 goto fail;
1620 src = SCH_ENC(ms->sch_idx_enc);
1621 }
1622 }
1623
1624 if (src.type != SCH_NODE_TYPE_NONE) {
1625 ret = sch_connect(mux->sch,
1626 src, SCH_MSTREAM(mux->sch_idx, ms->sch_idx));
1627 if (ret < 0)
1628 goto fail;
1629 } else {
1630 // only attachment streams don't have a source
1632 }
1633
1634 if (ost->ist && !ost->enc) {
1635 ret = streamcopy_init(o, mux, ost, &encoder_opts);
1636 if (ret < 0)
1637 goto fail;
1638 }
1639
1640 // copy estimated duration as a hint to the muxer
1641 if (ost->ist && ost->ist->st->duration > 0) {
1642 ms->stream_duration = ist->st->duration;
1643 ms->stream_duration_tb = ist->st->time_base;
1644 }
1645
1646 if (post)
1647 *post = ost;
1648
1649 ret = 0;
1650
1651fail:
1652 av_dict_free(&encoder_opts);
1653
1654 return ret;
1655}
1656
1657static int map_auto_video(Muxer *mux, const OptionsContext *o)
1658{
1659 AVFormatContext *oc = mux->fc;
1660 InputStreamGroup *best_istg = NULL;
1661 InputStream *best_ist = NULL;
1662 int64_t best_score = 0;
1663 int qcr;
1664
1665 /* video: highest resolution */
1667 return 0;
1668
1669 qcr = avformat_query_codec(oc->oformat, oc->oformat->video_codec, 0);
1670 for (int j = 0; j < nb_input_files; j++) {
1671 InputFile *ifile = input_files[j];
1672 InputStreamGroup *file_best_istg = NULL;
1673 InputStream *file_best_ist = NULL;
1674 int64_t file_best_score = 0;
1675 for (int i = 0; i < ifile->nb_stream_groups; i++) {
1676 InputStreamGroup *istg = ifile->stream_groups[i];
1677 int64_t score = 0;
1678
1679 if (!istg->fg)
1680 continue;
1681
1682 for (int j = 0; j < istg->stg->nb_streams; j++) {
1683 AVStream *st = istg->stg->streams[j];
1684
1686 score = 100000000;
1687 break;
1688 }
1689 }
1690
1691 switch (istg->stg->type) {
1693 const AVStreamGroupTileGrid *tg = istg->stg->params.tile_grid;
1694 score += tg->width * (int64_t)tg->height
1695 + 5000000*!!(istg->stg->disposition & AV_DISPOSITION_DEFAULT);
1696 break;
1697 }
1698 default:
1699 continue;
1700 }
1701
1702 if (score > file_best_score) {
1703 file_best_score = score;
1704 file_best_istg = istg;
1705 }
1706 }
1707 for (int i = 0; i < ifile->nb_streams; i++) {
1708 InputStream *ist = ifile->streams[i];
1710 int64_t score;
1711
1712 if (ist->user_set_discard == AVDISCARD_ALL ||
1714 (desc && (desc->props & AV_CODEC_PROP_ENHANCEMENT)))
1715 continue;
1716
1717 score = ist->st->codecpar->width * (int64_t)ist->st->codecpar->height
1718 + 100000000 * !!(ist->st->event_flags & AVSTREAM_EVENT_FLAG_NEW_PACKETS)
1719 + 5000000*!!(ist->st->disposition & AV_DISPOSITION_DEFAULT);
1720 if((qcr!=MKTAG('A', 'P', 'I', 'C')) && (ist->st->disposition & AV_DISPOSITION_ATTACHED_PIC))
1721 score = 1;
1722
1723 if (score > file_best_score) {
1724 if((qcr==MKTAG('A', 'P', 'I', 'C')) && !(ist->st->disposition & AV_DISPOSITION_ATTACHED_PIC))
1725 continue;
1726 file_best_score = score;
1727 file_best_ist = ist;
1728 file_best_istg = NULL;
1729 }
1730 }
1731 if (file_best_istg) {
1732 file_best_score -= 5000000*!!(file_best_istg->stg->disposition & AV_DISPOSITION_DEFAULT);
1733 if (file_best_score > best_score) {
1734 best_score = file_best_score;
1735 best_istg = file_best_istg;
1736 best_ist = NULL;
1737 }
1738 }
1739 if (file_best_ist) {
1740 if((qcr == MKTAG('A', 'P', 'I', 'C')) ||
1741 !(file_best_ist->st->disposition & AV_DISPOSITION_ATTACHED_PIC))
1742 file_best_score -= 5000000*!!(file_best_ist->st->disposition & AV_DISPOSITION_DEFAULT);
1743 if (file_best_score > best_score) {
1744 best_score = file_best_score;
1745 best_ist = file_best_ist;
1746 best_istg = NULL;
1747 }
1748 }
1749 }
1750 if (best_istg) {
1751 FilterGraph *fg = best_istg->fg;
1752 OutputFilter *ofilter = fg->outputs[0];
1753
1754 av_assert0(fg->nb_outputs == 1);
1755 av_log(mux, AV_LOG_VERBOSE, "Creating output stream from stream group derived complex filtergraph %d.\n", fg->index);
1756
1757 return ost_add(mux, o, AVMEDIA_TYPE_VIDEO, NULL, ofilter, NULL, NULL);
1758 }
1759 if (best_ist)
1760 return ost_add(mux, o, AVMEDIA_TYPE_VIDEO, best_ist, NULL, NULL, NULL);
1761
1762 return 0;
1763}
1764
1765static int map_auto_audio(Muxer *mux, const OptionsContext *o)
1766{
1767 AVFormatContext *oc = mux->fc;
1768 InputStream *best_ist = NULL;
1769 int best_score = 0;
1770
1771 /* audio: most channels */
1773 return 0;
1774
1775 for (int j = 0; j < nb_input_files; j++) {
1776 InputFile *ifile = input_files[j];
1777 InputStream *file_best_ist = NULL;
1778 int file_best_score = 0;
1779 for (int i = 0; i < ifile->nb_streams; i++) {
1780 InputStream *ist = ifile->streams[i];
1781 int score;
1782
1783 if (ist->user_set_discard == AVDISCARD_ALL ||
1785 continue;
1786
1787 score = ist->st->codecpar->ch_layout.nb_channels
1788 + 100000000 * !!(ist->st->event_flags & AVSTREAM_EVENT_FLAG_NEW_PACKETS)
1789 + 5000000*!!(ist->st->disposition & AV_DISPOSITION_DEFAULT);
1790 if (score > file_best_score) {
1791 file_best_score = score;
1792 file_best_ist = ist;
1793 }
1794 }
1795 if (file_best_ist) {
1796 file_best_score -= 5000000*!!(file_best_ist->st->disposition & AV_DISPOSITION_DEFAULT);
1797 if (file_best_score > best_score) {
1798 best_score = file_best_score;
1799 best_ist = file_best_ist;
1800 }
1801 }
1802 }
1803 if (best_ist)
1804 return ost_add(mux, o, AVMEDIA_TYPE_AUDIO, best_ist, NULL, NULL, NULL);
1805
1806 return 0;
1807}
1808
1809static int map_auto_subtitle(Muxer *mux, const OptionsContext *o)
1810{
1811 AVFormatContext *oc = mux->fc;
1812 const char *subtitle_codec_name = NULL;
1813
1814 /* subtitles: pick first */
1817 return 0;
1818
1819 for (InputStream *ist = ist_iter(NULL); ist; ist = ist_iter(ist))
1820 if (ist->st->codecpar->codec_type == AVMEDIA_TYPE_SUBTITLE) {
1821 AVCodecDescriptor const *input_descriptor =
1822 avcodec_descriptor_get(ist->st->codecpar->codec_id);
1823 AVCodecDescriptor const *output_descriptor = NULL;
1824 AVCodec const *output_codec =
1826 int input_props = 0, output_props = 0;
1827 if (ist->user_set_discard == AVDISCARD_ALL)
1828 continue;
1829 if (output_codec)
1830 output_descriptor = avcodec_descriptor_get(output_codec->id);
1831 if (input_descriptor)
1832 input_props = input_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
1833 if (output_descriptor)
1834 output_props = output_descriptor->props & (AV_CODEC_PROP_TEXT_SUB | AV_CODEC_PROP_BITMAP_SUB);
1835 if (subtitle_codec_name ||
1836 input_props & output_props ||
1837 // Map dvb teletext which has neither property to any output subtitle encoder
1838 input_descriptor && output_descriptor &&
1839 (!input_descriptor->props ||
1840 !output_descriptor->props)) {
1841 return ost_add(mux, o, AVMEDIA_TYPE_SUBTITLE, ist, NULL, NULL, NULL);
1842 }
1843 }
1844
1845 return 0;
1846}
1847
1848static int map_auto_data(Muxer *mux, const OptionsContext *o)
1849{
1850 AVFormatContext *oc = mux->fc;
1851 /* Data only if codec id match */
1853
1855 return 0;
1856
1857 for (InputStream *ist = ist_iter(NULL); ist; ist = ist_iter(ist)) {
1858 if (ist->user_set_discard == AVDISCARD_ALL)
1859 continue;
1860 if (ist->st->codecpar->codec_type == AVMEDIA_TYPE_DATA &&
1861 ist->st->codecpar->codec_id == codec_id) {
1862 int ret = ost_add(mux, o, AVMEDIA_TYPE_DATA, ist, NULL, NULL, NULL);
1863 if (ret < 0)
1864 return ret;
1865 }
1866 }
1867
1868 return 0;
1869}
1870
1871static int map_manual(Muxer *mux, const OptionsContext *o, const StreamMap *map)
1872{
1873 InputStream *ist;
1874 int ret;
1875
1876 if (map->disabled)
1877 return 0;
1878
1879 if (map->linklabel) {
1880 FilterGraph *fg;
1881 OutputFilter *ofilter = NULL;
1882 int j, k;
1883
1884 for (j = 0; j < nb_filtergraphs; j++) {
1885 fg = filtergraphs[j];
1886 for (k = 0; k < fg->nb_outputs; k++) {
1887 const char *linklabel = fg->outputs[k]->linklabel;
1888 if (linklabel && !strcmp(linklabel, map->linklabel)) {
1889 ofilter = fg->outputs[k];
1890 goto loop_end;
1891 }
1892 }
1893 }
1894loop_end:
1895 if (!ofilter) {
1896 av_log(mux, AV_LOG_FATAL, "Output with label '%s' does not exist "
1897 "in any defined filter graph, or was already used elsewhere.\n", map->linklabel);
1898 return AVERROR(EINVAL);
1899 }
1900
1901 av_log(mux, AV_LOG_VERBOSE, "Creating output stream from an explicitly "
1902 "mapped complex filtergraph %d, output [%s]\n", fg->index, map->linklabel);
1903
1904 ret = ost_add(mux, o, ofilter->type, NULL, ofilter, NULL, NULL);
1905 if (ret < 0)
1906 return ret;
1907 } else {
1908 const ViewSpecifier *vs = map->vs.type == VIEW_SPECIFIER_TYPE_NONE ?
1909 NULL : &map->vs;
1910
1911 ist = input_files[map->file_index]->streams[map->stream_index];
1912 if (ist->user_set_discard == AVDISCARD_ALL) {
1913 av_log(mux, AV_LOG_FATAL, "Stream #%d:%d is disabled and cannot be mapped.\n",
1914 map->file_index, map->stream_index);
1915 return AVERROR(EINVAL);
1916 }
1918 return 0;
1920 return 0;
1922 return 0;
1923 if(o-> data_disable && ist->st->codecpar->codec_type == AVMEDIA_TYPE_DATA)
1924 return 0;
1925
1929 "Cannot map stream #%d:%d - unsupported type.\n",
1930 map->file_index, map->stream_index);
1932 av_log(mux, AV_LOG_FATAL,
1933 "If you want unsupported types ignored instead "
1934 "of failing, please use the -ignore_unknown option\n"
1935 "If you want them copied, please use -copy_unknown\n");
1936 return AVERROR(EINVAL);
1937 }
1938 return 0;
1939 }
1940
1941 if (vs && ist->st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO) {
1942 av_log(mux, AV_LOG_ERROR,
1943 "View specifier given for mapping a %s input stream\n",
1945 return AVERROR(EINVAL);
1946 }
1947
1948 ret = ost_add(mux, o, ist->st->codecpar->codec_type, ist, NULL, vs, NULL);
1949 if (ret < 0)
1950 return ret;
1951 }
1952
1953 return 0;
1954}
1955
1956static int of_add_attachments(Muxer *mux, const OptionsContext *o)
1957{
1958 MuxStream *ms;
1960 int err;
1961
1962 for (int i = 0; i < o->nb_attachments; i++) {
1963 AVIOContext *pb;
1964 uint8_t *attachment;
1965 char *attachment_filename;
1966 const char *p;
1967 int64_t len;
1968
1969 if ((err = avio_open2(&pb, o->attachments[i], AVIO_FLAG_READ, &int_cb, NULL)) < 0) {
1970 av_log(mux, AV_LOG_FATAL, "Could not open attachment file %s.\n",
1971 o->attachments[i]);
1972 return err;
1973 }
1974 if ((len = avio_size(pb)) <= 0) {
1975 av_log(mux, AV_LOG_FATAL, "Could not get size of the attachment %s.\n",
1976 o->attachments[i]);
1977 err = len ? len : AVERROR_INVALIDDATA;
1978 goto read_fail;
1979 }
1980 if (len > INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
1981 av_log(mux, AV_LOG_FATAL, "Attachment %s too large.\n",
1982 o->attachments[i]);
1983 err = AVERROR(ERANGE);
1984 goto read_fail;
1985 }
1986
1988 if (!attachment) {
1989 err = AVERROR(ENOMEM);
1990 goto read_fail;
1991 }
1992
1993 err = avio_read(pb, attachment, len);
1994 if (err < 0)
1995 av_log(mux, AV_LOG_FATAL, "Error reading attachment file %s: %s\n",
1996 o->attachments[i], av_err2str(err));
1997 else if (err != len) {
1998 av_log(mux, AV_LOG_FATAL, "Could not read all %"PRId64" bytes for "
1999 "attachment file %s\n", len, o->attachments[i]);
2000 err = AVERROR(EIO);
2001 }
2002
2003read_fail:
2004 avio_closep(&pb);
2005 if (err < 0)
2006 return err;
2007
2008 memset(attachment + len, 0, AV_INPUT_BUFFER_PADDING_SIZE);
2009
2010 av_log(mux, AV_LOG_VERBOSE, "Creating attachment stream from file %s\n",
2011 o->attachments[i]);
2012
2013 attachment_filename = av_strdup(o->attachments[i]);
2014 if (!attachment_filename) {
2015 av_free(attachment);
2016 return AVERROR(ENOMEM);
2017 }
2018
2019 err = ost_add(mux, o, AVMEDIA_TYPE_ATTACHMENT, NULL, NULL, NULL, &ost);
2020 if (err < 0) {
2021 av_free(attachment_filename);
2022 av_freep(&attachment);
2023 return err;
2024 }
2025
2026 ms = ms_from_ost(ost);
2027
2028 ost->attachment_filename = attachment_filename;
2029 ms->par_in->extradata = attachment;
2030 ms->par_in->extradata_size = len;
2031
2032 p = strrchr(o->attachments[i], '/');
2033 av_dict_set(&ost->st->metadata, "filename", (p && *p) ? p + 1 : o->attachments[i], AV_DICT_DONT_OVERWRITE);
2034 }
2035
2036 return 0;
2037}
2038
2039static int create_streams(Muxer *mux, const OptionsContext *o)
2040{
2041 static int (* const map_func[])(Muxer *mux, const OptionsContext *o) = {
2046 };
2047
2048 AVFormatContext *oc = mux->fc;
2049
2050 int auto_disable =
2051 o->video_disable * (1 << AVMEDIA_TYPE_VIDEO) |
2052 o->audio_disable * (1 << AVMEDIA_TYPE_AUDIO) |
2054 o->data_disable * (1 << AVMEDIA_TYPE_DATA);
2055
2056 int ret;
2057
2058 /* create streams for all unlabeled output pads */
2059 for (int i = 0; i < nb_filtergraphs; i++) {
2060 FilterGraph *fg = filtergraphs[i];
2061 for (int j = 0; j < fg->nb_outputs; j++) {
2062 OutputFilter *ofilter = fg->outputs[j];
2063
2064 if (ofilter->linklabel || ofilter->bound)
2065 continue;
2066
2067 auto_disable |= 1 << ofilter->type;
2068
2069 av_log(mux, AV_LOG_VERBOSE, "Creating output stream from unlabeled "
2070 "output of complex filtergraph %d.", fg->index);
2071 if (!o->nb_stream_maps)
2072 av_log(mux, AV_LOG_VERBOSE, " This overrides automatic %s mapping.",
2073 av_get_media_type_string(ofilter->type));
2074 av_log(mux, AV_LOG_VERBOSE, "\n");
2075
2076 ret = ost_add(mux, o, ofilter->type, NULL, ofilter, NULL, NULL);
2077 if (ret < 0)
2078 return ret;
2079 }
2080 }
2081
2082 if (!o->nb_stream_maps) {
2083 av_log(mux, AV_LOG_VERBOSE, "No explicit maps, mapping streams automatically...\n");
2084
2085 /* pick the "best" stream of each type */
2086 for (int i = 0; i < FF_ARRAY_ELEMS(map_func); i++) {
2087 if (!map_func[i] || auto_disable & (1 << i))
2088 continue;
2089 ret = map_func[i](mux, o);
2090 if (ret < 0)
2091 return ret;
2092 }
2093 } else {
2094 av_log(mux, AV_LOG_VERBOSE, "Adding streams from explicit maps...\n");
2095
2096 for (int i = 0; i < o->nb_stream_maps; i++) {
2097 ret = map_manual(mux, o, &o->stream_maps[i]);
2098 if (ret < 0)
2099 return ret;
2100 }
2101 }
2102
2103 ret = of_add_attachments(mux, o);
2104 if (ret < 0)
2105 return ret;
2106
2107 // setup fix_sub_duration_heartbeat mappings
2108 for (unsigned i = 0; i < oc->nb_streams; i++) {
2109 MuxStream *src = ms_from_ost(mux->of.streams[i]);
2110
2111 if (!src->ost.fix_sub_duration_heartbeat)
2112 continue;
2113
2114 for (unsigned j = 0; j < oc->nb_streams; j++) {
2115 MuxStream *dst = ms_from_ost(mux->of.streams[j]);
2116
2117 if (src == dst || dst->ost.type != AVMEDIA_TYPE_SUBTITLE ||
2118 !dst->ost.enc || !dst->ost.ist || !dst->ost.ist->fix_sub_duration)
2119 continue;
2120
2121 ret = sch_mux_sub_heartbeat_add(mux->sch, mux->sch_idx, src->sch_idx,
2122 dst->sch_idx_src);
2123
2124 }
2125 }
2126
2127 // handle -apad
2128 if (o->shortest) {
2129 int have_video = 0;
2130
2131 for (unsigned i = 0; i < mux->of.nb_streams; i++)
2132 if (mux->of.streams[i]->type == AVMEDIA_TYPE_VIDEO) {
2133 have_video = 1;
2134 break;
2135 }
2136
2137 for (unsigned i = 0; have_video && i < mux->of.nb_streams; i++) {
2138 MuxStream *ms = ms_from_ost(mux->of.streams[i]);
2139 OutputFilter *ofilter = ms->ost.filter;
2140
2141 if (ms->ost.type != AVMEDIA_TYPE_AUDIO || !ms->apad || !ofilter)
2142 continue;
2143
2144 ofilter->apad = av_strdup(ms->apad);
2145 if (!ofilter->apad)
2146 return AVERROR(ENOMEM);
2147 }
2148 }
2149 for (unsigned i = 0; i < mux->of.nb_streams; i++) {
2150 MuxStream *ms = ms_from_ost(mux->of.streams[i]);
2151 ms->apad = NULL;
2152 }
2153
2154 if (!oc->nb_streams && !(oc->oformat->flags & AVFMT_NOSTREAMS)) {
2155 av_dump_format(oc, nb_output_files - 1, oc->url, 1);
2156 av_log(mux, AV_LOG_ERROR, "Output file does not contain any stream\n");
2157 return AVERROR(EINVAL);
2158 }
2159
2160 return check_stereo3d_leftovers(mux, o);
2161}
2162
2164 int64_t buf_size_us, int shortest)
2165{
2166 OutputFile *of = &mux->of;
2167 int nb_av_enc = 0, nb_audio_fs = 0, nb_interleaved = 0;
2168 int limit_frames = 0, limit_frames_av_enc = 0;
2169
2170#define IS_AV_ENC(ost, type) \
2171 (ost->enc && (type == AVMEDIA_TYPE_VIDEO || type == AVMEDIA_TYPE_AUDIO))
2172#define IS_INTERLEAVED(type) (type != AVMEDIA_TYPE_ATTACHMENT)
2173
2174 for (int i = 0; i < oc->nb_streams; i++) {
2175 OutputStream *ost = of->streams[i];
2176 MuxStream *ms = ms_from_ost(ost);
2177 enum AVMediaType type = ost->type;
2178
2179 ms->sq_idx_mux = -1;
2180
2181 nb_interleaved += IS_INTERLEAVED(type);
2182 nb_av_enc += IS_AV_ENC(ost, type);
2183 nb_audio_fs += (ost->enc && type == AVMEDIA_TYPE_AUDIO &&
2184 (!(ost->enc->enc_ctx->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) ||
2185 (ost->enc->flags2 & AV_CODEC_FLAG2_FIXED_FRAME_SIZE)));
2186
2187 limit_frames |= ms->max_frames < INT64_MAX;
2188 limit_frames_av_enc |= (ms->max_frames < INT64_MAX) && IS_AV_ENC(ost, type);
2189 }
2190
2191 if (!((nb_interleaved > 1 && shortest) ||
2192 (nb_interleaved > 0 && limit_frames) ||
2193 nb_audio_fs))
2194 return 0;
2195
2196 /* we use a sync queue before encoding when:
2197 * - 'shortest' is in effect and we have two or more encoded audio/video
2198 * streams
2199 * - at least one encoded audio/video stream is frame-limited, since
2200 * that has similar semantics to 'shortest'
2201 * - at least one audio encoder requires constant frame sizes
2202 *
2203 * Note that encoding sync queues are handled in the scheduler, because
2204 * different encoders run in different threads and need external
2205 * synchronization, while muxer sync queues can be handled inside the muxer
2206 */
2207 if ((shortest && nb_av_enc > 1) || limit_frames_av_enc || nb_audio_fs) {
2208 int sq_idx, ret;
2209
2210 sq_idx = sch_add_sq_enc(mux->sch, buf_size_us, mux);
2211 if (sq_idx < 0)
2212 return sq_idx;
2213
2214 for (int i = 0; i < oc->nb_streams; i++) {
2215 OutputStream *ost = of->streams[i];
2216 MuxStream *ms = ms_from_ost(ost);
2217 enum AVMediaType type = ost->type;
2218
2219 if (!IS_AV_ENC(ost, type))
2220 continue;
2221
2222 ret = sch_sq_add_enc(mux->sch, sq_idx, ms->sch_idx_enc,
2223 shortest || ms->max_frames < INT64_MAX,
2224 ms->max_frames);
2225 if (ret < 0)
2226 return ret;
2227 }
2228 }
2229
2230 /* if there are any additional interleaved streams, then ALL the streams
2231 * are also synchronized before sending them to the muxer */
2232 if (nb_interleaved > nb_av_enc) {
2233 mux->sq_mux = sq_alloc(SYNC_QUEUE_PACKETS, buf_size_us, mux);
2234 if (!mux->sq_mux)
2235 return AVERROR(ENOMEM);
2236
2237 mux->sq_pkt = av_packet_alloc();
2238 if (!mux->sq_pkt)
2239 return AVERROR(ENOMEM);
2240
2241 for (int i = 0; i < oc->nb_streams; i++) {
2242 OutputStream *ost = of->streams[i];
2243 MuxStream *ms = ms_from_ost(ost);
2244 enum AVMediaType type = ost->type;
2245
2246 if (!IS_INTERLEAVED(type))
2247 continue;
2248
2249 ms->sq_idx_mux = sq_add_stream(mux->sq_mux,
2250 shortest || ms->max_frames < INT64_MAX);
2251 if (ms->sq_idx_mux < 0)
2252 return ms->sq_idx_mux;
2253
2254 if (ms->max_frames != INT64_MAX)
2256 }
2257 }
2258
2259#undef IS_AV_ENC
2260#undef IS_INTERLEAVED
2261
2262 return 0;
2263}
2264
2266{
2267 AVIAMFAudioElement *audio_element = stg->params.iamf_audio_element;
2268 AVDictionary *dict = NULL;
2269 const char *token;
2270 int ret = 0;
2271
2272 audio_element->demixing_info =
2274 audio_element->recon_gain_info =
2276
2277 if (!audio_element->demixing_info ||
2278 !audio_element->recon_gain_info)
2279 return AVERROR(ENOMEM);
2280
2281 /* process manually set layers and parameters */
2282 token = av_strtok(NULL, ",", &ptr);
2283 while (token) {
2284 const AVDictionaryEntry *e;
2285 int demixing = 0, recon_gain = 0;
2286 int layer = 0;
2287
2288 if (ptr)
2289 ptr += strspn(ptr, " \n\t\r");
2290 if (av_strstart(token, "layer=", &token))
2291 layer = 1;
2292 else if (av_strstart(token, "demixing=", &token))
2293 demixing = 1;
2294 else if (av_strstart(token, "recon_gain=", &token))
2295 recon_gain = 1;
2296
2297 av_dict_free(&dict);
2298 ret = av_dict_parse_string(&dict, token, "=", ":", 0);
2299 if (ret < 0) {
2300 av_log(mux, AV_LOG_ERROR, "Error parsing audio element specification %s\n", token);
2301 goto fail;
2302 }
2303
2304 if (layer) {
2305 AVIAMFLayer *audio_layer = av_iamf_audio_element_add_layer(audio_element);
2306 if (!audio_layer) {
2307 av_log(mux, AV_LOG_ERROR, "Error adding layer to stream group %d\n", stg->index);
2308 ret = AVERROR(ENOMEM);
2309 goto fail;
2310 }
2311 av_opt_set_dict(audio_layer, &dict);
2312 } else if (demixing || recon_gain) {
2313 AVIAMFParamDefinition *param = demixing ? audio_element->demixing_info
2314 : audio_element->recon_gain_info;
2315 void *subblock = av_iamf_param_definition_get_subblock(param, 0);
2316
2317 av_opt_set_dict(param, &dict);
2318 av_opt_set_dict(subblock, &dict);
2319 }
2320
2321 // make sure that no entries are left in the dict
2322 e = NULL;
2323 if (e = av_dict_iterate(dict, e)) {
2324 av_log(mux, AV_LOG_FATAL, "Unknown layer key %s.\n", e->key);
2325 ret = AVERROR(EINVAL);
2326 goto fail;
2327 }
2328 token = av_strtok(NULL, ",", &ptr);
2329 }
2330
2331fail:
2332 av_dict_free(&dict);
2333 if (!ret && !audio_element->nb_layers) {
2334 av_log(mux, AV_LOG_ERROR, "No layer in audio element specification\n");
2335 ret = AVERROR(EINVAL);
2336 }
2337
2338 return ret;
2339}
2340
2341static int of_parse_iamf_submixes(Muxer *mux, AVStreamGroup *stg, char *ptr)
2342{
2343 AVFormatContext *oc = mux->fc;
2345 AVDictionary *dict = NULL;
2346 const char *token;
2347 char *submix_str = NULL;
2348 int ret = 0;
2349
2350 /* process manually set submixes */
2351 token = av_strtok(NULL, ",", &ptr);
2352 while (token) {
2353 AVIAMFSubmix *submix = NULL;
2354 const char *subtoken;
2355 char *subptr = NULL;
2356
2357 if (ptr)
2358 ptr += strspn(ptr, " \n\t\r");
2359 if (!av_strstart(token, "submix=", &token)) {
2360 av_log(mux, AV_LOG_ERROR, "No submix in mix presentation specification \"%s\"\n", token);
2361 goto fail;
2362 }
2363
2364 submix_str = av_strdup(token);
2365 if (!submix_str)
2366 goto fail;
2367
2369 if (!submix) {
2370 av_log(mux, AV_LOG_ERROR, "Error adding submix to stream group %d\n", stg->index);
2371 ret = AVERROR(ENOMEM);
2372 goto fail;
2373 }
2374 submix->output_mix_config =
2376 if (!submix->output_mix_config) {
2377 ret = AVERROR(ENOMEM);
2378 goto fail;
2379 }
2380
2381 subptr = NULL;
2382 subtoken = av_strtok(submix_str, "|", &subptr);
2383 while (subtoken) {
2384 const AVDictionaryEntry *e;
2385 int element = 0, layout = 0;
2386
2387 if (subptr)
2388 subptr += strspn(subptr, " \n\t\r");
2389 if (av_strstart(subtoken, "element=", &subtoken))
2390 element = 1;
2391 else if (av_strstart(subtoken, "layout=", &subtoken))
2392 layout = 1;
2393
2394 av_dict_free(&dict);
2395 ret = av_dict_parse_string(&dict, subtoken, "=", ":", 0);
2396 if (ret < 0) {
2397 av_log(mux, AV_LOG_ERROR, "Error parsing submix specification \"%s\"\n", subtoken);
2398 goto fail;
2399 }
2400
2401 if (element) {
2402 AVIAMFSubmixElement *submix_element;
2403 char *endptr = NULL;
2404 int64_t idx = -1;
2405
2406 if (e = av_dict_get(dict, "stg", NULL, 0))
2407 idx = strtoll(e->value, &endptr, 0);
2408 if (!endptr || *endptr || idx < 0 || idx >= oc->nb_stream_groups - 1 ||
2410 av_log(mux, AV_LOG_ERROR, "Invalid or missing stream group index in "
2411 "submix element specification \"%s\"\n", subtoken);
2412 ret = AVERROR(EINVAL);
2413 goto fail;
2414 }
2415 submix_element = av_iamf_submix_add_element(submix);
2416 if (!submix_element) {
2417 av_log(mux, AV_LOG_ERROR, "Error adding element to submix\n");
2418 ret = AVERROR(ENOMEM);
2419 goto fail;
2420 }
2421
2422 submix_element->audio_element_id = oc->stream_groups[idx]->id;
2423
2424 submix_element->element_mix_config =
2426 if (!submix_element->element_mix_config)
2427 ret = AVERROR(ENOMEM);
2428 av_dict_set(&dict, "stg", NULL, 0);
2429 av_opt_set_dict2(submix_element, &dict, AV_OPT_SEARCH_CHILDREN);
2430 } else if (layout) {
2431 AVIAMFSubmixLayout *submix_layout = av_iamf_submix_add_layout(submix);
2432 if (!submix_layout) {
2433 av_log(mux, AV_LOG_ERROR, "Error adding layout to submix\n");
2434 ret = AVERROR(ENOMEM);
2435 goto fail;
2436 }
2437 av_opt_set_dict(submix_layout, &dict);
2438 } else
2440
2441 if (ret < 0) {
2442 goto fail;
2443 }
2444
2445 // make sure that no entries are left in the dict
2446 e = NULL;
2447 while (e = av_dict_iterate(dict, e)) {
2448 av_log(mux, AV_LOG_FATAL, "Unknown submix key %s.\n", e->key);
2449 ret = AVERROR(EINVAL);
2450 goto fail;
2451 }
2452 subtoken = av_strtok(NULL, "|", &subptr);
2453 }
2454 av_freep(&submix_str);
2455
2456 if (!submix->nb_elements) {
2457 av_log(mux, AV_LOG_ERROR, "No audio elements in submix specification \"%s\"\n", token);
2458 ret = AVERROR(EINVAL);
2459 }
2460 token = av_strtok(NULL, ",", &ptr);
2461 }
2462
2463fail:
2464 av_dict_free(&dict);
2465 av_free(submix_str);
2466
2467 return ret;
2468}
2469
2470static int of_serialize_options(Muxer *mux, void *obj, AVBPrint *bp)
2471{
2472 char *ptr;
2473 int ret;
2474
2476 &ptr, '=', ':');
2477 if (ret < 0) {
2478 av_log(mux, AV_LOG_ERROR, "Failed to serialize group\n");
2479 return ret;
2480 }
2481
2482 av_bprintf(bp, "%s", ptr);
2483 ret = strlen(ptr);
2484 av_free(ptr);
2485
2486 return ret;
2487}
2488
2489#define SERIALIZE(parent, child) do { \
2490 ret = of_serialize_options(mux, parent->child, bp); \
2491 if (ret < 0) \
2492 return ret; \
2493} while (0)
2494
2495#define SERIALIZE_LOOP_SUBBLOCK(obj) do { \
2496 for (int k = 0; k < obj->nb_subblocks; k++) { \
2497 ret = of_serialize_options(mux, \
2498 av_iamf_param_definition_get_subblock(obj, k), bp); \
2499 if (ret < 0) \
2500 return ret; \
2501 } \
2502} while (0)
2503
2504#define SERIALIZE_LOOP(parent, child, suffix, separator) do { \
2505 for (int j = 0; j < parent->nb_## child ## suffix; j++) { \
2506 av_bprintf(bp, separator#child "="); \
2507 SERIALIZE(parent, child ## suffix[j]); \
2508 } \
2509} while (0)
2510
2512{
2513 AVFormatContext *oc = mux->fc;
2514
2515 for (unsigned i = 0; i < oc->nb_stream_groups; i++)
2516 if (oc->stream_groups[i]->id == id)
2517 return oc->stream_groups[i]->index;
2518
2519 return AVERROR(EINVAL);
2520}
2521
2522static int of_map_group(Muxer *mux, AVDictionary **dict, AVBPrint *bp, const char *map)
2523{
2524 AVStreamGroup *stg;
2525 int ret, file_idx, stream_idx;
2526 char *ptr;
2527
2528 file_idx = strtol(map, &ptr, 0);
2529 if (file_idx >= nb_input_files || file_idx < 0 || map == ptr) {
2530 av_log(mux, AV_LOG_ERROR, "Invalid input file index: %d.\n", file_idx);
2531 return AVERROR(EINVAL);
2532 }
2533
2534 stream_idx = strtol(*ptr == '=' ? ptr + 1 : ptr, &ptr, 0);
2535 if (*ptr || stream_idx >= input_files[file_idx]->ctx->nb_stream_groups || stream_idx < 0) {
2536 av_log(mux, AV_LOG_ERROR, "Invalid input stream group index: %d.\n", stream_idx);
2537 return AVERROR(EINVAL);
2538 }
2539
2540 stg = input_files[file_idx]->ctx->stream_groups[stream_idx];
2541 ret = of_serialize_options(mux, stg, bp);
2542 if (ret < 0)
2543 return ret;
2544
2545 ret = av_dict_parse_string(dict, bp->str, "=", ":", 0);
2546 if (ret < 0)
2547 av_log(mux, AV_LOG_ERROR, "Error parsing mapped group specification %s\n", ptr);
2548 av_dict_set_int(dict, "type", stg->type, 0);
2549
2550 av_bprint_clear(bp);
2551 switch(stg->type) {
2553 AVIAMFAudioElement *audio_element = stg->params.iamf_audio_element;
2554
2555 if (audio_element->demixing_info) {
2556 AVIAMFParamDefinition *demixing_info = audio_element->demixing_info;
2557 av_bprintf(bp, ",demixing=");
2558 SERIALIZE(audio_element, demixing_info);
2559 if (ret && demixing_info->nb_subblocks)
2560 av_bprintf(bp, ":");
2561 SERIALIZE_LOOP_SUBBLOCK(demixing_info);
2562 }
2563 if (audio_element->recon_gain_info) {
2564 AVIAMFParamDefinition *recon_gain_info = audio_element->recon_gain_info;
2565 av_bprintf(bp, ",recon_gain=");
2566 SERIALIZE(audio_element, recon_gain_info);
2567 if (ret && recon_gain_info->nb_subblocks)
2568 av_bprintf(bp, ":");
2569 SERIALIZE_LOOP_SUBBLOCK(recon_gain_info);
2570 }
2571 SERIALIZE_LOOP(audio_element, layer, s, ",");
2572 break;
2573 }
2576
2577 for (int i = 0; i < mix->nb_submixes; i++) {
2578 AVIAMFSubmix *submix = mix->submixes[i];
2579 AVIAMFParamDefinition *output_mix_config = submix->output_mix_config;
2580
2581 av_bprintf(bp, ",submix=");
2582 SERIALIZE(mix, submixes[i]);
2583 if (ret && output_mix_config->nb_subblocks)
2584 av_bprintf(bp, ":");
2585 SERIALIZE_LOOP_SUBBLOCK(output_mix_config);
2586 for (int j = 0; j < submix->nb_elements; j++) {
2587 AVIAMFSubmixElement *element = submix->elements[j];
2588 AVIAMFParamDefinition *element_mix_config = element->element_mix_config;
2590
2591 if (id < 0) {
2592 av_log(mux, AV_LOG_ERROR, "Invalid or missing stream group index in"
2593 "submix element");
2594 return id;
2595 }
2596
2597 av_bprintf(bp, "|element=");
2598 SERIALIZE(submix, elements[j]);
2599 if (ret && element_mix_config->nb_subblocks)
2600 av_bprintf(bp, ":");
2601 SERIALIZE_LOOP_SUBBLOCK(element_mix_config);
2602 if (ret)
2603 av_bprintf(bp, ":");
2604 av_bprintf(bp, "stg=%"PRId64, id);
2605 }
2606 SERIALIZE_LOOP(submix, layout, s, "|");
2607 }
2608 break;
2609 }
2613 break;
2614 default:
2615 av_log(mux, AV_LOG_ERROR, "Unsupported mapped group type %d.\n", stg->type);
2616 ret = AVERROR(EINVAL);
2617 break;
2618 }
2619 return 0;
2620}
2621
2622static int of_parse_group_token(Muxer *mux, const char *token, char *ptr)
2623{
2624 AVFormatContext *oc = mux->fc;
2625 AVStreamGroup *stg;
2626 AVDictionary *dict = NULL, *tmp = NULL;
2627 char *mapped_string = NULL;
2628 const AVDictionaryEntry *e;
2629 const AVOption opts[] = {
2630 { "type", "Set group type", offsetof(AVStreamGroup, type), AV_OPT_TYPE_INT,
2631 { .i64 = 0 }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM, .unit = "type" },
2632 { "iamf_audio_element", NULL, 0, AV_OPT_TYPE_CONST,
2633 { .i64 = AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT }, .unit = "type" },
2634 { "iamf_mix_presentation", NULL, 0, AV_OPT_TYPE_CONST,
2635 { .i64 = AV_STREAM_GROUP_PARAMS_IAMF_MIX_PRESENTATION }, .unit = "type" },
2636 { "lcevc", NULL, 0, AV_OPT_TYPE_CONST,
2637 { .i64 = AV_STREAM_GROUP_PARAMS_LCEVC }, .unit = "type" },
2638 { "tref", NULL, 0, AV_OPT_TYPE_CONST,
2639 { .i64 = AV_STREAM_GROUP_PARAMS_TREF }, .unit = "type" },
2640 { NULL },
2641 };
2642 const AVClass class = {
2643 .class_name = "StreamGroupType",
2644 .item_name = av_default_item_name,
2645 .option = opts,
2646 .version = LIBAVUTIL_VERSION_INT,
2647 };
2648 const AVClass *pclass = &class;
2649 int type, ret;
2650
2651 ret = av_dict_parse_string(&dict, token, "=", ":", AV_DICT_MULTIKEY);
2652 if (ret < 0) {
2653 av_log(mux, AV_LOG_ERROR, "Error parsing group specification %s\n", token);
2654 return ret;
2655 }
2656
2657 av_dict_copy(&tmp, dict, 0);
2658 e = av_dict_get(dict, "map", NULL, 0);
2659 if (e) {
2660 AVBPrint bp;
2661
2662 if (ptr) {
2663 av_log(mux, AV_LOG_ERROR, "Unexpected extra parameters when mapping a"
2664 " stream group\n");
2665 ret = AVERROR(EINVAL);
2666 goto end;
2667 }
2668
2670 ret = of_map_group(mux, &tmp, &bp, e->value);
2671 if (ret < 0) {
2673 goto end;
2674 }
2675
2676 av_bprint_finalize(&bp, &mapped_string);
2677 ptr = mapped_string;
2678 }
2679
2680 // "type" is not a user settable AVOption in AVStreamGroup, so handle it here
2681 e = av_dict_get(tmp, "type", NULL, 0);
2682 if (!e) {
2683 av_log(mux, AV_LOG_ERROR, "No type specified for Stream Group in \"%s\"\n", token);
2684 ret = AVERROR(EINVAL);
2685 goto end;
2686 }
2687
2688 ret = av_opt_eval_int(&pclass, opts, e->value, &type);
2689 if (!ret && type == AV_STREAM_GROUP_PARAMS_NONE)
2690 ret = AVERROR(EINVAL);
2691 if (ret < 0) {
2692 av_log(mux, AV_LOG_ERROR, "Invalid group type \"%s\"\n", e->value);
2693 goto end;
2694 }
2695
2697 if (!stg) {
2698 ret = AVERROR(ENOMEM);
2699 goto end;
2700 }
2701
2702 e = NULL;
2703 while (e = av_dict_get(dict, "st", e, 0)) {
2704 char *endptr;
2705 int64_t idx = strtoll(e->value, &endptr, 0);
2706 if (*endptr || idx < 0 || idx >= oc->nb_streams) {
2707 av_log(mux, AV_LOG_ERROR, "Invalid stream index %"PRId64"\n", idx);
2708 ret = AVERROR(EINVAL);
2709 goto end;
2710 }
2711 ret = avformat_stream_group_add_stream(stg, oc->streams[idx]);
2712 if (ret < 0)
2713 goto end;
2714 OutputStream *ost = mux->of.streams[idx];
2717 ost->enc->flags2 |= AV_CODEC_FLAG2_FIXED_FRAME_SIZE;
2718 }
2719 while (e = av_dict_get(dict, "stg", e, 0)) {
2720 char *endptr;
2721 int64_t idx = strtoll(e->value, &endptr, 0);
2722 if (*endptr || idx < 0 || idx >= oc->nb_stream_groups - 1) {
2723 av_log(mux, AV_LOG_ERROR, "Invalid stream group index %"PRId64"\n", idx);
2724 ret = AVERROR(EINVAL);
2725 goto end;
2726 }
2727 for (unsigned i = 0; i < oc->stream_groups[idx]->nb_streams; i++) {
2729 if (ret < 0)
2730 goto end;
2731 }
2732 }
2733
2734 switch(type) {
2736 ret = of_parse_iamf_audio_element_layers(mux, stg, ptr);
2737 break;
2739 ret = of_parse_iamf_submixes(mux, stg, ptr);
2740 break;
2741 default:
2742 break;
2743 }
2744
2745 if (ret < 0)
2746 goto end;
2747
2748 // make sure that nothing but "st" and "stg" entries are left in the dict
2749 e = NULL;
2750 av_dict_set(&tmp, "map", NULL, 0);
2751 av_dict_set(&tmp, "type", NULL, 0);
2752 while (e = av_dict_iterate(tmp, e)) {
2753 if (!strcmp(e->key, "st") || !strcmp(e->key, "stg"))
2754 continue;
2755
2756 av_log(mux, AV_LOG_FATAL, "Unknown group key %s.\n", e->key);
2757 ret = AVERROR(EINVAL);
2758 goto end;
2759 }
2760
2761 ret = 0;
2762end:
2763 av_free(mapped_string);
2764 av_dict_free(&dict);
2765 av_dict_free(&tmp);
2766
2767 return ret;
2768}
2769
2770static int of_add_groups(Muxer *mux, const OptionsContext *o)
2771{
2772 /* process manually set groups */
2773 for (int i = 0; i < o->stream_groups.nb_opt; i++) {
2774 const char *token;
2775 char *str, *ptr = NULL;
2776 int ret = 0;
2777
2778 str = av_strdup(o->stream_groups.opt[i].u.str);
2779 if (!str)
2780 return ret;
2781
2782 token = av_strtok(str, ",", &ptr);
2783 if (token) {
2784 if (ptr)
2785 ptr += strspn(ptr, " \n\t\r");
2786 ret = of_parse_group_token(mux, token, ptr);
2787 }
2788
2789 av_free(str);
2790 if (ret < 0)
2791 return ret;
2792 }
2793
2794 return 0;
2795}
2796
2797static int of_add_programs(Muxer *mux, const OptionsContext *o)
2798{
2799 AVFormatContext *oc = mux->fc;
2800 /* process manually set programs */
2801 for (int i = 0; i < o->program.nb_opt; i++) {
2802 AVDictionary *dict = NULL;
2803 const AVDictionaryEntry *e;
2804 AVProgram *program;
2805 int ret, progid = i + 1;
2806
2807 ret = av_dict_parse_string(&dict, o->program.opt[i].u.str, "=", ":",
2809 if (ret < 0) {
2810 av_log(mux, AV_LOG_ERROR, "Error parsing program specification %s\n",
2811 o->program.opt[i].u.str);
2812 return ret;
2813 }
2814
2815 e = av_dict_get(dict, "program_num", NULL, 0);
2816 if (e) {
2817 progid = strtol(e->value, NULL, 0);
2818 av_dict_set(&dict, e->key, NULL, 0);
2819 }
2820
2821 program = av_new_program(oc, progid);
2822 if (!program) {
2823 ret = AVERROR(ENOMEM);
2824 goto fail;
2825 }
2826
2827 e = av_dict_get(dict, "title", NULL, 0);
2828 if (e) {
2829 av_dict_set(&program->metadata, e->key, e->value, 0);
2830 av_dict_set(&dict, e->key, NULL, 0);
2831 }
2832
2833 e = NULL;
2834 while (e = av_dict_get(dict, "st", e, 0)) {
2835 int st_num = strtol(e->value, NULL, 0);
2836 av_program_add_stream_index(oc, progid, st_num);
2837 }
2838
2839 // make sure that nothing but "st" entries are left in the dict
2840 e = NULL;
2841 while (e = av_dict_iterate(dict, e)) {
2842 if (!strcmp(e->key, "st"))
2843 continue;
2844
2845 av_log(mux, AV_LOG_FATAL, "Unknown program key %s.\n", e->key);
2846 ret = AVERROR(EINVAL);
2847 goto fail;
2848 }
2849
2850fail:
2851 av_dict_free(&dict);
2852 if (ret < 0)
2853 return ret;
2854 }
2855
2856 return 0;
2857}
2858
2859/**
2860 * Parse a metadata specifier passed as 'arg' parameter.
2861 * @param arg metadata string to parse
2862 * @param type metadata type is written here -- g(lobal)/s(tream)/c(hapter)/p(rogram)
2863 * @param index for type c/p, chapter/program index is written here
2864 * @param stream_spec for type s, the stream specifier is written here
2865 */
2866static int parse_meta_type(void *logctx, const char *arg,
2867 char *type, int *index, const char **stream_spec)
2868{
2869 if (*arg) {
2870 *type = *arg;
2871 switch (*arg) {
2872 case 'g':
2873 break;
2874 case 's':
2875 if (*(++arg) && *arg != ':') {
2876 av_log(logctx, AV_LOG_FATAL, "Invalid metadata specifier %s.\n", arg);
2877 return AVERROR(EINVAL);
2878 }
2879 *stream_spec = *arg == ':' ? arg + 1 : "";
2880 break;
2881 case 'c':
2882 case 'p':
2883 if (*(++arg) == ':')
2884 *index = strtol(++arg, NULL, 0);
2885 break;
2886 default:
2887 av_log(logctx, AV_LOG_FATAL, "Invalid metadata type %c.\n", *arg);
2888 return AVERROR(EINVAL);
2889 }
2890 } else
2891 *type = 'g';
2892
2893 return 0;
2894}
2895
2897 const OptionsContext *o)
2898{
2899 for (int i = 0; i < o->metadata.nb_opt; i++) {
2900 AVDictionary **m;
2901 char type, *val;
2902 const char *stream_spec;
2903 int index = 0, ret = 0;
2904
2905 val = strchr(o->metadata.opt[i].u.str, '=');
2906 if (!val) {
2907 av_log(of, AV_LOG_FATAL, "No '=' character in metadata string %s.\n",
2908 o->metadata.opt[i].u.str);
2909 return AVERROR(EINVAL);
2910 }
2911 *val++ = 0;
2912
2913 ret = parse_meta_type(of, o->metadata.opt[i].specifier, &type, &index, &stream_spec);
2914 if (ret < 0)
2915 return ret;
2916
2917 if (type == 's') {
2918 for (int j = 0; j < oc->nb_streams; j++) {
2919 if ((ret = check_stream_specifier(oc, oc->streams[j], stream_spec)) > 0) {
2920 av_dict_set(&oc->streams[j]->metadata, o->metadata.opt[i].u.str, *val ? val : NULL, 0);
2921 } else if (ret < 0)
2922 return ret;
2923 }
2924 } else {
2925 switch (type) {
2926 case 'g':
2927 m = &oc->metadata;
2928 break;
2929 case 'c':
2931 av_log(of, AV_LOG_FATAL, "Invalid chapter index %d in metadata specifier.\n", index);
2932 return AVERROR(EINVAL);
2933 }
2934 m = &oc->chapters[index]->metadata;
2935 break;
2936 case 'p':
2938 av_log(of, AV_LOG_FATAL, "Invalid program index %d in metadata specifier.\n", index);
2939 return AVERROR(EINVAL);
2940 }
2941 m = &oc->programs[index]->metadata;
2942 break;
2943 default:
2944 av_log(of, AV_LOG_FATAL, "Invalid metadata specifier %s.\n", o->metadata.opt[i].specifier);
2945 return AVERROR(EINVAL);
2946 }
2947 av_dict_set(m, o->metadata.opt[i].u.str, *val ? val : NULL, 0);
2948 }
2949 }
2950
2951 return 0;
2952}
2953
2954static int copy_chapters(InputFile *ifile, OutputFile *ofile, AVFormatContext *os,
2955 int copy_metadata)
2956{
2957 AVFormatContext *is = ifile->ctx;
2958 AVChapter **tmp;
2959
2960 tmp = av_realloc_f(os->chapters, is->nb_chapters + os->nb_chapters, sizeof(*os->chapters));
2961 if (!tmp)
2962 return AVERROR(ENOMEM);
2963 os->chapters = tmp;
2964
2965 for (int i = 0; i < is->nb_chapters; i++) {
2966 AVChapter *in_ch = is->chapters[i], *out_ch;
2967 int64_t start_time = (ofile->start_time == AV_NOPTS_VALUE) ? 0 : ofile->start_time;
2968 int64_t ts_off = av_rescale_q(start_time - ifile->ts_offset,
2969 AV_TIME_BASE_Q, in_ch->time_base);
2970 int64_t rt = (ofile->recording_time == INT64_MAX) ? INT64_MAX :
2972
2973
2974 if (in_ch->end < ts_off)
2975 continue;
2976 if (rt != INT64_MAX && in_ch->start > rt + ts_off)
2977 break;
2978
2979 out_ch = av_mallocz(sizeof(AVChapter));
2980 if (!out_ch)
2981 return AVERROR(ENOMEM);
2982
2983 out_ch->id = in_ch->id;
2984 out_ch->time_base = in_ch->time_base;
2985 out_ch->start = FFMAX(0, in_ch->start - ts_off);
2986 out_ch->end = FFMIN(rt, in_ch->end - ts_off);
2987
2988 if (copy_metadata)
2989 av_dict_copy(&out_ch->metadata, in_ch->metadata, 0);
2990
2991 os->chapters[os->nb_chapters++] = out_ch;
2992 }
2993 return 0;
2994}
2995
2997 const char *outspec, const char *inspec,
2998 int *metadata_global_manual, int *metadata_streams_manual,
2999 int *metadata_chapters_manual)
3000{
3001 AVFormatContext *oc = mux->fc;
3002 AVDictionary **meta_in = NULL;
3003 AVDictionary **meta_out = NULL;
3004 int i, ret = 0;
3005 char type_in, type_out;
3006 const char *istream_spec = NULL, *ostream_spec = NULL;
3007 int idx_in = 0, idx_out = 0;
3008
3009 ret = parse_meta_type(mux, inspec, &type_in, &idx_in, &istream_spec);
3010 if (ret >= 0)
3011 ret = parse_meta_type(mux, outspec, &type_out, &idx_out, &ostream_spec);
3012 if (ret < 0)
3013 return ret;
3014
3015 if (type_in == 'g' || type_out == 'g' || (!*outspec && !ic))
3016 *metadata_global_manual = 1;
3017 if (type_in == 's' || type_out == 's' || (!*outspec && !ic))
3018 *metadata_streams_manual = 1;
3019 if (type_in == 'c' || type_out == 'c' || (!*outspec && !ic))
3020 *metadata_chapters_manual = 1;
3021
3022 /* ic is NULL when just disabling automatic mappings */
3023 if (!ic)
3024 return 0;
3025
3026#define METADATA_CHECK_INDEX(index, nb_elems, desc)\
3027 if ((index) < 0 || (index) >= (nb_elems)) {\
3028 av_log(mux, AV_LOG_FATAL, "Invalid %s index %d while processing metadata maps.\n",\
3029 (desc), (index));\
3030 return AVERROR(EINVAL);\
3031 }
3032
3033#define SET_DICT(type, meta, context, index)\
3034 switch (type) {\
3035 case 'g':\
3036 meta = &context->metadata;\
3037 break;\
3038 case 'c':\
3039 METADATA_CHECK_INDEX(index, context->nb_chapters, "chapter")\
3040 meta = &context->chapters[index]->metadata;\
3041 break;\
3042 case 'p':\
3043 METADATA_CHECK_INDEX(index, context->nb_programs, "program")\
3044 meta = &context->programs[index]->metadata;\
3045 break;\
3046 case 's':\
3047 break; /* handled separately below */ \
3048 default: av_assert0(0);\
3049 }\
3050
3051 SET_DICT(type_in, meta_in, ic, idx_in);
3052 SET_DICT(type_out, meta_out, oc, idx_out);
3053
3054 /* for input streams choose first matching stream */
3055 if (type_in == 's') {
3056 for (i = 0; i < ic->nb_streams; i++) {
3057 if ((ret = check_stream_specifier(ic, ic->streams[i], istream_spec)) > 0) {
3058 meta_in = &ic->streams[i]->metadata;
3059 break;
3060 } else if (ret < 0)
3061 return ret;
3062 }
3063 if (!meta_in) {
3064 av_log(mux, AV_LOG_FATAL, "Stream specifier %s does not match any streams.\n", istream_spec);
3065 return AVERROR(EINVAL);
3066 }
3067 }
3068
3069 if (type_out == 's') {
3070 for (i = 0; i < oc->nb_streams; i++) {
3071 if ((ret = check_stream_specifier(oc, oc->streams[i], ostream_spec)) > 0) {
3072 meta_out = &oc->streams[i]->metadata;
3073 av_dict_copy(meta_out, *meta_in, AV_DICT_DONT_OVERWRITE);
3074 } else if (ret < 0)
3075 return ret;
3076 }
3077 } else
3078 av_dict_copy(meta_out, *meta_in, AV_DICT_DONT_OVERWRITE);
3079
3080 return 0;
3081}
3082
3083#define REENC_MASK(type) (1u << (type))
3084#define REENC_AUDIO_ONLY REENC_MASK(AVMEDIA_TYPE_AUDIO)
3085#define REENC_VIDEO_ONLY REENC_MASK(AVMEDIA_TYPE_VIDEO)
3086#define REENC_ANY (REENC_AUDIO_ONLY | REENC_VIDEO_ONLY)
3087
3088static const struct {
3089 const char *key;
3091 unsigned reenc_mask; /* 0 = always delete; non-zero = bit-mask of
3092 * REENC_* values whose re-encoding triggers
3093 * deletion of this key */
3094} reenc_delete_keys[] = {
3095 // Note: "encoder" is intentionally absent — set_encoder_id() stamps it
3096 // after copy_meta() runs, so it always reflects the current encoder.
3097
3098 // iTunes gapless playback: encoder-specific sample counts and padding;
3099 // gapless_playback is the M4A/MOV equivalent of iTunPGAP
3100 { "iTunPGAP", 0, REENC_AUDIO_ONLY },
3101 { "comment-iTunPGAP-eng", 0, REENC_AUDIO_ONLY },
3102 { "iTunSMPB", 0, REENC_AUDIO_ONLY },
3103 { "comment-iTunSMPB-eng", 0, REENC_AUDIO_ONLY },
3104 { "gapless_playback", 0, REENC_AUDIO_ONLY },
3105 // iTunes Sound Check: peak amplitude computed from the original waveform
3106 { "iTunNORM", 0, REENC_AUDIO_ONLY },
3107 { "comment-iTunNORM-eng", 0, REENC_AUDIO_ONLY },
3108 // encoding provenance: describe the original encoder, not the new one
3109 { "encoded_by", 0, REENC_ANY },
3110 { "encoding_tool", 0, REENC_ANY },
3111 // MOV/MP4 stream: vendor 4CC identifies the original encoder
3112 { "vendor_id", 0, REENC_ANY },
3113 // Matroska stream stats written by mkvmerge; all are invalidated by re-encoding
3114 { "BPS", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3115 { "DURATION", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3116 { "NUMBER_OF_BYTES", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3117 { "NUMBER_OF_FRAMES", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3118 { "_STATISTICS_TAGS", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3119 { "_STATISTICS_WRITING_APP", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3120 { "_STATISTICS_WRITING_DATE_UTC", AV_DICT_IGNORE_SUFFIX, REENC_ANY },
3121
3122 // MOV/MP4: source container brand written by the demuxer; muxer ignores
3123 // these keys and writes its own ftyp, so they always describe the source file
3124 { "major_brand", 0, 0 },
3125 { "minor_version", 0, 0 },
3126 { "compatible_brands", 0, 0 },
3127 { NULL }
3129
3130static int meta_spec_matches(void *log_ctx, AVFormatContext *oc, AVStream *st,
3131 const char *spec)
3132{
3133 char type;
3134 int index = 0;
3135 const char *stream_spec = NULL;
3136
3137 if (parse_meta_type(log_ctx, spec, &type, &index, &stream_spec) < 0)
3138 return 0;
3139
3140 if (*spec) {
3141 if (type == 'g' && st)
3142 return 0;
3143 if (type == 's') {
3144 int ret;
3145 if (!st)
3146 return 0;
3147 ret = check_stream_specifier(oc, st, stream_spec);
3148 return ret < 0 ? ret : ret > 0;
3149 }
3150 if (type == 'c' || type == 'p')
3151 return 0;
3152 }
3153 return 1;
3154}
3155
3156static int reenc_delete_metadata_key(const OptionsContext *o, void *log_ctx,
3157 AVFormatContext *oc, AVStream *st,
3158 const char *family, const char *key, int flags)
3159{
3160 for (int i = 0; i < o->keep_metadata.nb_opt; i++) {
3161 int ret = meta_spec_matches(log_ctx, oc, st, o->keep_metadata.opt[i].specifier);
3162 if (ret < 0)
3163 return ret;
3164 if (!ret)
3165 continue;
3166 const char *keep = o->keep_metadata.opt[i].u.str;
3168 /* accept the unsuffixed family name (e.g. NUMBER_OF_BYTES keeps
3169 * NUMBER_OF_BYTES-eng) or the exact matched key; an arbitrary
3170 * prefix like NUMBER does not match NUMBER_OF_BYTES-eng */
3171 if (!strcmp(keep, family) || !strcmp(keep, key))
3172 return 0;
3173 } else {
3174 if (!strcmp(key, keep))
3175 return 0;
3176 }
3177 }
3178 for (int i = 0; i < o->metadata.nb_opt; i++) {
3179 int ret;
3180 /* plain -metadata (empty specifier) applies to global metadata only,
3181 * matching of_add_metadata(); don't let it suppress stream-level pruning */
3182 if (!*o->metadata.opt[i].specifier && st)
3183 continue;
3184 ret = meta_spec_matches(log_ctx, oc, st, o->metadata.opt[i].specifier);
3185 if (ret < 0)
3186 return ret;
3187 if (!ret)
3188 continue;
3189 size_t klen = strcspn(o->metadata.opt[i].u.str, "=");
3190 if (!strncmp(key, o->metadata.opt[i].u.str, klen) && key[klen] == '\0')
3191 return 0;
3192 }
3193 return 1;
3194}
3195
3196static int reenc_delete_stale_metadata(const OptionsContext *o, void *log_ctx,
3197 AVFormatContext *oc, AVStream *st,
3198 AVDictionary **dict, const char *kind,
3199 unsigned reenc_mask)
3200{
3201 for (int i = 0; reenc_delete_keys[i].key; i++) {
3202 const char *key = reenc_delete_keys[i].key;
3203 int flags = reenc_delete_keys[i].flags;
3204 const AVDictionaryEntry *e;
3205 int ret;
3206
3208 continue;
3209
3210 e = NULL;
3211 while ((e = av_dict_get(*dict, key, e, flags | AV_DICT_MATCH_CASE))) {
3212 ret = reenc_delete_metadata_key(o, log_ctx, oc, st, key, e->key, flags);
3213 if (ret < 0)
3214 return ret;
3215 if (!ret)
3216 continue;
3218 av_log(log_ctx, AV_LOG_WARNING,
3219 "Discarding %s metadata '%s' because %s stream is being "
3220 "re-encoded. Use '-keep_metadata %s' to keep it.\n",
3221 kind, e->key,
3222 !strcmp(kind, "stream") ? "the" : "a", e->key);
3223 av_dict_set(dict, e->key, NULL, 0);
3224 e = NULL;
3225 }
3226 }
3227 return 0;
3228}
3229
3230static int copy_meta(Muxer *mux, const OptionsContext *o)
3231{
3232 OutputFile *of = &mux->of;
3233 AVFormatContext *oc = mux->fc;
3234 int chapters_input_file = o->chapters_input_file;
3235 int metadata_global_manual = 0;
3236 int metadata_streams_manual = 0;
3237 int metadata_chapters_manual = 0;
3238 int ret;
3239
3240 /* copy metadata */
3241 for (int i = 0; i < o->metadata_map.nb_opt; i++) {
3242 char *p;
3243 int in_file_index = strtol(o->metadata_map.opt[i].u.str, &p, 0);
3244
3245 if (in_file_index >= nb_input_files) {
3246 av_log(mux, AV_LOG_FATAL, "Invalid input file index %d while "
3247 "processing metadata maps\n", in_file_index);
3248 return AVERROR(EINVAL);
3249 }
3250 ret = copy_metadata(mux,
3251 in_file_index >= 0 ? input_files[in_file_index]->ctx : NULL,
3252 o->metadata_map.opt[i].specifier, *p ? p + 1 : p,
3253 &metadata_global_manual, &metadata_streams_manual,
3254 &metadata_chapters_manual);
3255 if (ret < 0)
3256 return ret;
3257 }
3258
3259 /* copy chapters */
3260 if (chapters_input_file >= nb_input_files) {
3261 if (chapters_input_file == INT_MAX) {
3262 /* copy chapters from the first input file that has them*/
3263 chapters_input_file = -1;
3264 for (int i = 0; i < nb_input_files; i++)
3265 if (input_files[i]->ctx->nb_chapters) {
3266 chapters_input_file = i;
3267 break;
3268 }
3269 } else {
3270 av_log(mux, AV_LOG_FATAL, "Invalid input file index %d in chapter mapping.\n",
3271 chapters_input_file);
3272 return AVERROR(EINVAL);
3273 }
3274 }
3275 if (chapters_input_file >= 0)
3276 copy_chapters(input_files[chapters_input_file], of, oc,
3277 !metadata_chapters_manual);
3278
3279 /* copy global metadata by default */
3280 if (!metadata_global_manual && nb_input_files){
3281 av_dict_copy(&oc->metadata, input_files[0]->ctx->metadata,
3283 if (of->recording_time != INT64_MAX)
3284 av_dict_set(&oc->metadata, "duration", NULL, 0);
3285 av_dict_set(&oc->metadata, "creation_time", NULL, 0);
3286 av_dict_set(&oc->metadata, "company_name", NULL, 0);
3287 av_dict_set(&oc->metadata, "product_name", NULL, 0);
3288 av_dict_set(&oc->metadata, "product_version", NULL, 0);
3289
3290 }
3291 for (int i = 0; i < o->keep_metadata.nb_opt; i++) {
3292 char type;
3293 int index = 0;
3294 const char *stream_spec = NULL;
3295 const char *spec = o->keep_metadata.opt[i].specifier;
3296 ret = parse_meta_type(mux, spec, &type, &index, &stream_spec);
3297 if (ret < 0)
3298 return ret;
3299 if (type == 'c' || type == 'p') {
3301 "-keep_metadata:%s: chapter and program metadata filtering "
3302 "is not supported and will be ignored.\n", spec);
3303 } else if (type == 's') {
3304 for (int j = 0; j < oc->nb_streams; j++) {
3305 ret = check_stream_specifier(oc, oc->streams[j], stream_spec);
3306 if (ret < 0)
3307 return ret;
3308 }
3309 }
3310 }
3311
3312 /* reenc_mask keys only apply when an audio/video stream is re-encoded;
3313 * subtitle/attachment re-encodes do not affect format-level tags.
3314 * Runs unconditionally so -map_metadata does not bypass the pruning. */
3315 {
3316 unsigned reenc_mask = 0;
3317 for (int i = 0; i < of->nb_streams; i++) {
3318 OutputStream *ost = of->streams[i];
3319 if (ost->enc)
3320 reenc_mask |= REENC_MASK(ost->st->codecpar->codec_type);
3321 }
3322 ret = reenc_delete_stale_metadata(o, mux, oc, NULL, &oc->metadata, "format", reenc_mask);
3323 if (ret < 0)
3324 return ret;
3325 }
3326 if (!metadata_streams_manual)
3327 for (int i = 0; i < of->nb_streams; i++) {
3328 OutputStream *ost = of->streams[i];
3329
3330 if (!ost->ist) /* this is true e.g. for attached files */
3331 continue;
3332 av_dict_copy(&ost->st->metadata, ost->ist->st->metadata, AV_DICT_DONT_OVERWRITE);
3333 }
3334 /* runs unconditionally so -map_metadata does not bypass the pruning;
3335 * applies to all output streams, including filter outputs without ost->ist */
3336 for (int i = 0; i < of->nb_streams; i++) {
3337 OutputStream *ost = of->streams[i];
3338
3339 ret = reenc_delete_stale_metadata(o, ost, oc, ost->st, &ost->st->metadata, "stream",
3340 ost->enc ? REENC_MASK(ost->st->codecpar->codec_type) : 0);
3341 if (ret < 0)
3342 return ret;
3343 }
3344
3345 return 0;
3346}
3347
3348static int set_dispositions(Muxer *mux, const OptionsContext *o)
3349{
3350 OutputFile *of = &mux->of;
3351 AVFormatContext *ctx = mux->fc;
3352
3353 // indexed by type+1, because AVMEDIA_TYPE_UNKNOWN=-1
3354 int nb_streams[AVMEDIA_TYPE_NB + 1] = { 0 };
3355 int have_default[AVMEDIA_TYPE_NB + 1] = { 0 };
3356 int have_manual = 0;
3357 int ret = 0;
3358
3359 const char **dispositions;
3360
3361 dispositions = av_calloc(ctx->nb_streams, sizeof(*dispositions));
3362 if (!dispositions)
3363 return AVERROR(ENOMEM);
3364
3365 // reset any apic flag set for option stream-spec matching in ost_add
3366 for (int i = 0; i < ctx->nb_streams; i++) {
3367 of->streams[i]->st->disposition = 0;
3368 }
3369
3370 // first, copy the input dispositions
3371 for (int i = 0; i < ctx->nb_streams; i++) {
3372 OutputStream *ost = of->streams[i];
3373
3374 nb_streams[ost->type + 1]++;
3375
3376 opt_match_per_stream_str(ost, &o->disposition, ctx, ost->st, &dispositions[i]);
3377
3378 have_manual |= !!dispositions[i];
3379
3380 if (ost->ist) {
3381 ost->st->disposition = ost->ist->st->disposition;
3382
3383 if (ost->st->disposition & AV_DISPOSITION_DEFAULT)
3384 have_default[ost->type + 1] = 1;
3385 }
3386 }
3387
3388 if (have_manual) {
3389 // process manually set dispositions - they override the above copy
3390 for (int i = 0; i < ctx->nb_streams; i++) {
3391 OutputStream *ost = of->streams[i];
3392 const char *disp = dispositions[i];
3393
3394 if (!disp)
3395 continue;
3396
3397 ret = av_opt_set(ost->st, "disposition", disp, 0);
3398 if (ret < 0)
3399 goto finish;
3400 }
3401 } else {
3402 // For each media type with more than one stream, find a suitable stream to
3403 // mark as default, unless one is already marked default.
3404 // "Suitable" means the first of that type, skipping attached pictures.
3405 for (int i = 0; i < ctx->nb_streams; i++) {
3406 OutputStream *ost = of->streams[i];
3407 enum AVMediaType type = ost->type;
3408
3409 if (nb_streams[type + 1] < 2 || have_default[type + 1] ||
3410 ost->st->disposition & AV_DISPOSITION_ATTACHED_PIC)
3411 continue;
3412
3413 ost->st->disposition |= AV_DISPOSITION_DEFAULT;
3414 have_default[type + 1] = 1;
3415 }
3416 }
3417
3418finish:
3419 av_freep(&dispositions);
3420
3421 return ret;
3422}
3423
3424static const char *const forced_keyframes_const_names[] = {
3425 "n",
3426 "n_forced",
3427 "prev_forced_n",
3428 "prev_forced_t",
3429 "t",
3430 NULL
3431};
3432
3433static int compare_int64(const void *a, const void *b)
3434{
3435 return FFDIFFSIGN(*(const int64_t *)a, *(const int64_t *)b);
3436}
3437
3439 const Muxer *mux, const char *spec)
3440{
3441 int n = 1, i, ret, size, index = 0;
3442 int64_t t, *pts;
3443
3444 for (const char *p = spec; *p; p++)
3445 if (*p == ',')
3446 n++;
3447 size = n;
3448
3449 char *spec_dup = av_strdup(spec);
3450 pts = av_malloc_array(size, sizeof(*pts));
3451 if (!spec_dup || !pts) {
3452 ret = AVERROR(ENOMEM);
3453 goto fail;
3454 }
3455
3456 char *p = spec_dup;
3457 for (i = 0; i < n; i++) {
3458 char *next = strchr(p, ',');
3459
3460 if (next)
3461 *next++ = 0;
3462
3463 if (strstr(p, "chapters") == p) {
3464 AVChapter * const *ch = mux->fc->chapters;
3465 unsigned int nb_ch = mux->fc->nb_chapters;
3466 int j;
3467
3468 if (nb_ch > INT_MAX - size) {
3469 ret = AVERROR(ERANGE);
3470 goto fail;
3471 }
3472 size += nb_ch - 1;
3473 pts = av_realloc_f(pts, size, sizeof(*pts));
3474 if (!pts) {
3475 ret = AVERROR(ENOMEM);
3476 goto fail;
3477 }
3478
3479 if (p[8]) {
3480 ret = av_parse_time(&t, p + 8, 1);
3481 if (ret < 0) {
3482 av_log(log, AV_LOG_ERROR,
3483 "Invalid chapter time offset: %s\n", p + 8);
3484 goto fail;
3485 }
3486 } else
3487 t = 0;
3488
3489 for (j = 0; j < nb_ch; j++) {
3490 const AVChapter *c = ch[j];
3492 pts[index++] = av_rescale_q(c->start, c->time_base,
3493 AV_TIME_BASE_Q) + t;
3494 }
3495
3496 } else {
3498 ret = av_parse_time(&t, p, 1);
3499 if (ret < 0) {
3500 av_log(log, AV_LOG_ERROR, "Invalid keyframe time: %s\n", p);
3501 goto fail;
3502 }
3503
3504 pts[index++] = t;
3505 }
3506
3507 p = next;
3508 }
3509
3510 av_assert0(index == size);
3511 qsort(pts, size, sizeof(*pts), compare_int64);
3512 kf->nb_pts = size;
3513 kf->pts = pts;
3514
3515 av_freep(&spec_dup);
3516
3517 return 0;
3518fail:
3519 av_freep(&spec_dup);
3520 av_freep(&pts);
3521 return ret;
3522}
3523
3525{
3526 for (int i = 0; i < mux->of.nb_streams; i++) {
3527 OutputStream *ost = mux->of.streams[i];
3528 const char *forced_keyframes = NULL;
3529
3531 mux->fc, ost->st, &forced_keyframes);
3532
3533 if (!(ost->type == AVMEDIA_TYPE_VIDEO &&
3534 ost->enc && forced_keyframes))
3535 continue;
3536
3537 if (!strncmp(forced_keyframes, "expr:", 5)) {
3538 int ret = av_expr_parse(&ost->kf.pexpr, forced_keyframes + 5,
3540 if (ret < 0) {
3542 "Invalid force_key_frames expression '%s'\n", forced_keyframes + 5);
3543 return ret;
3544 }
3545 ost->kf.expr_const_values[FKF_N] = 0;
3546 ost->kf.expr_const_values[FKF_N_FORCED] = 0;
3547 ost->kf.expr_const_values[FKF_PREV_FORCED_N] = NAN;
3548 ost->kf.expr_const_values[FKF_PREV_FORCED_T] = NAN;
3549
3550 // Don't parse the 'forced_keyframes' in case of 'keep-source-keyframes',
3551 // parse it only for static kf timings
3552 } else if (!strcmp(forced_keyframes, "source")) {
3553 ost->kf.type = KF_FORCE_SOURCE;
3554 } else if (!strcmp(forced_keyframes, "scd_metadata")) {
3555 ost->kf.type = KF_FORCE_SCD_METADATA;
3556 } else {
3557 int ret = parse_forced_key_frames(ost, &ost->kf, mux, forced_keyframes);
3558 if (ret < 0)
3559 return ret;
3560 }
3561 }
3562
3563 return 0;
3564}
3565
3566static const char *output_file_item_name(void *obj)
3567{
3568 const Muxer *mux = obj;
3569
3570 return mux->log_name;
3571}
3572
3574 .class_name = "OutputFile",
3575 .version = LIBAVUTIL_VERSION_INT,
3576 .item_name = output_file_item_name,
3577 .category = AV_CLASS_CATEGORY_MUXER,
3578};
3579
3580static Muxer *mux_alloc(void)
3581{
3582 Muxer *mux = allocate_array_elem(&output_files, sizeof(*mux), &nb_output_files);
3583
3584 if (!mux)
3585 return NULL;
3586
3587 mux->of.class = &output_file_class;
3588 mux->of.index = nb_output_files - 1;
3589
3590 snprintf(mux->log_name, sizeof(mux->log_name), "out#%d", mux->of.index);
3591
3592 return mux;
3593}
3594
3595int of_open(const OptionsContext *o, const char *filename, Scheduler *sch)
3596{
3597 Muxer *mux;
3598 AVFormatContext *oc;
3599 int err;
3600 OutputFile *of;
3601
3602 int64_t recording_time = o->recording_time;
3603 int64_t stop_time = o->stop_time;
3604
3605 mux = mux_alloc();
3606 if (!mux)
3607 return AVERROR(ENOMEM);
3608
3609 of = &mux->of;
3610
3611 if (stop_time != INT64_MAX && recording_time != INT64_MAX) {
3612 stop_time = INT64_MAX;
3613 av_log(mux, AV_LOG_WARNING, "-t and -to cannot be used together; using -t.\n");
3614 }
3615
3616 if (stop_time != INT64_MAX && recording_time == INT64_MAX) {
3618 if (stop_time <= start_time) {
3619 av_log(mux, AV_LOG_ERROR, "-to value smaller than -ss; aborting.\n");
3620 return AVERROR(EINVAL);
3621 } else {
3622 recording_time = stop_time - start_time;
3623 }
3624 }
3625
3626 if (recording_time < 0) {
3627 av_log(mux, AV_LOG_ERROR, "-t value must be non-negative; aborting.\n");
3628 return AVERROR(EINVAL);
3629 }
3630
3631 of->recording_time = recording_time;
3632 of->start_time = o->start_time;
3633
3635 av_dict_copy(&mux->opts, o->g->format_opts, 0);
3636
3637 if (!strcmp(filename, "-"))
3638 filename = "pipe:";
3639
3640 err = avformat_alloc_output_context2(&oc, NULL, o->format, filename);
3641 if (!oc) {
3642 av_log(mux, AV_LOG_FATAL, "Error initializing the muxer for %s: %s\n",
3643 filename, av_err2str(err));
3644 return err;
3645 }
3646 mux->fc = oc;
3647
3648 av_strlcat(mux->log_name, "/", sizeof(mux->log_name));
3649 av_strlcat(mux->log_name, oc->oformat->name, sizeof(mux->log_name));
3650
3651
3652 if (recording_time != INT64_MAX)
3653 oc->duration = recording_time;
3654
3656
3657 if (o->bitexact) {
3659 of->bitexact = 1;
3660 } else {
3661 of->bitexact = check_opt_bitexact(oc, mux->opts, "fflags",
3663 }
3664
3665 err = sch_add_mux(sch, muxer_thread, mux_check_init, mux,
3666 !strcmp(oc->oformat->name, "rtp"), o->thread_queue_size);
3667 if (err < 0)
3668 return err;
3669 mux->sch = sch;
3670 mux->sch_idx = err;
3671
3672 /* create all output streams for this file */
3673 err = create_streams(mux, o);
3674 if (err < 0)
3675 return err;
3676
3677 /* check if all codec options have been used */
3678 err = check_avoptions_used(o->g->codec_opts, mux->enc_opts_used, mux, 0);
3680 if (err < 0)
3681 return err;
3682
3683 /* check filename in case of an image number is expected */
3685 av_log(mux, AV_LOG_FATAL,
3686 "Output filename '%s' does not contain a numeric pattern like "
3687 "'%%d', which is required by output format '%s'.\n",
3688 oc->url, oc->oformat->name);
3689 return AVERROR(EINVAL);
3690 }
3691
3692 if (!(oc->oformat->flags & AVFMT_NOFILE)) {
3693 /* test if it already exists to avoid losing precious files */
3694 err = assert_file_overwrite(filename);
3695 if (err < 0)
3696 return err;
3697
3698 /* open the file */
3699 if ((err = avio_open2(&oc->pb, filename, AVIO_FLAG_WRITE,
3700 &oc->interrupt_callback,
3701 &mux->opts)) < 0) {
3702 av_log(mux, AV_LOG_FATAL, "Error opening output %s: %s\n",
3703 filename, av_err2str(err));
3704 return err;
3705 }
3706 } else if (strcmp(oc->oformat->name, "image2")==0 && !av_filename_number_test(filename)) {
3707 err = assert_file_overwrite(filename);
3708 if (err < 0)
3709 return err;
3710 }
3711
3712 if (o->mux_preload) {
3713 av_dict_set_int(&mux->opts, "preload", o->mux_preload*AV_TIME_BASE, 0);
3714 }
3715 oc->max_delay = (int)(o->mux_max_delay * AV_TIME_BASE);
3716
3717 /* copy metadata and chapters from input files */
3718 err = copy_meta(mux, o);
3719 if (err < 0)
3720 return err;
3721
3722 err = of_add_groups(mux, o);
3723 if (err < 0)
3724 return err;
3725
3726 err = of_add_programs(mux, o);
3727 if (err < 0)
3728 return err;
3729
3730 err = of_add_metadata(of, oc, o);
3731 if (err < 0)
3732 return err;
3733
3734 err = set_dispositions(mux, o);
3735 if (err < 0) {
3736 av_log(mux, AV_LOG_FATAL, "Error setting output stream dispositions\n");
3737 return err;
3738 }
3739
3740 // parse forced keyframe specifications;
3741 // must be done after chapters are created
3742 err = process_forced_keyframes(mux, o);
3743 if (err < 0) {
3744 av_log(mux, AV_LOG_FATAL, "Error processing forced keyframes\n");
3745 return err;
3746 }
3747
3749 o->shortest);
3750 if (err < 0) {
3751 av_log(mux, AV_LOG_FATAL, "Error setting up output sync queues\n");
3752 return err;
3753 }
3754
3755 of->url = filename;
3756
3757 /* initialize streamcopy streams. */
3758 for (int i = 0; i < of->nb_streams; i++) {
3759 OutputStream *ost = of->streams[i];
3760
3761 if (!ost->enc) {
3762 err = of_stream_init(of, ost, NULL);
3763 if (err < 0)
3764 return err;
3765 }
3766 }
3767
3768 return 0;
3769}
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
static double val(void *priv, double ch)
Definition aeval.c:77
static const char *const format[]
Definition af_aiir.c:445
#define filters(fmt, type, inverse, clp, inverset, clip, one, clip_fn, packed)
static AVFormatContext * ctx
static void finish(void)
static AVDictionary * opts
channels
Definition aptx.h:31
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition avassert.h:58
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition avassert.h:42
Libavcodec external API header.
Main libavfilter public API header.
void av_program_add_stream_index(AVFormatContext *ac, int progid, unsigned idx)
Definition avformat.c:343
Main libavformat public API header.
#define AVFMT_NOSTREAMS
Format does not require any streams.
Definition avformat.h:505
#define AVFMT_FIXED_FRAMESIZE
Format wants fixed size audio frames..
Definition avformat.h:520
#define AVFMT_FLAG_BITEXACT
When muxing, try to avoid writing any random/volatile data to the output.
Definition avformat.h:1503
@ AV_STREAM_GROUP_PARAMS_DOLBY_VISION
Definition avformat.h:1155
@ AV_STREAM_GROUP_PARAMS_TREF
Definition avformat.h:1154
@ AV_STREAM_GROUP_PARAMS_NONE
Definition avformat.h:1149
@ AV_STREAM_GROUP_PARAMS_IAMF_MIX_PRESENTATION
Definition avformat.h:1151
@ AV_STREAM_GROUP_PARAMS_TILE_GRID
Definition avformat.h:1152
@ AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT
Definition avformat.h:1150
@ AV_STREAM_GROUP_PARAMS_LCEVC
Definition avformat.h:1153
#define AVFMT_VARIABLE_FPS
Format allows variable fps.
Definition avformat.h:503
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition avformat.h:490
#define AVSTREAM_EVENT_FLAG_NEW_PACKETS
Definition avformat.h:892
#define AVFMT_GLOBALHEADER
Format wants global header.
Definition avformat.h:499
#define AV_DISPOSITION_ATTACHED_PIC
The stream is stored in the file as an attached picture/"cover art" (e.g.
Definition avformat.h:694
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition avformat.h:500
#define AV_DISPOSITION_DEFAULT
The stream should be chosen by default among other streams of the same type, unless the user has expl...
Definition avformat.h:641
int avformat_alloc_output_context2(AVFormatContext **ctx, const AVOutputFormat *oformat, const char *format_name, const char *filename)
Allocate an AVFormatContext for an output format.
Definition mux.c:95
#define AVFMT_NEEDNUMBER
Needs 'd' in filename.
Definition avformat.h:491
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
Definition avio.c:724
int avio_open2(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options)
Create and initialize a AVIOContext for accessing the resource indicated by url.
Definition avio.c:566
Buffered I/O operations.
#define AVIO_FLAG_READ
read-only
Definition avio.h:617
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition aviobuf.c:326
#define AVIO_FLAG_WRITE
write-only
Definition avio.h:618
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition aviobuf.c:615
int avio_r8(AVIOContext *s)
Definition aviobuf.c:606
Convenience header that includes libavutil's core.
void av_bprintf(AVBPrint *buf, const char *fmt,...)
Definition bprint.c:121
AVBPrint public header.
#define is(width, name, range_min, range_max, subs,...)
Definition cbs_h264.c:78
#define flag(name)
Definition cbs_h264.c:60
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define f(width, name)
Definition cbs_vp8.c:236
#define s(width, name)
Definition cbs_vp9.c:198
int check_avoptions(AVDictionary *m)
Definition cmdutils.c:1603
int check_stream_specifier(AVFormatContext *s, AVStream *st, const char *spec)
Check if the given stream matches a stream specifier.
Definition cmdutils.c:1336
void * allocate_array_elem(void *ptr, size_t elem_size, int *nb_elems)
Atomically add a new element to an array of pointers, i.e.
Definition cmdutils.c:1538
int filter_codec_opts(const AVDictionary *opts, enum AVCodecID codec_id, AVFormatContext *s, AVStream *st, const AVCodec *codec, AVDictionary **dst, AVDictionary **opts_used)
Filter out options for given codec.
Definition cmdutils.c:1421
char * read_file_to_string(const char *filename)
Definition cmdutils.c:1569
unsigned stream_specifier_match(const StreamSpecifier *ss, const AVFormatContext *s, const AVStream *st, void *logctx)
Definition cmdutils.c:1224
#define GROW_ARRAY(array, nb_elems)
Definition cmdutils.h:536
int avcodec_parameters_from_context(AVCodecParameters *par, const AVCodecContext *codec)
Definition codec_par.c:138
AVCodecParameters * avcodec_parameters_alloc(void)
Definition codec_par.c:57
int avcodec_parameters_to_context(AVCodecContext *codec, const AVCodecParameters *par)
Definition codec_par.c:206
#define AVCONV_DATADIR
Definition config.h:8
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
Public dictionary API.
Display matrix.
enum AVCodecID id
Definition dts2pts.c:607
int av_expr_parse(AVExpr **expr, const char *s, const char *const *const_names, const char *const *func1_names, double(*const *funcs1)(void *, double), const char *const *func2_names, double(*const *funcs2)(void *, double, double), int log_offset, void *log_ctx)
Parse an expression.
Definition eval.c:735
int nb_filtergraphs
Definition ffmpeg.c:115
InputFile ** input_files
Definition ffmpeg.c:108
const AVIOInterruptCB int_cb
Definition ffmpeg.c:322
int nb_input_files
Definition ffmpeg.c:109
FilterGraph ** filtergraphs
Definition ffmpeg.c:114
int nb_output_files
Definition ffmpeg.c:112
int check_avoptions_used(const AVDictionary *opts, const AVDictionary *opts_used, void *logctx, int decode)
Definition ffmpeg.c:515
OutputFile ** output_files
Definition ffmpeg.c:111
InputStream * ist_iter(InputStream *prev)
Definition ffmpeg.c:397
int muxer_thread(void *arg)
Definition ffmpeg_mux.c:403
int of_stream_init(OutputFile *of, OutputStream *ost, const AVCodecContext *enc_ctx)
Definition ffmpeg_mux.c:607
int enc_alloc(Encoder **penc, const AVCodec *codec, Scheduler *sch, unsigned sch_idx, void *log_parent)
Definition ffmpeg_enc.c:125
@ VIEW_SPECIFIER_TYPE_NONE
Definition ffmpeg.h:105
int parse_and_set_vsync(const char *arg, enum VideoSyncMethod *vsync_var, int file_idx, int st_idx)
Definition ffmpeg_opt.c:359
int ignore_unknown_streams
Definition ffmpeg_opt.c:86
int ist_use(InputStream *ist, int decoding_needed, const ViewSpecifier *vs, SchedulerNode *src)
int copy_unknown_streams
Definition ffmpeg_opt.c:87
int find_codec(void *logctx, const char *name, enum AVMediaType type, int encoder, const AVCodec **codec)
Definition ffmpeg_opt.c:783
int encoder_thread(void *arg)
int enc_open(void *opaque, const AVFrame *frame)
Definition ffmpeg_enc.c:424
void opt_match_per_stream_int(void *logctx, const SpecifierOptList *sol, AVFormatContext *fc, AVStream *st, int *out)
int assert_file_overwrite(const char *filename)
Definition ffmpeg_opt.c:816
void opt_match_per_stream_dbl(void *logctx, const SpecifierOptList *sol, AVFormatContext *fc, AVStream *st, double *out)
@ FKF_PREV_FORCED_N
Definition ffmpeg.h:539
@ FKF_PREV_FORCED_T
Definition ffmpeg.h:540
@ FKF_N_FORCED
Definition ffmpeg.h:538
@ FKF_N
Definition ffmpeg.h:537
const char * opt_match_per_type_str(const SpecifierOptList *sol, char mediatype)
Definition ffmpeg_opt.c:165
@ OFILTER_FLAG_AUDIO_24BIT
Definition ffmpeg.h:289
@ OFILTER_FLAG_AUTOSCALE
Definition ffmpeg.h:290
@ OFILTER_FLAG_DISABLE_CONVERT
Definition ffmpeg.h:287
VideoSyncMethod
Definition ffmpeg.h:56
@ VSYNC_VFR
Definition ffmpeg.h:60
@ VSYNC_AUTO
Definition ffmpeg.h:57
@ VSYNC_PASSTHROUGH
Definition ffmpeg.h:58
@ VSYNC_CFR
Definition ffmpeg.h:59
@ VSYNC_VSCFR
Definition ffmpeg.h:61
void opt_match_per_stream_int64(void *logctx, const SpecifierOptList *sol, AVFormatContext *fc, AVStream *st, int64_t *out)
int fg_create_simple(FilterGraph **pfg, InputStream *ist, char **graph_desc, Scheduler *sch, unsigned sched_idx_enc, const OutputFilterOptions *opts)
@ KF_FORCE_SCD_METADATA
Definition ffmpeg.h:590
@ KF_FORCE_SOURCE
Definition ffmpeg.h:588
@ ENC_TIME_BASE_DEMUX
Definition ffmpeg.h:65
@ ENC_TIME_BASE_FILTER
Definition ffmpeg.h:66
int ofilter_bind_enc(OutputFilter *ofilter, unsigned sched_idx_enc, const OutputFilterOptions *opts)
int copy_ts
Definition ffmpeg_opt.c:64
EncStatsType
Definition ffmpeg.h:548
@ ENC_STATS_STREAM_IDX
Definition ffmpeg.h:551
@ ENC_STATS_PTS_TIME
Definition ffmpeg.h:557
@ ENC_STATS_SAMPLE_NUM
Definition ffmpeg.h:562
@ ENC_STATS_AVG_BITRATE
Definition ffmpeg.h:566
@ ENC_STATS_LITERAL
Definition ffmpeg.h:549
@ ENC_STATS_TIMEBASE
Definition ffmpeg.h:554
@ ENC_STATS_KEYFRAME
Definition ffmpeg.h:567
@ ENC_STATS_DTS_TIME
Definition ffmpeg.h:561
@ ENC_STATS_PKT_SIZE
Definition ffmpeg.h:564
@ ENC_STATS_FRAME_NUM_IN
Definition ffmpeg.h:553
@ ENC_STATS_PTS
Definition ffmpeg.h:556
@ ENC_STATS_FRAME_NUM
Definition ffmpeg.h:552
@ ENC_STATS_FILE_IDX
Definition ffmpeg.h:550
@ ENC_STATS_DTS
Definition ffmpeg.h:560
@ ENC_STATS_BITRATE
Definition ffmpeg.h:565
@ ENC_STATS_PTS_IN
Definition ffmpeg.h:558
@ ENC_STATS_TIMEBASE_IN
Definition ffmpeg.h:555
@ ENC_STATS_PTS_TIME_IN
Definition ffmpeg.h:559
@ ENC_STATS_NB_SAMPLES
Definition ffmpeg.h:563
void opt_match_per_stream_str(void *logctx, const SpecifierOptList *sol, AVFormatContext *fc, AVStream *st, const char **out)
int mux_check_init(void *arg)
Definition ffmpeg_mux.c:551
static MuxStream * ms_from_ost(OutputStream *ost)
Definition ffmpeg_mux.h:126
static int get_preset_file_2(const char *preset_name, const char *codec_name, AVIOContext **s)
#define SET_DICT(type, meta, context, index)
#define REENC_AUDIO_ONLY
#define SERIALIZE_LOOP_SUBBLOCK(obj)
static int parse_stereo3d_type(void *logctx, const char *arg, int *type)
static int of_parse_iamf_audio_element_layers(Muxer *mux, AVStreamGroup *stg, char *ptr)
#define SERIALIZE_LOOP(parent, child, suffix, separator)
static int of_parse_group_token(Muxer *mux, const char *token, char *ptr)
static int create_streams(Muxer *mux, const OptionsContext *o)
static int streamcopy_init(const OptionsContext *o, const Muxer *mux, OutputStream *ost, AVDictionary **encoder_opts)
#define IS_AV_ENC(ost, type)
static int meta_spec_matches(void *log_ctx, AVFormatContext *oc, AVStream *st, const char *spec)
static const char *const forced_keyframes_const_names[]
static int of_add_programs(Muxer *mux, const OptionsContext *o)
static const char * output_file_item_name(void *obj)
static int reenc_delete_metadata_key(const OptionsContext *o, void *log_ctx, AVFormatContext *oc, AVStream *st, const char *family, const char *key, int flags)
static int map_manual(Muxer *mux, const OptionsContext *o, const StreamMap *map)
#define SERIALIZE(parent, child)
static int of_add_attachments(Muxer *mux, const OptionsContext *o)
static int of_add_metadata(OutputFile *of, AVFormatContext *oc, const OptionsContext *o)
static const struct @155315260326237246327062132355032355213237357165 reenc_delete_keys[]
static int of_map_group(Muxer *mux, AVDictionary **dict, AVBPrint *bp, const char *map)
static int copy_chapters(InputFile *ifile, OutputFile *ofile, AVFormatContext *os, int copy_metadata)
static int map_auto_data(Muxer *mux, const OptionsContext *o)
static const AVClass output_stream_class
static int ost_get_filters(const OptionsContext *o, AVFormatContext *oc, OutputStream *ost, char **dst)
#define DEFAULT_PASS_LOGFILENAME_PREFIX
static enum AVPixelFormat pix_fmt_parse(OutputStream *ost, const char *name)
static int parse_forced_key_frames(void *log, KeyframeForceCtx *kf, const Muxer *mux, const char *spec)
static const char * output_stream_item_name(void *obj)
static int setup_sync_queues(Muxer *mux, AVFormatContext *oc, int64_t buf_size_us, int shortest)
#define REENC_ANY
static int copy_meta(Muxer *mux, const OptionsContext *o)
static int unescape(char **pdst, size_t *dst_len, const char **pstr, char delim)
static int reenc_delete_stale_metadata(const OptionsContext *o, void *log_ctx, AVFormatContext *oc, AVStream *st, AVDictionary **dict, const char *kind, unsigned reenc_mask)
static int ost_add(Muxer *mux, const OptionsContext *o, enum AVMediaType type, InputStream *ist, OutputFilter *ofilter, const ViewSpecifier *vs, OutputStream **post)
static int compare_int64(const void *a, const void *b)
static int enc_stats_init(OutputStream *ost, EncStats *es, int pre, const char *path, const char *fmt_spec)
static int map_auto_video(Muxer *mux, const OptionsContext *o)
static int64_t get_stream_group_index_from_id(Muxer *mux, int64_t id)
int of_open(const OptionsContext *o, const char *filename, Scheduler *sch)
static int enc_stats_get_file(AVIOContext **io, const char *path)
#define IS_INTERLEAVED(type)
static int new_stream_subtitle(Muxer *mux, const OptionsContext *o, OutputStream *ost)
static int process_forced_keyframes(Muxer *mux, const OptionsContext *o)
void of_enc_stats_close(void)
#define REENC_MASK(type)
static int set_encoder_id(OutputStream *ost, const AVCodec *codec)
static MuxStream * mux_stream_alloc(Muxer *mux, enum AVMediaType type)
static char * get_line(AVIOContext *s, AVBPrint *bprint)
static Muxer * mux_alloc(void)
static int parse_meta_type(void *logctx, const char *arg, char *type, int *index, const char **stream_spec)
Parse a metadata specifier passed as 'arg' parameter.
static int set_dispositions(Muxer *mux, const OptionsContext *o)
static int check_stereo3d_leftovers(Muxer *mux, const OptionsContext *o)
static int new_stream_audio(Muxer *mux, const OptionsContext *o, OutputStream *ost)
static int choose_encoder(const OptionsContext *o, AVFormatContext *s, MuxStream *ms, const AVCodec **enc)
static const AVClass output_file_class
static int nb_enc_stats_files
static int parse_matrix_coeffs(void *logctx, uint16_t *dest, const char *str)
static int of_parse_iamf_submixes(Muxer *mux, AVStreamGroup *stg, char *ptr)
static int check_opt_bitexact(void *ctx, const AVDictionary *opts, const char *opt_name, int flag)
static int map_auto_audio(Muxer *mux, const OptionsContext *o)
unsigned reenc_mask
static int copy_metadata(Muxer *mux, AVFormatContext *ic, const char *outspec, const char *inspec, int *metadata_global_manual, int *metadata_streams_manual, int *metadata_chapters_manual)
const char * key
static int map_auto_subtitle(Muxer *mux, const OptionsContext *o)
static EncStatsFile * enc_stats_files
static int pixfmt_in_list(const enum AVPixelFormat *formats, enum AVPixelFormat format)
static int of_add_groups(Muxer *mux, const OptionsContext *o)
static int of_serialize_options(Muxer *mux, void *obj, AVBPrint *bp)
static int new_stream_video(Muxer *mux, const OptionsContext *o, OutputStream *ost, int *keep_pix_fmt, enum VideoSyncMethod *vsync_method)
static int ost_bind_filter(const Muxer *mux, MuxStream *ms, OutputFilter *ofilter, const OptionsContext *o, AVRational enc_tb, enum VideoSyncMethod vsync_method, int keep_pix_fmt, int autoscale, int threads_manual, const ViewSpecifier *vs, SchedulerNode *src)
static enum AVPixelFormat choose_pixel_fmt(const AVCodecContext *avctx, enum AVPixelFormat target)
int sch_mux_sub_heartbeat_add(Scheduler *sch, unsigned mux_idx, unsigned stream_idx, unsigned dec_idx)
int sch_add_sq_enc(Scheduler *sch, uint64_t buf_size_us, void *logctx)
Add an pre-encoding sync queue to the scheduler.
int sch_sq_add_enc(Scheduler *sch, unsigned sq_idx, unsigned enc_idx, int limiting, uint64_t max_frames)
void sch_mux_stream_buffering(Scheduler *sch, unsigned mux_idx, unsigned stream_idx, size_t data_threshold, int max_packets)
Configure limits on packet buffering performed before the muxer task is started.
int sch_add_enc(Scheduler *sch, SchThreadFunc func, void *ctx, int(*open_cb)(void *opaque, const AVFrame *frame))
Add an encoder to the scheduler.
int sch_connect(Scheduler *sch, SchedulerNode src, SchedulerNode dst)
int sch_add_mux(Scheduler *sch, SchThreadFunc func, int(*init)(void *), void *arg, int sdp_auto, unsigned thread_queue_size)
Add a muxer to the scheduler.
int sch_add_mux_stream(Scheduler *sch, unsigned mux_idx)
Add a muxed stream for a previously added muxer.
#define SCH_MSTREAM(file, stream)
#define SCH_ENC(encoder)
@ SCH_NODE_TYPE_NONE
static int video_disable
Definition ffplay.c:318
static const char * subtitle_codec_name
Definition ffplay.c:343
static int audio_disable
Definition ffplay.c:317
static int64_t start_time
Definition ffplay.c:329
static unsigned int nb_streams
Definition ffprobe.c:352
static FILE * fopen_utf8(const char *path, const char *mode)
Definition fopen_utf8.h:66
static const uint8_t frame_size[4]
Definition g723_1.h:222
static char * getenv_utf8(const char *varname)
Definition getenv_utf8.h:67
static void freeenv_utf8(char *var)
Definition getenv_utf8.h:72
#define fail
Definition test.h:479
#define AV_OPT_FLAG_ENCODING_PARAM
A generic parameter which can be set by the user for muxing or encoding.
Definition opt.h:351
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
int av_bsf_list_parse_str(const char *str, AVBSFContext **bsf_lst)
Parse string describing list of bitstream filters and create single AVBSFContext describing the whole...
Definition bsf.c:524
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
Definition avcodec.h:322
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition avcodec.h:294
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE
Audio encoder supports receiving a different number of samples in each call.
Definition codec.h:116
AVCodecContext * avcodec_alloc_context3(const AVCodec *codec)
Allocate an AVCodecContext and set its fields to default values.
Definition options.c:149
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
Definition avcodec.h:213
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition avcodec.h:290
#define AV_CODEC_FLAG2_FIXED_FRAME_SIZE
Force audio encoders to use a fixed frame size.
Definition avcodec.h:359
const AVCodec * avcodec_find_encoder(enum AVCodecID id)
Find a registered encoder with a matching codec ID.
Definition allcodecs.c:988
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition avcodec.h:318
const char * avcodec_get_name(enum AVCodecID id)
Get the name of a codec.
Definition utils.c:421
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition codec_id.h:47
#define AV_CODEC_PROP_BITMAP_SUB
Subtitle codec is bitmap based Decoded AVSubtitle data can be read from the AVSubtitleRect->pict fiel...
Definition codec_desc.h:111
#define AV_CODEC_PROP_ENHANCEMENT
Video codec contains enhancement information meant to be applied to other existing frames,...
Definition codec_desc.h:105
int av_get_exact_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition utils.c:461
#define AV_CODEC_PROP_TEXT_SUB
Subtitle codec is text based.
Definition codec_desc.h:116
void avcodec_free_context(AVCodecContext **avctx)
Free the codec context and everything associated with it and write NULL to the provided pointer.
Definition options.c:164
@ AV_CODEC_ID_NONE
Definition codec_id.h:48
@ AV_CODEC_ID_AC3
Definition codec_id.h:457
@ AV_CODEC_ID_MP3
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition codec_id.h:455
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
Definition defs.h:40
int avcodec_get_supported_config(const AVCodecContext *avctx, const AVCodec *codec, enum AVCodecConfig config, unsigned flags, const void **out, int *out_num)
Retrieve a list of all supported values for a given configuration type.
Definition avcodec.c:818
@ AVDISCARD_ALL
discard all
Definition defs.h:241
@ AV_CODEC_CONFIG_PIX_FORMAT
AVPixelFormat, terminated by AV_PIX_FMT_NONE.
Definition avcodec.h:2588
@ AV_CODEC_CONFIG_SAMPLE_FORMAT
AVSampleFormat, terminated by AV_SAMPLE_FMT_NONE.
Definition avcodec.h:2591
@ AV_CODEC_CONFIG_ALPHA_MODE
AVAlphaMode, terminated by AVALPHA_MODE_UNSPECIFIED.
Definition avcodec.h:2595
@ AV_CODEC_CONFIG_FRAME_RATE
AVRational, terminated by {0, 0}.
Definition avcodec.h:2589
@ AV_CODEC_CONFIG_COLOR_SPACE
AVColorSpace, terminated by AVCOL_SPC_UNSPECIFIED.
Definition avcodec.h:2594
@ AV_CODEC_CONFIG_COLOR_RANGE
AVColorRange, terminated by AVCOL_RANGE_UNSPECIFIED.
Definition avcodec.h:2593
@ AV_CODEC_CONFIG_SAMPLE_RATE
int, terminated by 0
Definition avcodec.h:2590
@ AV_CODEC_CONFIG_CHANNEL_LAYOUT
AVChannelLayout, terminated by {0}.
Definition avcodec.h:2592
AVPacketSideData * av_packet_side_data_new(AVPacketSideData **psd, int *pnb_sd, enum AVPacketSideDataType type, size_t size, int flags)
Allocate a new packet side data.
Definition packet.c:620
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition packet.c:63
AVProgram * av_new_program(AVFormatContext *ac, int id)
Definition avformat.c:282
AVStreamGroup * avformat_stream_group_create(AVFormatContext *s, enum AVStreamGroupParamsType type, AVDictionary **options)
Add a new empty stream group to a media file.
Definition options.c:470
AVStream * avformat_new_stream(AVFormatContext *s, const struct AVCodec *c)
Add a new stream to a media file.
int avformat_stream_group_add_stream(AVStreamGroup *stg, AVStream *st)
Add an already allocated stream to a stream group.
Definition options.c:558
enum AVCodecID av_guess_codec(const AVOutputFormat *fmt, const char *short_name, const char *filename, const char *mime_type, enum AVMediaType type)
Guess the codec ID based upon muxer and filename.
Definition format.c:117
enum AVCodecID av_codec_get_id(const struct AVCodecTag *const *tags, unsigned int tag)
Get the AVCodecID for the given codec tag tag.
int avformat_query_codec(const AVOutputFormat *ofmt, enum AVCodecID codec_id, int std_compliance)
Test if the given container can store a codec.
Definition mux_utils.c:32
int av_codec_get_tag2(const struct AVCodecTag *const *tags, enum AVCodecID id, unsigned int *tag)
Get the codec tag for the given codec id.
int av_filename_number_test(const char *filename)
Check whether filename actually is a numbered sequence generator.
Definition utils.c:121
void av_dump_format(AVFormatContext *ic, int index, const char *url, int is_output)
Print detailed information about the input or output format, such as duration, bitrate,...
Definition dump.c:852
int av_channel_layout_from_string(AVChannelLayout *channel_layout, const char *str)
Initialize a channel layout from a given string description.
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
#define AV_BPRINT_SIZE_UNLIMITED
Buffer will be reallocated as necessary, with an amortized linear cost.
Definition bprint.h:111
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
Definition bprint.h:218
#define AV_BPRINT_SIZE_AUTOMATIC
Use the exact size available in the AVBPrint structure itself.
Definition bprint.h:118
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
Init a print buffer.
Definition bprint.c:68
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
Definition bprint.c:234
void av_bprint_chars(AVBPrint *buf, char c, unsigned n)
Append char c n times to a print buffer.
Definition bprint.c:129
void av_bprint_clear(AVBPrint *buf)
Reset the string to "" but keep internal allocated data.
Definition bprint.c:226
#define AV_DICT_MULTIKEY
Allow to store several equal keys in the dictionary.
Definition dict.h:84
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
Definition dict.c:233
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:60
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key,...
Definition dict.h:75
const AVDictionaryEntry * av_dict_iterate(const AVDictionary *m, const AVDictionaryEntry *prev)
Iterate over a dictionary.
Definition dict.c:42
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition dict.c:247
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition dict.h:79
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition dict.c:86
#define AV_DICT_DONT_OVERWRITE
Don't overwrite existing entries.
Definition dict.h:81
int av_dict_parse_string(AVDictionary **pm, const char *str, const char *key_val_sep, const char *pairs_sep, int flags)
Parse the key/value pairs list and add the parsed entries to a dictionary.
Definition dict.c:210
#define AV_DICT_MATCH_CASE
Only get an entry with exact-case key match.
Definition dict.h:74
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set() that converts the value to a string and stores it.
Definition dict.c:177
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
Definition avutil.h:226
#define AVERROR_ENCODER_NOT_FOUND
Encoder not found.
Definition error.h:56
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition error.h:122
#define AVERROR(e)
Definition error.h:45
AVIAMFLayer * av_iamf_audio_element_add_layer(AVIAMFAudioElement *audio_element)
Allocate a layer and add it to a given AVIAMFAudioElement.
AVIAMFSubmixLayout * av_iamf_submix_add_layout(AVIAMFSubmix *submix)
Allocate a submix layout and add it to a given AVIAMFSubmix.
AVIAMFSubmix * av_iamf_mix_presentation_add_submix(AVIAMFMixPresentation *mix_presentation)
Allocate a submix and add it to a given AVIAMFMixPresentation.
AVIAMFSubmixElement * av_iamf_submix_add_element(AVIAMFSubmix *submix)
Allocate a submix element and add it to a given AVIAMFSubmix.
static av_always_inline void * av_iamf_param_definition_get_subblock(const AVIAMFParamDefinition *par, unsigned int idx)
Get the subblock at the specified idx.
Definition iamf.h:260
AVIAMFParamDefinition * av_iamf_param_definition_alloc(enum AVIAMFParamDefinitionType type, unsigned int nb_subblocks, size_t *out_size)
Allocates memory for AVIAMFParamDefinition, plus an array of nb_subblocks amount of subblocks of the ...
Definition iamf.c:159
@ AV_IAMF_PARAMETER_DEFINITION_RECON_GAIN
Subblocks are of struct type AVIAMFReconGain.
Definition iamf.h:181
@ AV_IAMF_PARAMETER_DEFINITION_MIX_GAIN
Subblocks are of struct type AVIAMFMixGain.
Definition iamf.h:173
@ AV_IAMF_PARAMETER_DEFINITION_DEMIXING
Subblocks are of struct type AVIAMFDemixingInfo.
Definition iamf.h:177
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
Definition log.h:204
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
AVRational av_add_q(AVRational b, AVRational c)
Add two rationals.
Definition rational.c:93
AVRational av_mul_q(AVRational b, AVRational c)
Multiply two rationals.
Definition rational.c:80
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
Definition rational.h:159
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Allocate, reallocate, or free an array.
Definition mem.c:217
void * av_calloc(size_t nmemb, size_t size)
Allocate a memory block for an array with av_mallocz().
Definition mem.c:264
const char * av_get_media_type_string(enum AVMediaType media_type)
Return a string describing the media_type enum, NULL if media_type is unknown.
Definition utils.c:28
AVMediaType
Definition avutil.h:198
@ AVMEDIA_TYPE_ATTACHMENT
Opaque data information usually sparse.
Definition avutil.h:204
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AVMEDIA_TYPE_NB
Definition avutil.h:205
@ AVMEDIA_TYPE_SUBTITLE
Definition avutil.h:203
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
@ AVMEDIA_TYPE_DATA
Opaque data information usually continuous.
Definition avutil.h:202
@ AVMEDIA_TYPE_UNKNOWN
Usually treated as AVMEDIA_TYPE_DATA.
Definition avutil.h:199
enum AVSampleFormat av_get_sample_fmt(const char *name)
Return a sample format corresponding to name, or AV_SAMPLE_FMT_NONE on error.
Definition samplefmt.c:59
@ AV_SAMPLE_FMT_NONE
Definition samplefmt.h:56
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
Definition avstring.c:95
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
Definition avstring.c:179
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition avstring.c:208
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
Definition avstring.c:36
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition avstring.c:85
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition avutil.h:247
#define AV_TIME_BASE
Internal time base represented as integer.
Definition avutil.h:253
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
Definition avutil.h:263
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
AVStereo3DType
List of possible 3D Types.
Definition stereo3d.h:48
const char * av_stereo3d_type_name(unsigned int type)
Provide a human-readable name of a given stereo3d type.
Definition stereo3d.c:93
@ AV_STEREO3D_2D
Video is not stereoscopic (and metadata has to be there).
Definition stereo3d.h:52
@ AV_STEREO3D_TOPBOTTOM
Views are on top of each other.
Definition stereo3d.h:76
@ AV_STEREO3D_SIDEBYSIDE
Views are next to each other.
Definition stereo3d.h:64
int av_opt_eval_int(void *obj, const AVOption *o, const char *val, int *int_out)
int av_opt_eval_flags(void *obj, const AVOption *o, const char *val, int *flags_out)
int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
Definition opt.c:1349
#define AV_OPT_SEARCH_CHILDREN
Search in possible children of the given object first.
Definition opt.h:604
const AVOption * av_opt_find(void *obj, const char *name, const char *unit, int opt_flags, int search_flags)
Look for an option in an object.
Definition opt.c:2071
int av_opt_serialize(void *obj, int opt_flags, int flags, char **buffer, const char key_val_sep, const char pairs_sep)
Serialize object's options.
Definition opt.c:2842
#define AV_OPT_SERIALIZE_SKIP_DEFAULTS
Serialize options that are not set to default values only.
Definition opt.h:1092
int av_opt_is_set_to_default_by_name(void *obj, const char *name, int search_flags)
Check if given option is set to its default value.
Definition opt.c:2787
#define AV_OPT_SERIALIZE_SEARCH_CHILDREN
Serialize options in possible children of the given object.
Definition opt.h:1094
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition opt.c:891
int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
Definition opt.c:2042
int av_opt_set_dict(void *obj, AVDictionary **options)
Set all the options from a given dictionary on an object.
Definition opt.c:2066
int index
Definition gxfenc.c:90
int a
cl_device_type type
const VDPAUPixFmtMap * map
#define b
Definition input.c:43
#define AV_RL32(p)
static int mix(int c0, int c1)
Definition 4xm.c:717
const char * arg
Definition jacosubdec.c:65
#define LIBAVCODEC_IDENT
Definition version.h:43
Immersive Audio Model and Formats API header.
Stereoscopic video.
const char * desc
Definition libsvtav1.c:83
@ AV_CLASS_CATEGORY_MUXER
Definition log.h:32
#define FFMIN(a, b)
Definition macros.h:49
#define MKTAG(a, b, c, d)
Definition macros.h:55
#define FFMAX(a, b)
Definition macros.h:47
#define FFDIFFSIGN(x, y)
Comparator.
Definition macros.h:45
#define NAN
static const alias aliases[20]
Definition mccdec.c:90
uint64_t layout
Memory handling functions.
uint32_t tag
Definition movenc.c:2087
static const char * obj
Definition mscl.c:57
#define av_strdup(s)
Definition ops_static.c:55
#define av_malloc(s)
Definition ops_static.c:52
AVOptions.
static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
Definition os2threads.h:104
int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str)
Parse str and put in width_ptr and height_ptr the detected values.
Definition parseutils.c:150
int av_parse_video_rate(AVRational *rate, const char *arg)
Parse str and store the detected values in *rate.
Definition parseutils.c:181
int av_parse_ratio(AVRational *q, const char *str, int max, int log_offset, void *log_ctx)
Parse str and store the parsed ratio in q.
Definition parseutils.c:45
int av_parse_time(int64_t *timeval, const char *timestr, int duration)
Parse timestr and return in *time a corresponding number of microseconds.
Definition parseutils.c:592
misc parsing utilities
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:3380
enum AVPixelFormat av_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)
Compute what kind of losses will occur when converting from one specific pixel format to another.
Definition pixdesc.c:3739
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
Definition pixdesc.c:3392
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition pixdesc.c:3460
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
const char * name
Definition qsvenc.c:142
formats
Definition signature.h:47
static const ElemCat * elements[ELEMENT_COUNT]
Definition signature.h:565
#define FF_ARRAY_ELEMS(a)
Buffer to print data progressively.
Definition bprint.h:99
char * str
string so far
Definition bprint.h:99
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
int64_t id
unique ID to identify the chapter
Definition avformat.h:1295
int64_t start
Definition avformat.h:1297
AVDictionary * metadata
Definition avformat.h:1298
int64_t end
chapter start/end time in time_base units
Definition avformat.h:1297
AVRational time_base
time base in which the start/end timestamps are specified
Definition avformat.h:1296
Describe the class of an AVClass context structure.
Definition log.h:76
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition log.h:81
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
uint16_t * chroma_intra_matrix
custom intra quantization matrix
Definition avcodec.h:976
int width
picture width / height.
Definition avcodec.h:604
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
enum AVSampleFormat sample_fmt
audio sample format
Definition avcodec.h:1047
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition avcodec.h:681
char * stats_in
pass2 encoding statistics input buffer Concatenated stuff from stats_out of pass1 should be placed he...
Definition avcodec.h:1338
int rc_override_count
ratecontrol override, see RcOverride
Definition avcodec.h:1280
uint16_t * inter_matrix
custom inter quantization matrix Must be allocated with the av_malloc() family of functions,...
Definition avcodec.h:969
const struct AVCodec * codec
Definition avcodec.h:452
enum AVColorSpace colorspace
YUV colorspace type.
Definition avcodec.h:671
int sample_rate
samples per second
Definition avcodec.h:1040
uint16_t * intra_matrix
custom intra quantization matrix Must be allocated with the av_malloc() family of functions,...
Definition avcodec.h:960
int flags
AV_CODEC_FLAG_*.
Definition avcodec.h:500
enum AVAlphaMode alpha_mode
Indicates how the alpha channel of the video is represented.
Definition avcodec.h:1942
RcOverride * rc_override
Definition avcodec.h:1281
enum AVCodecID codec_id
Definition avcodec.h:453
This struct describes the properties of a single codec described by an AVCodecID.
Definition codec_desc.h:38
int props
Codec properties, a combination of AV_CODEC_PROP_* flags.
Definition codec_desc.h:54
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
int extradata_size
Size of the extradata content in bytes.
Definition codec_par.h:75
int height
The height of the video frame in pixels.
Definition codec_par.h:150
int nb_coded_side_data
Amount of entries in coded_side_data.
Definition codec_par.h:88
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int width
The width of the video frame in pixels.
Definition codec_par.h:143
enum AVMediaType codec_type
General type of the encoded data.
Definition codec_par.h:53
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
AVRational sample_aspect_ratio
The aspect ratio (width/height) which a single pixel should have when displayed.
Definition codec_par.h:161
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition codec_par.h:61
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
Definition codec_par.h:71
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
AVPacketSideData * coded_side_data
Additional data associated with the entire stream.
Definition codec_par.h:83
AVCodec.
Definition codec.h:175
enum AVCodecID id
Definition codec.h:189
const char * name
Name of the codec implementation.
Definition codec.h:182
char * key
Definition dict.h:91
char * value
Definition dict.h:92
Format I/O context.
Definition avformat.h:1335
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition avformat.h:1391
AVStreamGroup ** stream_groups
A list of all stream groups in the file.
Definition avformat.h:1422
AVIOContext * pb
I/O context.
Definition avformat.h:1377
AVDictionary * metadata
Metadata that applies to the whole file.
Definition avformat.h:1582
int flags
Flags modifying the (de)muxer behaviour.
Definition avformat.h:1486
const struct AVOutputFormat * oformat
The output container format.
Definition avformat.h:1354
AVProgram ** programs
Definition avformat.h:1548
unsigned int nb_programs
Definition avformat.h:1547
AVIOInterruptCB interrupt_callback
Custom interrupt callbacks for the I/O layer.
Definition avformat.h:1620
char * url
input or output URL.
Definition avformat.h:1451
unsigned int nb_chapters
Number of chapters in AVChapter array.
Definition avformat.h:1435
AVChapter ** chapters
Definition avformat.h:1436
unsigned int nb_stream_groups
Number of elements in AVFormatContext.stream_groups.
Definition avformat.h:1410
AVStream ** streams
A list of all streams in the file.
Definition avformat.h:1403
int64_t duration
Duration of the stream, in AV_TIME_BASE fractional seconds.
Definition avformat.h:1470
Information on how to combine one or more audio streams, as defined in section 3.6 of IAMF.
Definition iamf.h:359
AVIAMFParamDefinition * recon_gain_info
Recon gain information used to reconstruct a scalable channel audio representation.
Definition iamf.h:386
AVIAMFParamDefinition * demixing_info
Demixing information used to reconstruct a scalable channel audio representation.
Definition iamf.h:379
unsigned int nb_layers
Number of layers, or channel groups, in the Audio Element.
Definition iamf.h:371
A layer defining a Channel Layout in the Audio Element.
Definition iamf.h:294
Information on how to render and mix one or more AVIAMFAudioElement to generate the final audio outpu...
Definition iamf.h:616
Parameters as defined in section 3.6.1 of IAMF.
Definition iamf.h:193
unsigned int nb_subblocks
Number of subblocks in the array.
Definition iamf.h:208
Submix element as defined in section 3.7 of IAMF.
Definition iamf.h:449
AVIAMFParamDefinition * element_mix_config
Information required required for applying any processing to the referenced and rendered Audio Elemen...
Definition iamf.h:464
unsigned int audio_element_id
The id of the Audio Element this submix element references.
Definition iamf.h:455
Submix layout as defined in section 3.7.6 of IAMF.
Definition iamf.h:517
Submix layout as defined in section 3.7 of IAMF.
Definition iamf.h:559
unsigned int nb_elements
Number of elements in the submix.
Definition iamf.h:575
AVIAMFSubmixElement ** elements
Array of submix elements.
Definition iamf.h:568
AVIAMFParamDefinition * output_mix_config
Information required for post-processing the mixed audio signal to generate the audio signal for play...
Definition iamf.h:598
Bytestream IO Context.
Definition avio.h:160
AVOption.
Definition opt.h:428
enum AVCodecID video_codec
default video codec
Definition avformat.h:540
int flags
can use flags: AVFMT_NOFILE, AVFMT_NEEDNUMBER, AVFMT_EXPERIMENTAL, AVFMT_GLOBALHEADER,...
Definition avformat.h:548
const char * name
Definition avformat.h:529
const struct AVCodecTag *const * codec_tag
List of supported codec_id-codec_tag pairs, ordered by "betterchoice first".
Definition avformat.h:554
enum AVCodecID subtitle_codec
default subtitle codec
Definition avformat.h:541
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition packet.h:424
uint8_t * data
Definition packet.h:425
enum AVPacketSideDataType type
Definition packet.h:427
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
Definition pixdesc.h:69
New fields can be added to the end with minor version bumps.
Definition avformat.h:1259
AVDictionary * metadata
Definition avformat.h:1265
Rational number (pair of numerator and denominator).
Definition rational.h:58
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
AVStreamGroupTileGrid holds information on how to combine several independent images on a single canv...
Definition avformat.h:975
int width
Width of the final image for presentation.
Definition avformat.h:1060
int height
Height of the final image for presentation.
Definition avformat.h:1070
union AVStreamGroup::@166361102046003066253145020066347265153020354020 params
Group type-specific parameters.
enum AVStreamGroupParamsType type
Group type.
Definition avformat.h:1188
struct AVIAMFMixPresentation * iamf_mix_presentation
Definition avformat.h:1195
struct AVStreamGroupTileGrid * tile_grid
Definition avformat.h:1196
unsigned int nb_streams
Number of elements in AVStreamGroup.streams.
Definition avformat.h:1223
unsigned int index
Group index in AVFormatContext.
Definition avformat.h:1172
struct AVIAMFAudioElement * iamf_audio_element
Definition avformat.h:1194
int disposition
Stream group disposition - a combination of AV_DISPOSITION_* flags.
Definition avformat.h:1246
int64_t id
Group type-specific group ID.
Definition avformat.h:1180
AVStream ** streams
A list of streams in the group.
Definition avformat.h:1236
Stream structure.
Definition avformat.h:768
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:791
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown)
Definition avformat.h:846
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition avformat.h:827
AVDictionary * metadata
Definition avformat.h:848
int id
Format-specific stream ID.
Definition avformat.h:780
AVRational avg_frame_rate
Average framerate.
Definition avformat.h:857
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition avformat.h:807
int event_flags
Flags indicating events happening on the stream, a combination of AVSTREAM_EVENT_FLAG_*.
Definition avformat.h:879
AVRational r_frame_rate
Real base framerate of the stream.
Definition avformat.h:902
int disposition
Stream disposition - a combination of AV_DISPOSITION_* flags.
Definition avformat.h:837
AVIOContext * io
int nb_components
Definition ffmpeg.h:579
AVIOContext * io
Definition ffmpeg.h:581
EncStatsComponent * components
Definition ffmpeg.h:578
pthread_mutex_t lock
Definition ffmpeg.h:583
int lock_initialized
Definition ffmpeg.h:584
int index
Definition ffmpeg.h:402
int nb_outputs
Definition ffmpeg.h:407
OutputFilter ** outputs
Definition ffmpeg.h:406
int64_t ts_offset
Definition ffmpeg.h:521
AVFormatContext * ctx
Definition ffmpeg.h:514
int64_t input_ts_offset
Definition ffmpeg.h:515
int index
Definition ffmpeg.h:512
int nb_stream_groups
Definition ffmpeg.h:533
InputStream ** streams
Definition ffmpeg.h:528
InputStreamGroup ** stream_groups
Definition ffmpeg.h:532
int64_t start_time
Definition ffmpeg.h:523
int nb_streams
Definition ffmpeg.h:529
FilterGraph * fg
Definition ffmpeg.h:505
AVStreamGroup * stg
Definition ffmpeg.h:506
int index
Definition ffmpeg.h:472
struct InputFile * file
Definition ffmpeg.h:470
int user_set_discard
Definition ffmpeg.h:475
AVCodecParameters * par
Codec parameters - to be used by the decoding/streamcopy code.
Definition ffmpeg.h:482
AVStream * st
Definition ffmpeg.h:474
AVRational framerate
Definition ffmpeg.h:487
int64_t * pts
Definition ffmpeg.h:599
OutputStream ost
Definition ffmpeg_mux.h:37
const char * apad
Definition ffmpeg_mux.h:89
char log_name[32]
Definition ffmpeg_mux.h:46
int copy_prior_start
Definition ffmpeg_mux.h:82
AVPacket * pkt
Definition ffmpeg_mux.h:51
int stereo3d_type
Definition ffmpeg_mux.h:92
int sq_idx_mux
Definition ffmpeg_mux.h:59
int stereo3d_set
Definition ffmpeg_mux.h:91
AVBSFContext * bsf_ctx
Definition ffmpeg_mux.h:48
int64_t max_frames
Definition ffmpeg_mux.h:61
AVCodecParameters * par_in
Codec parameters for packets submitted to the muxer (i.e.
Definition ffmpeg_mux.h:43
int sch_idx_enc
Definition ffmpeg_mux.h:56
int copy_initial_nonkeyframes
Definition ffmpeg_mux.h:81
int sch_idx_src
Definition ffmpeg_mux.h:57
int64_t ts_copy_start
Definition ffmpeg_mux.h:66
int64_t stream_duration
Definition ffmpeg_mux.h:72
AVRational stream_duration_tb
Definition ffmpeg_mux.h:73
int force_fps
Definition ffmpeg_mux.h:87
int64_t last_mux_dts
Definition ffmpeg_mux.h:70
EncStats stats
Definition ffmpeg_mux.h:53
int sch_idx
Definition ffmpeg_mux.h:55
AVRational max_frame_rate
Definition ffmpeg_mux.h:86
AVRational frame_rate
Definition ffmpeg_mux.h:85
AVDictionary * opts
Definition ffmpeg_mux.h:110
AVDictionary * enc_opts_used
Definition ffmpeg_mux.h:113
OutputFile of
Definition ffmpeg_mux.h:96
AVPacket * sq_pkt
Definition ffmpeg_mux.h:121
int nb_sch_stream_idx
Definition ffmpeg_mux.h:108
Scheduler * sch
Definition ffmpeg_mux.h:103
char log_name[32]
Definition ffmpeg_mux.h:99
SyncQueue * sq_mux
Definition ffmpeg_mux.h:120
AVFormatContext * fc
Definition ffmpeg_mux.h:101
unsigned sch_idx
Definition ffmpeg_mux.h:104
int * sch_stream_idx
Definition ffmpeg_mux.h:107
int64_t limit_filesize
Definition ffmpeg_mux.h:116
AVDictionary * codec_opts
Definition cmdutils.h:347
AVDictionary * swr_opts
Definition cmdutils.h:350
AVDictionary * sws_dict
Definition cmdutils.h:349
AVDictionary * format_opts
Definition cmdutils.h:348
float mux_preload
Definition ffmpeg.h:181
SpecifierOptList rc_overrides
Definition ffmpeg.h:212
SpecifierOptList enc_stats_pre
Definition ffmpeg.h:241
SpecifierOptList metadata_map
Definition ffmpeg.h:216
int nb_stream_maps
Definition ffmpeg.h:172
SpecifierOptList frame_pix_fmts
Definition ffmpeg.h:148
SpecifierOptList intra_matrices
Definition ffmpeg.h:213
SpecifierOptList enc_stats_post_fmt
Definition ffmpeg.h:245
SpecifierOptList codec_tags
Definition ffmpeg.h:199
SpecifierOptList stream_groups
Definition ffmpeg.h:235
SpecifierOptList qscale
Definition ffmpeg.h:201
int64_t start_time
Definition ffmpeg.h:136
SpecifierOptList enc_stats_post
Definition ffmpeg.h:242
SpecifierOptList codec_names
Definition ffmpeg.h:141
const char * format
Definition ffmpeg.h:139
int nb_attachments
Definition ffmpeg.h:174
SpecifierOptList mux_stats
Definition ffmpeg.h:243
SpecifierOptList disposition
Definition ffmpeg.h:233
SpecifierOptList audio_channels
Definition ffmpeg.h:143
StreamMap * stream_maps
Definition ffmpeg.h:171
SpecifierOptList inter_matrices
Definition ffmpeg.h:214
SpecifierOptList stereo3ds
Definition ffmpeg.h:206
SpecifierOptList mux_stats_fmt
Definition ffmpeg.h:246
SpecifierOptList pass
Definition ffmpeg.h:226
SpecifierOptList muxing_queue_data_threshold
Definition ffmpeg.h:229
SpecifierOptList presets
Definition ffmpeg.h:217
SpecifierOptList copy_prior_start
Definition ffmpeg.h:219
int64_t recording_time
Definition ffmpeg.h:178
SpecifierOptList time_bases
Definition ffmpeg.h:236
SpecifierOptList frame_rates
Definition ffmpeg.h:145
SpecifierOptList forced_key_frames
Definition ffmpeg.h:202
float shortest_buf_duration
Definition ffmpeg.h:183
SpecifierOptList keep_metadata
Definition ffmpeg.h:196
SpecifierOptList enc_stats_pre_fmt
Definition ffmpeg.h:244
SpecifierOptList force_fps
Definition ffmpeg.h:204
int thread_queue_size
Definition ffmpeg.h:158
int data_disable
Definition ffmpeg.h:190
int chapters_input_file
Definition ffmpeg.h:176
SpecifierOptList max_frame_rates
Definition ffmpeg.h:146
int video_disable
Definition ffmpeg.h:187
int audio_disable
Definition ffmpeg.h:188
SpecifierOptList program
Definition ffmpeg.h:234
SpecifierOptList fps_mode
Definition ffmpeg.h:203
SpecifierOptList copy_initial_nonkeyframes
Definition ffmpeg.h:218
SpecifierOptList filters
Definition ffmpeg.h:220
SpecifierOptList enc_reinit_opts
Definition ffmpeg.h:240
AVDictionary * streamid
Definition ffmpeg.h:193
SpecifierOptList max_muxing_queue_size
Definition ffmpeg.h:228
SpecifierOptList bits_per_raw_sample
Definition ffmpeg.h:239
int64_t stop_time
Definition ffmpeg.h:179
const char ** attachments
Definition ffmpeg.h:173
SpecifierOptList passlogfiles
Definition ffmpeg.h:227
SpecifierOptList enc_time_bases
Definition ffmpeg.h:237
int64_t limit_filesize
Definition ffmpeg.h:180
SpecifierOptList audio_sample_rate
Definition ffmpeg.h:144
SpecifierOptList sample_fmts
Definition ffmpeg.h:200
SpecifierOptList frame_aspect_ratios
Definition ffmpeg.h:205
float mux_max_delay
Definition ffmpeg.h:182
SpecifierOptList autoscale
Definition ffmpeg.h:238
SpecifierOptList max_frames
Definition ffmpeg.h:197
SpecifierOptList metadata
Definition ffmpeg.h:195
SpecifierOptList bitstream_filters
Definition ffmpeg.h:198
SpecifierOptList chroma_intra_matrices
Definition ffmpeg.h:215
SpecifierOptList fix_sub_duration_heartbeat
Definition ffmpeg.h:224
SpecifierOptList apad
Definition ffmpeg.h:231
int subtitle_disable
Definition ffmpeg.h:189
SpecifierOptList frame_sizes
Definition ffmpeg.h:147
SpecifierOptList audio_ch_layouts
Definition ffmpeg.h:142
OptionGroup * g
Definition ffmpeg.h:133
int index
Definition ffmpeg.h:691
const char * url
Definition ffmpeg.h:693
int bitexact
Definition ffmpeg.h:701
OutputStream ** streams
Definition ffmpeg.h:695
int nb_streams
Definition ffmpeg.h:696
int64_t start_time
start time in microseconds == AV_TIME_BASE units
Definition ffmpeg.h:699
int64_t recording_time
desired length of the resulting file in microseconds == AV_TIME_BASE units
Definition ffmpeg.h:698
const AVClass * class
Definition ffmpeg.h:689
uint8_t * name
Definition ffmpeg.h:380
uint8_t * linklabel
Definition ffmpeg.h:390
struct FilterGraph * graph
Definition ffmpeg.h:379
char * apad
Definition ffmpeg.h:392
enum AVMediaType type
Definition ffmpeg.h:394
enum AVMediaType type
Definition ffmpeg.h:639
struct OutputFile * file
Definition ffmpeg.h:642
OutputFilter * filter
Definition ffmpeg.h:667
const AVClass * class
Definition ffmpeg.h:637
AVStream * st
Definition mux.c:54
int qscale
Definition avcodec.h:196
int start_frame
Definition avcodec.h:194
int end_frame
Definition avcodec.h:195
float quality_factor
Definition avcodec.h:197
SpecifierOpt * opt
Definition cmdutils.h:184
StreamSpecifier stream_spec
Definition cmdutils.h:171
union SpecifierOpt::@356325016025214271156003270003007057215065005026 u
uint8_t * str
Definition cmdutils.h:174
char * specifier
Definition cmdutils.h:169
void sq_limit_frames(SyncQueue *sq, unsigned int stream_idx, uint64_t frames)
Limit the number of output frames for stream with index stream_idx to max_frames.
Definition sync_queue.c:628
int sq_add_stream(SyncQueue *sq, int limiting)
Add a new stream to the sync queue.
Definition sync_queue.c:598
SyncQueue * sq_alloc(enum SyncQueueType type, int64_t buf_size_us, void *logctx)
Allocate a sync queue of the given type.
Definition sync_queue.c:654
@ SYNC_QUEUE_PACKETS
Definition sync_queue.h:29
#define av_free(p)
#define av_malloc_array(a, b)
#define av_mallocz(s)
#define av_realloc_f(p, o, n)
#define av_freep(p)
#define av_log(a,...)
static uint8_t tmp[40]
Definition aes_ctr.c:52
#define src
Definition vp8dsp.c:248
static int64_t pts
int size
enum AVCodecID codec_id
static AVStream * ost
preset
Definition vf_curves.c:47
int len
uint8_t base
Definition vp3data.h:128
static double c[64]