Skip to content
Snippets Groups Projects
ffmpeg.c 234 KiB
Newer Older
  • Learn to ignore specific revisions
  •         video_enc->bits_per_raw_sample = frame_bits_per_raw_sample;
    
            MATCH_PER_STREAM_OPT(frame_pix_fmts, str, frame_pix_fmt, oc, st);
    
            if (frame_pix_fmt && *frame_pix_fmt == '+') {
                ost->keep_pix_fmt = 1;
                if (!*++frame_pix_fmt)
                    frame_pix_fmt = NULL;
            }
    
            if (frame_pix_fmt && (video_enc->pix_fmt = av_get_pix_fmt(frame_pix_fmt)) == PIX_FMT_NONE) {
    
                av_log(NULL, AV_LOG_FATAL, "Unknown pixel format requested: %s.\n", frame_pix_fmt);
    
            st->sample_aspect_ratio = video_enc->sample_aspect_ratio;
    
            MATCH_PER_STREAM_OPT(intra_matrices, str, intra_matrix, oc, st);
            if (intra_matrix) {
                if (!(video_enc->intra_matrix = av_mallocz(sizeof(*video_enc->intra_matrix) * 64))) {
    
                    av_log(NULL, AV_LOG_FATAL, "Could not allocate memory for intra matrix.\n");
    
                    exit_program(1);
                }
                parse_matrix_coeffs(video_enc->intra_matrix, intra_matrix);
            }
            MATCH_PER_STREAM_OPT(inter_matrices, str, inter_matrix, oc, st);
            if (inter_matrix) {
                if (!(video_enc->inter_matrix = av_mallocz(sizeof(*video_enc->inter_matrix) * 64))) {
    
                    av_log(NULL, AV_LOG_FATAL, "Could not allocate memory for inter matrix.\n");
    
                    exit_program(1);
                }
                parse_matrix_coeffs(video_enc->inter_matrix, inter_matrix);
    
            MATCH_PER_STREAM_OPT(rc_overrides, str, p, oc, st);
    
            for (i = 0; p; i++) {
    
                int e = sscanf(p, "%d,%d,%d", &start, &end, &q);
                if (e != 3) {
    
                    av_log(NULL, AV_LOG_FATAL, "error parsing rc_override\n");
    
                    exit_program(1);
    
                /* FIXME realloc failure */
    
                video_enc->rc_override =
    
                    av_realloc(video_enc->rc_override,
    
                               sizeof(RcOverride) * (i + 1));
                video_enc->rc_override[i].start_frame = start;
                video_enc->rc_override[i].end_frame   = end;
                if (q > 0) {
                    video_enc->rc_override[i].qscale         = q;
                    video_enc->rc_override[i].quality_factor = 1.0;
    
                else {
                    video_enc->rc_override[i].qscale         = 0;
                    video_enc->rc_override[i].quality_factor = -q/100.0;
    
                p = strchr(p, '/');
                if (p) p++;
    
            video_enc->rc_override_count = i;
    
            if (!video_enc->rc_initial_buffer_occupancy)
    
                video_enc->rc_initial_buffer_occupancy = video_enc->rc_buffer_size * 3 / 4;
            video_enc->intra_dc_precision = intra_dc_precision - 8;
    
            if (do_psnr)
                video_enc->flags|= CODEC_FLAG_PSNR;
    
    
                if (do_pass & 1) {
    
                }
                if (do_pass & 2) {
    
            MATCH_PER_STREAM_OPT(forced_key_frames, str, ost->forced_keyframes, oc, st);
            if (ost->forced_keyframes)
                ost->forced_keyframes = av_strdup(ost->forced_keyframes);
    
            MATCH_PER_STREAM_OPT(force_fps, i, ost->force_fps, oc, st);
    
            ost->top_field_first = -1;
            MATCH_PER_STREAM_OPT(top_field_first, i, ost->top_field_first, oc, st);
    
    
            MATCH_PER_STREAM_OPT(filters, str, filters, oc, st);
    
            ost->avfilter = av_strdup(filters);
    
        } else {
            MATCH_PER_STREAM_OPT(copy_initial_nonkeyframes, i, ost->copy_initial_nonkeyframes, oc ,st);
    
        return ost;
    
    static OutputStream *new_audio_stream(OptionsContext *o, AVFormatContext *oc, int source_index)
    
        OutputStream *ost;
    
        ost = new_output_stream(o, oc, AVMEDIA_TYPE_AUDIO, source_index);
    
        audio_enc->codec_type = AVMEDIA_TYPE_AUDIO;
    
        if (!ost->stream_copy) {
    
            char *sample_fmt = NULL;
            const char *filters = "anull";
    
            MATCH_PER_STREAM_OPT(audio_channels, i, audio_enc->channels, oc, st);
    
    
            MATCH_PER_STREAM_OPT(sample_fmts, str, sample_fmt, oc, st);
            if (sample_fmt &&
                (audio_enc->sample_fmt = av_get_sample_fmt(sample_fmt)) == AV_SAMPLE_FMT_NONE) {
    
                av_log(NULL, AV_LOG_FATAL, "Invalid sample format '%s'\n", sample_fmt);
    
    
            MATCH_PER_STREAM_OPT(audio_sample_rate, i, audio_enc->sample_rate, oc, st);
    
            MATCH_PER_STREAM_OPT(filters, str, filters, oc, st);
    
            ost->avfilter = av_strdup(filters);
    
    
            /* check for channel mapping for this audio stream */
            for (n = 0; n < o->nb_audio_channel_maps; n++) {
                AudioChannelMap *map = &o->audio_channel_maps[n];
                InputStream *ist = input_streams[ost->source_index];
                if ((map->channel_idx == -1 || (ist->file_index == map->file_idx && ist->st->index == map->stream_idx)) &&
                    (map->ofile_idx   == -1 || ost->file_index == map->ofile_idx) &&
                    (map->ostream_idx == -1 || ost->st->index  == map->ostream_idx)) {
                    if (ost->audio_channels_mapped < FF_ARRAY_ELEMS(ost->audio_channels_map))
                        ost->audio_channels_map[ost->audio_channels_mapped++] = map->channel_idx;
                    else
                        av_log(NULL, AV_LOG_FATAL, "Max channel mapping for output %d.%d reached\n",
                               ost->file_index, ost->st->index);
                }
            }
    
        return ost;
    
    static OutputStream *new_data_stream(OptionsContext *o, AVFormatContext *oc, int source_index)
    
        ost = new_output_stream(o, oc, AVMEDIA_TYPE_DATA, source_index);
    
        if (!ost->stream_copy) {
    
            av_log(NULL, AV_LOG_FATAL, "Data stream encoding not supported yet (only streamcopy)\n");
    
            exit_program(1);
    
    static OutputStream *new_attachment_stream(OptionsContext *o, AVFormatContext *oc, int source_index)
    
        OutputStream *ost = new_output_stream(o, oc, AVMEDIA_TYPE_ATTACHMENT, source_index);
    
        ost->stream_copy = 1;
    
        return ost;
    
    static OutputStream *new_subtitle_stream(OptionsContext *o, AVFormatContext *oc, int source_index)
    
        OutputStream *ost;
    
        ost = new_output_stream(o, oc, AVMEDIA_TYPE_SUBTITLE, source_index);
    
        subtitle_enc->codec_type = AVMEDIA_TYPE_SUBTITLE;
    
        MATCH_PER_STREAM_OPT(copy_initial_nonkeyframes, i, ost->copy_initial_nonkeyframes, oc, st);
    
    
        return ost;
    
    /* arg format is "output-stream-index:streamid-value". */
    
    static int opt_streamid(OptionsContext *o, const char *opt, const char *arg)
    
        av_strlcpy(idx_str, arg, sizeof(idx_str));
    
            av_log(NULL, AV_LOG_FATAL,
                   "Invalid value '%s' for option '%s', required syntax is 'index:value'\n",
                   arg, opt);
    
            exit_program(1);
    
        idx = parse_number_or_die(opt, idx_str, OPT_INT, 0, MAX_STREAMS-1);
    
        o->streamid_map = grow_array(o->streamid_map, sizeof(*o->streamid_map), &o->nb_streamid_map, idx+1);
        o->streamid_map[idx] = parse_number_or_die(opt, p, OPT_INT, 0, INT_MAX);
    
    static int copy_chapters(InputFile *ifile, OutputFile *ofile, int copy_metadata)
    
        AVFormatContext *is = ifile->ctx;
        AVFormatContext *os = ofile->ctx;
    
        int i;
    
        for (i = 0; i < is->nb_chapters; i++) {
            AVChapter *in_ch = is->chapters[i], *out_ch;
    
            int64_t ts_off   = av_rescale_q(ofile->start_time - ifile->ts_offset,
    
                                           AV_TIME_BASE_Q, in_ch->time_base);
    
            int64_t rt       = (ofile->recording_time == INT64_MAX) ? INT64_MAX :
                               av_rescale_q(ofile->recording_time, AV_TIME_BASE_Q, in_ch->time_base);
    
    
    
            if (in_ch->end < ts_off)
                continue;
            if (rt != INT64_MAX && in_ch->start > rt + ts_off)
                break;
    
            out_ch = av_mallocz(sizeof(AVChapter));
            if (!out_ch)
                return AVERROR(ENOMEM);
    
            out_ch->id        = in_ch->id;
            out_ch->time_base = in_ch->time_base;
            out_ch->start     = FFMAX(0,  in_ch->start - ts_off);
            out_ch->end       = FFMIN(rt, in_ch->end   - ts_off);
    
    
                av_dict_copy(&out_ch->metadata, in_ch->metadata, 0);
    
            os->nb_chapters++;
    
            os->chapters = av_realloc_f(os->chapters, os->nb_chapters, sizeof(AVChapter));
    
            if (!os->chapters)
                return AVERROR(ENOMEM);
            os->chapters[os->nb_chapters - 1] = out_ch;
        }
        return 0;
    }
    
    
    static int read_ffserver_streams(OptionsContext *o, AVFormatContext *s, const char *filename)
    {
        int i, err;
    
        AVFormatContext *ic = avformat_alloc_context();
    
        ic->interrupt_callback = int_cb;
    
        err = avformat_open_input(&ic, filename, NULL, NULL);
        if (err < 0)
            return err;
        /* copy stream format */
        for(i=0;i<ic->nb_streams;i++) {
            AVStream *st;
            OutputStream *ost;
            AVCodec *codec;
    
            AVCodecContext *avctx;
    
    
            codec = avcodec_find_encoder(ic->streams[i]->codec->codec_id);
    
            ost   = new_output_stream(o, s, codec->type, -1);
    
    
            // FIXME: a more elegant solution is needed
            memcpy(st, ic->streams[i], sizeof(AVStream));
    
            st->info = av_malloc(sizeof(*st->info));
            memcpy(st->info, ic->streams[i]->info, sizeof(*st->info));
    
            avcodec_copy_context(st->codec, ic->streams[i]->codec);
    
    
            if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO && !ost->stream_copy)
    
                choose_sample_fmt(st, codec);
    
            else if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO && !ost->stream_copy)
    
                choose_pixel_fmt(st, codec, st->codec->pix_fmt);
    
    static void init_output_filter(OutputFilter *ofilter, OptionsContext *o,
                                   AVFormatContext *oc)
    {
        OutputStream *ost;
    
    
        switch (avfilter_pad_get_type(ofilter->out_tmp->filter_ctx->output_pads,
                                      ofilter->out_tmp->pad_idx)) {
    
        case AVMEDIA_TYPE_VIDEO: ost = new_video_stream(o, oc, -1); break;
        case AVMEDIA_TYPE_AUDIO: ost = new_audio_stream(o, oc, -1); break;
    
        default:
            av_log(NULL, AV_LOG_FATAL, "Only video and audio filters are supported "
                   "currently.\n");
    
            exit_program(1);
        }
    
        ost->source_index = -1;
        ost->filter       = ofilter;
    
        ofilter->ost      = ost;
    
    
        if (ost->stream_copy) {
            av_log(NULL, AV_LOG_ERROR, "Streamcopy requested for output stream %d:%d, "
                   "which is fed from a complex filtergraph. Filtering and streamcopy "
                   "cannot be used together.\n", ost->file_index, ost->index);
            exit_program(1);
        }
    
        if (o->recording_time != INT64_MAX)
            av_log(NULL, AV_LOG_WARNING,
                   "-t does not work with -filter_complex (yet).\n");
    
        if (configure_output_filter(ofilter->graph, ofilter, ofilter->out_tmp) < 0) {
            av_log(NULL, AV_LOG_FATAL, "Error configuring filter.\n");
            exit_program(1);
        }
        avfilter_inout_free(&ofilter->out_tmp);
    }
    
    
    static void opt_output_file(void *optctx, const char *filename)
    
        OptionsContext *o = optctx;
    
        AVOutputFormat *file_oformat;
    
        OutputStream *ost;
        InputStream  *ist;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
        if (configure_complex_filters() < 0) {
            av_log(NULL, AV_LOG_FATAL, "Error configuring filters.\n");
            exit_program(1);
        }
    
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        if (!strcmp(filename, "-"))
            filename = "pipe:";
    
    
        err = avformat_alloc_output_context2(&oc, NULL, o->format, filename);
    
            exit_program(1);
    
        oc->interrupt_callback = int_cb;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
        /* create streams for all unlabeled output pads */
        for (i = 0; i < nb_filtergraphs; i++) {
            FilterGraph *fg = filtergraphs[i];
            for (j = 0; j < fg->nb_outputs; j++) {
                OutputFilter *ofilter = fg->outputs[j];
    
                if (!ofilter->out_tmp || ofilter->out_tmp->name)
                    continue;
    
    
                switch (avfilter_pad_get_type(ofilter->out_tmp->filter_ctx->output_pads,
                                              ofilter->out_tmp->pad_idx)) {
    
                case AVMEDIA_TYPE_VIDEO:    o->video_disable    = 1; break;
                case AVMEDIA_TYPE_AUDIO:    o->audio_disable    = 1; break;
                case AVMEDIA_TYPE_SUBTITLE: o->subtitle_disable = 1; break;
                }
                init_output_filter(ofilter, o, oc);
            }
        }
    
    
        if (!strcmp(file_oformat->name, "ffm") &&
    
            av_strstart(filename, "http:", NULL)) {
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            /* special case for files sent to ffserver: we get the stream
               parameters from ffserver */
    
            int err = read_ffserver_streams(o, oc, filename);
    
            if (err < 0) {
                print_error(filename, err);
    
                exit_program(1);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
    
            for(j = nb_output_streams - oc->nb_streams; j < nb_output_streams; j++) {
    
                    if(ist->st->codec->codec_type == ost->st->codec->codec_type){
                        ost->sync_ist= ist;
                        ost->source_index= i;
    
                        if(ost->st->codec->codec_type == AVMEDIA_TYPE_AUDIO) ost->avfilter = av_strdup("anull");
                        if(ost->st->codec->codec_type == AVMEDIA_TYPE_VIDEO) ost->avfilter = av_strdup("null");
    
                        ist->st->discard = AVDISCARD_NONE;
    
                if(!ost->sync_ist){
                    av_log(NULL, AV_LOG_FATAL, "Missing %s stream which is required by this ffm\n", av_get_media_type_string(ost->st->codec->codec_type));
                    exit_program(1);
                }
    
        } else if (!o->nb_stream_maps) {
    
            /* pick the "best" stream of each type */
    
            /* video: highest resolution */
    
            if (!o->video_disable && oc->oformat->video_codec != CODEC_ID_NONE) {
    
                int area = 0, idx = -1;
                for (i = 0; i < nb_input_streams; i++) {
    
                    if (ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
                        ist->st->codec->width * ist->st->codec->height > area) {
                        area = ist->st->codec->width * ist->st->codec->height;
                        idx = i;
                    }
                }
    
                if (idx >= 0)
                    new_video_stream(o, oc, idx);
    
            }
    
            /* audio: most channels */
    
            if (!o->audio_disable && oc->oformat->audio_codec != CODEC_ID_NONE) {
    
                int channels = 0, idx = -1;
                for (i = 0; i < nb_input_streams; i++) {
    
                    if (ist->st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
                        ist->st->codec->channels > channels) {
                        channels = ist->st->codec->channels;
                        idx = i;
                    }
                }
    
                if (idx >= 0)
                    new_audio_stream(o, oc, idx);
    
            }
    
            /* subtitles: pick first */
    
            if (!o->subtitle_disable && (oc->oformat->subtitle_codec != CODEC_ID_NONE || subtitle_codec_name)) {
    
                for (i = 0; i < nb_input_streams; i++)
    
                    if (input_streams[i]->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
    
                        break;
                    }
            }
            /* do something with data? */
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        } else {
    
            for (i = 0; i < o->nb_stream_maps; i++) {
                StreamMap *map = &o->stream_maps[i];
    
                int src_idx = input_files[map->file_index]->ist_index + map->stream_index;
    
                if (map->disabled)
                    continue;
    
                if (map->linklabel) {
                    FilterGraph *fg;
                    OutputFilter *ofilter = NULL;
                    int j, k;
    
                    for (j = 0; j < nb_filtergraphs; j++) {
                        fg = filtergraphs[j];
                        for (k = 0; k < fg->nb_outputs; k++) {
                            AVFilterInOut *out = fg->outputs[k]->out_tmp;
                            if (out && !strcmp(out->name, map->linklabel)) {
                                ofilter = fg->outputs[k];
                                goto loop_end;
                            }
                        }
                    }
    loop_end:
                    if (!ofilter) {
                        av_log(NULL, AV_LOG_FATAL, "Output with label '%s' does not exist "
                               "in any defined filter graph.\n", map->linklabel);
                        exit_program(1);
                    }
                    init_output_filter(ofilter, o, oc);
                } else {
    
    Anton Khirnov's avatar
    Anton Khirnov committed
                    ist = input_streams[input_files[map->file_index]->ist_index + map->stream_index];
    
                    if(o->subtitle_disable && ist->st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE)
                        continue;
                    if(o->   audio_disable && ist->st->codec->codec_type == AVMEDIA_TYPE_AUDIO)
                        continue;
                    if(o->   video_disable && ist->st->codec->codec_type == AVMEDIA_TYPE_VIDEO)
                        continue;
                    if(o->    data_disable && ist->st->codec->codec_type == AVMEDIA_TYPE_DATA)
                        continue;
    
    
    Anton Khirnov's avatar
    Anton Khirnov committed
                    switch (ist->st->codec->codec_type) {
    
                    case AVMEDIA_TYPE_VIDEO:      ost = new_video_stream     (o, oc, src_idx); break;
                    case AVMEDIA_TYPE_AUDIO:      ost = new_audio_stream     (o, oc, src_idx); break;
                    case AVMEDIA_TYPE_SUBTITLE:   ost = new_subtitle_stream  (o, oc, src_idx); break;
                    case AVMEDIA_TYPE_DATA:       ost = new_data_stream      (o, oc, src_idx); break;
                    case AVMEDIA_TYPE_ATTACHMENT: ost = new_attachment_stream(o, oc, src_idx); break;
    
    Anton Khirnov's avatar
    Anton Khirnov committed
                    default:
                        av_log(NULL, AV_LOG_FATAL, "Cannot map stream #%d:%d - unsupported type.\n",
    
    Clément Bœsch's avatar
    Clément Bœsch committed
                               map->file_index, map->stream_index);
    
    Anton Khirnov's avatar
    Anton Khirnov committed
                        exit_program(1);
                    }
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    
    
    
        for (i = nb_output_streams - oc->nb_streams; i < nb_output_streams; i++) { //for all streams of this output file
            AVDictionaryEntry *e;
    
    
            if (   ost->stream_copy
                && (e = av_dict_get(codec_opts, "flags", NULL, AV_DICT_IGNORE_SUFFIX))
                && (!e->key[5] || check_stream_specifier(oc, ost->st, e->key+6)))
                if (av_opt_set(ost->st->codec, "flags", e->value, 0) < 0)
                    exit_program(1);
        }
    
    
        /* handle attached files */
        for (i = 0; i < o->nb_attachments; i++) {
            AVIOContext *pb;
            uint8_t *attachment;
            const char *p;
            int64_t len;
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
            if ((err = avio_open2(&pb, o->attachments[i], AVIO_FLAG_READ, &int_cb, NULL)) < 0) {
    
                av_log(NULL, AV_LOG_FATAL, "Could not open attachment file %s.\n",
                       o->attachments[i]);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
    
            if ((len = avio_size(pb)) <= 0) {
                av_log(NULL, AV_LOG_FATAL, "Could not get size of the attachment %s.\n",
                       o->attachments[i]);
                exit_program(1);
            }
            if (!(attachment = av_malloc(len))) {
                av_log(NULL, AV_LOG_FATAL, "Attachment %s too large to fit into memory.\n",
                       o->attachments[i]);
                exit_program(1);
            }
            avio_read(pb, attachment, len);
    
    
            ost = new_attachment_stream(o, oc, -1);
    
            ost->stream_copy               = 0;
            ost->attachment_filename       = o->attachments[i];
            ost->st->codec->extradata      = attachment;
            ost->st->codec->extradata_size = len;
    
            p = strrchr(o->attachments[i], '/');
            av_dict_set(&ost->st->metadata, "filename", (p && *p) ? p + 1 : o->attachments[i], AV_DICT_DONT_OVERWRITE);
            avio_close(pb);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
        }
    
    
        output_files = grow_array(output_files, sizeof(*output_files), &nb_output_files, nb_output_files + 1);
    
        if (!(output_files[nb_output_files - 1] = av_mallocz(sizeof(*output_files[0]))))
            exit_program(1);
    
        output_files[nb_output_files - 1]->ctx            = oc;
        output_files[nb_output_files - 1]->ost_index      = nb_output_streams - oc->nb_streams;
        output_files[nb_output_files - 1]->recording_time = o->recording_time;
    
        if (o->recording_time != INT64_MAX)
            oc->duration = o->recording_time;
    
        output_files[nb_output_files - 1]->start_time     = o->start_time;
        output_files[nb_output_files - 1]->limit_filesize = o->limit_filesize;
        av_dict_copy(&output_files[nb_output_files - 1]->opts, format_opts, 0);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    
    
        /* check filename in case of an image number is expected */
    
        if (oc->oformat->flags & AVFMT_NEEDNUMBER) {
    
                print_error(oc->filename, AVERROR(EINVAL));
    
                exit_program(1);
    
        if (!(oc->oformat->flags & AVFMT_NOFILE)) {
    
            /* test if it already exists to avoid losing precious files */
    
            assert_file_overwrite(filename);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            /* open the file */
    
            if ((err = avio_open2(&oc->pb, filename, AVIO_FLAG_WRITE,
                                  &oc->interrupt_callback,
    
                                  &output_files[nb_output_files - 1]->opts)) < 0) {
    
                exit_program(1);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
            }
        }
    
    
        if (o->mux_preload) {
            uint8_t buf[64];
            snprintf(buf, sizeof(buf), "%d", (int)(o->mux_preload*AV_TIME_BASE));
    
            av_dict_set(&output_files[nb_output_files - 1]->opts, "preload", buf, 0);
    
        oc->max_delay = (int)(o->mux_max_delay * AV_TIME_BASE);
    
        /* copy metadata */
        for (i = 0; i < o->nb_metadata_map; i++) {
            char *p;
            int in_file_index = strtol(o->metadata_map[i].u.str, &p, 0);
    
            if (in_file_index >= nb_input_files) {
                av_log(NULL, AV_LOG_FATAL, "Invalid input file index %d while processing metadata maps\n", in_file_index);
                exit_program(1);
            }
    
            copy_metadata(o->metadata_map[i].specifier, *p ? p + 1 : p, oc, in_file_index >= 0 ? input_files[in_file_index]->ctx : NULL, o);
    
        if (o->chapters_input_file >= nb_input_files) {
            if (o->chapters_input_file == INT_MAX) {
    
                /* copy chapters from the first input file that has them*/
    
                o->chapters_input_file = -1;
    
                for (i = 0; i < nb_input_files; i++)
    
                    if (input_files[i]->ctx->nb_chapters) {
    
                        o->chapters_input_file = i;
    
                av_log(NULL, AV_LOG_FATAL, "Invalid input file index %d in chapter mapping.\n",
    
                       o->chapters_input_file);
    
        if (o->chapters_input_file >= 0)
    
            copy_chapters(input_files[o->chapters_input_file], output_files[nb_output_files - 1],
    
                          !o->metadata_chapters_manual);
    
        /* copy global metadata by default */
    
        if (!o->metadata_global_manual && nb_input_files){
    
            av_dict_copy(&oc->metadata, input_files[0]->ctx->metadata,
    
            if(o->recording_time != INT64_MAX)
                av_dict_set(&oc->metadata, "duration", NULL, 0);
    
            av_dict_set(&oc->metadata, "creation_time", NULL, 0);
    
        if (!o->metadata_streams_manual)
    
            for (i = output_files[nb_output_files - 1]->ost_index; i < nb_output_streams; i++) {
    
                if (output_streams[i]->source_index < 0)         /* this is true e.g. for attached files */
    
                ist = input_streams[output_streams[i]->source_index];
                av_dict_copy(&output_streams[i]->st->metadata, ist->st->metadata, AV_DICT_DONT_OVERWRITE);
    
        /* process manually set metadata */
        for (i = 0; i < o->nb_metadata; i++) {
            AVDictionary **m;
            char type, *val;
    
            const char *stream_spec;
    
            int index = 0, j, ret = 0;
    
    
            val = strchr(o->metadata[i].u.str, '=');
            if (!val) {
    
                av_log(NULL, AV_LOG_FATAL, "No '=' character in metadata string %s.\n",
    
                       o->metadata[i].u.str);
                exit_program(1);
            }
            *val++ = 0;
    
    
            parse_meta_type(o->metadata[i].specifier, &type, &index, &stream_spec);
            if (type == 's') {
                for (j = 0; j < oc->nb_streams; j++) {
                    if ((ret = check_stream_specifier(oc, oc->streams[j], stream_spec)) > 0) {
                        av_dict_set(&oc->streams[j]->metadata, o->metadata[i].u.str, *val ? val : NULL, 0);
                    } else if (ret < 0)
                        exit_program(1);
    
            }
            else {
                switch (type) {
                case 'g':
                    m = &oc->metadata;
                    break;
                case 'c':
                    if (index < 0 || index >= oc->nb_chapters) {
                        av_log(NULL, AV_LOG_FATAL, "Invalid chapter index %d in metadata specifier.\n", index);
                        exit_program(1);
                    }
                    m = &oc->chapters[index]->metadata;
                    break;
                default:
                    av_log(NULL, AV_LOG_FATAL, "Invalid metadata specifier %s.\n", o->metadata[i].specifier);
    
                av_dict_set(m, o->metadata[i].u.str, *val ? val : NULL, 0);
    
    Fabrice Bellard's avatar
    Fabrice Bellard committed
    }
    
    
    /* same option as mencoder */
    
    static int opt_pass(const char *opt, const char *arg)
    
        do_pass = parse_number_or_die(opt, arg, OPT_INT, 1, 3);
    
    static int64_t getmaxrss(void)
    {
    #if HAVE_GETRUSAGE && HAVE_STRUCT_RUSAGE_RU_MAXRSS
        struct rusage rusage;
        getrusage(RUSAGE_SELF, &rusage);
        return (int64_t)rusage.ru_maxrss * 1024;
    #elif HAVE_GETPROCESSMEMORYINFO
        HANDLE proc;
        PROCESS_MEMORY_COUNTERS memcounters;
        proc = GetCurrentProcess();
        memcounters.cb = sizeof(memcounters);
        GetProcessMemoryInfo(proc, &memcounters, sizeof(memcounters));
        return memcounters.PeakPagefileUsage;
    #else
        return 0;
    #endif
    }
    
    
    static int opt_audio_qscale(OptionsContext *o, const char *opt, const char *arg)
    
        return parse_option(o, "q:a", arg, options);
    
    static void show_usage(void)
    
        av_log(NULL, AV_LOG_INFO, "Hyper fast Audio and Video encoder\n");
        av_log(NULL, AV_LOG_INFO, "usage: %s [options] [[infile options] -i infile]... {[outfile options] outfile}...\n", program_name);
        av_log(NULL, AV_LOG_INFO, "\n");
    
    static int opt_help(const char *opt, const char *arg)
    
        int flags = AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_ENCODING_PARAM;
    
        av_log_set_callback(log_callback_help);
        show_usage();
    
        show_help_options(options, "Main options:\n",
    
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE | OPT_GRAB, 0);
    
        show_help_options(options, "\nAdvanced options:\n",
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_SUBTITLE | OPT_GRAB,
                          OPT_EXPERT);
    
        show_help_options(options, "\nVideo options:\n",
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
                          OPT_VIDEO);
        show_help_options(options, "\nAdvanced Video options:\n",
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
                          OPT_VIDEO | OPT_EXPERT);
        show_help_options(options, "\nAudio options:\n",
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
                          OPT_AUDIO);
        show_help_options(options, "\nAdvanced Audio options:\n",
                          OPT_EXPERT | OPT_AUDIO | OPT_VIDEO | OPT_GRAB,
                          OPT_AUDIO | OPT_EXPERT);
        show_help_options(options, "\nSubtitle options:\n",
                          OPT_SUBTITLE | OPT_GRAB,
                          OPT_SUBTITLE);
        show_help_options(options, "\nAudio/Video grab options:\n",
                          OPT_GRAB,
                          OPT_GRAB);
    
        show_help_children(avcodec_get_class(), flags);
        show_help_children(avformat_get_class(), flags);
        show_help_children(sws_get_class(), flags);
    
        show_help_children(swr_get_class(), AV_OPT_FLAG_AUDIO_PARAM);
    
    static int opt_target(OptionsContext *o, const char *opt, const char *arg)
    
        enum { PAL, NTSC, FILM, UNKNOWN } norm = UNKNOWN;
    
        static const char *const frame_rates[] = { "25", "30000/1001", "24000/1001" };
    
        if (!strncmp(arg, "pal-", 4)) {
    
        } else if (!strncmp(arg, "ntsc-", 5)) {
    
        } else if (!strncmp(arg, "film-", 5)) {
    
            /* Try to determine PAL/NTSC by peeking in the input files */
    
            if (nb_input_files) {
    
                int i, j, fr;
                for (j = 0; j < nb_input_files; j++) {
    
                    for (i = 0; i < input_files[j]->nb_streams; i++) {
                        AVCodecContext *c = input_files[j]->ctx->streams[i]->codec;
    
                        if (c->codec_type != AVMEDIA_TYPE_VIDEO)
    
                            continue;
                        fr = c->time_base.den * 1000 / c->time_base.num;
    
                        } else if ((fr == 29970) || (fr == 23976)) {
    
                    if (norm != UNKNOWN)
    
            if (norm != UNKNOWN)
                av_log(NULL, AV_LOG_INFO, "Assuming %s for target.\n", norm == PAL ? "PAL" : "NTSC");
    
        if (norm == UNKNOWN) {
    
            av_log(NULL, AV_LOG_FATAL, "Could not determine norm (PAL/NTSC/NTSC-Film) for target.\n");
            av_log(NULL, AV_LOG_FATAL, "Please prefix target with \"pal-\", \"ntsc-\" or \"film-\",\n");
            av_log(NULL, AV_LOG_FATAL, "or set a framerate with \"-r xxx\".\n");
    
            exit_program(1);
    
        if (!strcmp(arg, "vcd")) {
    
            opt_video_codec(o, "c:v", "mpeg1video");
            opt_audio_codec(o, "c:a", "mp2");
    
            parse_option(o, "f", "vcd", options);
    
            parse_option(o, "s", norm == PAL ? "352x288" : "352x240", options);
            parse_option(o, "r", frame_rates[norm], options);
    
            opt_default("g", norm == PAL ? "15" : "18");
    
            opt_default("b:v", "1150000");
    
            opt_default("maxrate", "1150000");
            opt_default("minrate", "1150000");
    
            opt_default("bufsize", "327680"); // 40*1024*8;
    
            opt_default("b:a", "224000");
    
            parse_option(o, "ar", "44100", options);
    
            parse_option(o, "ac", "2", options);
    
            opt_default("packetsize", "2324");
    
            opt_default("muxrate", "1411200"); // 2352 * 75 * 8;
    
            /* We have to offset the PTS, so that it is consistent with the SCR.
               SCR starts at 36000, but the first two packs contain only padding
               and the first pack from the other stream, respectively, may also have
               been written before.
               So the real data starts at SCR 36000+3*1200. */
    
            o->mux_preload = (36000 + 3 * 1200) / 90000.0; // 0.44
        } else if (!strcmp(arg, "svcd")) {
    
            opt_video_codec(o, "c:v", "mpeg2video");
            opt_audio_codec(o, "c:a", "mp2");
    
            parse_option(o, "f", "svcd", options);
    
            parse_option(o, "s", norm == PAL ? "480x576" : "480x480", options);
            parse_option(o, "r", frame_rates[norm], options);
            parse_option(o, "pix_fmt", "yuv420p", options);
    
            opt_default("g", norm == PAL ? "15" : "18");
    
            opt_default("b:v", "2040000");
    
            opt_default("minrate", "0"); // 1145000;
            opt_default("bufsize", "1835008"); // 224*1024*8;
    
            opt_default("scan_offset", "1");
    
            opt_default("b:a", "224000");
    
            parse_option(o, "ar", "44100", options);
    
            opt_default("packetsize", "2324");
    
        } else if (!strcmp(arg, "dvd")) {
    
            opt_video_codec(o, "c:v", "mpeg2video");
            opt_audio_codec(o, "c:a", "ac3");
    
            parse_option(o, "f", "dvd", options);
    
            parse_option(o, "s", norm == PAL ? "720x576" : "720x480", options);
            parse_option(o, "r", frame_rates[norm], options);
            parse_option(o, "pix_fmt", "yuv420p", options);
    
            opt_default("g", norm == PAL ? "15" : "18");
    
            opt_default("b:v", "6000000");
    
            opt_default("minrate", "0"); // 1500000;
            opt_default("bufsize", "1835008"); // 224*1024*8;
    
            opt_default("packetsize", "2048");  // from www.mpucoder.com: DVD sectors contain 2048 bytes of data, this is also the size of one pack.
    
            opt_default("muxrate", "10080000"); // from mplex project: data_rate = 1260000. mux_rate = data_rate * 8
    
            opt_default("b:a", "448000");
    
            parse_option(o, "ar", "48000", options);
    
        } else if (!strncmp(arg, "dv", 2)) {
    
            parse_option(o, "f", "dv", options);
    
            parse_option(o, "s", norm == PAL ? "720x576" : "720x480", options);
            parse_option(o, "pix_fmt", !strncmp(arg, "dv50", 4) ? "yuv422p" :
                              norm == PAL ? "yuv420p" : "yuv411p", options);
            parse_option(o, "r", frame_rates[norm], options);
    
            parse_option(o, "ar", "48000", options);
    
            parse_option(o, "ac", "2", options);
    
            av_log(NULL, AV_LOG_ERROR, "Unknown target: %s\n", arg);
    
            return AVERROR(EINVAL);
    
        return 0;
    
    static int opt_vstats_file(const char *opt, const char *arg)
    
    {
        av_free (vstats_filename);
    
        vstats_filename = av_strdup (arg);
    
        return 0;
    
    static int opt_vstats(const char *opt, const char *arg)
    
    {
        char filename[40];
        time_t today2 = time(NULL);
        struct tm *today = localtime(&today2);
    
        snprintf(filename, sizeof(filename), "vstats_%02d%02d%02d.log", today->tm_hour, today->tm_min,
                 today->tm_sec);
    
        return opt_vstats_file(opt, filename);
    
    static int opt_video_frames(OptionsContext *o, const char *opt, const char *arg)
    
        return parse_option(o, "frames:v", arg, options);
    }
    
    static int opt_audio_frames(OptionsContext *o, const char *opt, const char *arg)
    {
        return parse_option(o, "frames:a", arg, options);
    }
    
    static int opt_data_frames(OptionsContext *o, const char *opt, const char *arg)
    {
        return parse_option(o, "frames:d", arg, options);
    
    static int opt_preset(OptionsContext *o, const char *opt, const char *arg)
    
        char filename[1000], line[1000], tmp_line[1000];
    
        const char *codec_name = *opt == 'v' ? video_codec_name :
                                 *opt == 'a' ? audio_codec_name :
                                               subtitle_codec_name;
    
    
        if (!(f = get_preset_file(filename, sizeof(filename), arg, *opt == 'f', codec_name))) {
    
            if(!strncmp(arg, "libx264-lossless", strlen("libx264-lossless"))){
    
                av_log(NULL, AV_LOG_FATAL, "Please use -preset <speed> -qp 0\n");
    
                av_log(NULL, AV_LOG_FATAL, "File for preset '%s' not found\n", arg);
    
        while (fgets(line, sizeof(line), f)) {
            char *key = tmp_line, *value, *endptr;
    
            if (strcspn(line, "#\n\r") == 0)
    
            strcpy(tmp_line, line);
            if (!av_strtok(key,   "=",    &value) ||
                !av_strtok(value, "\r\n", &endptr)) {
    
                av_log(NULL, AV_LOG_FATAL, "%s: Invalid syntax: '%s'\n", filename, line);
    
            av_log(NULL, AV_LOG_DEBUG, "ffpreset[%s]: set '%s' = '%s'\n", filename, key, value);
    
            if      (!strcmp(key, "acodec")) opt_audio_codec   (o, key, value);
            else if (!strcmp(key, "vcodec")) opt_video_codec   (o, key, value);
            else if (!strcmp(key, "scodec")) opt_subtitle_codec(o, key, value);
            else if (!strcmp(key, "dcodec")) opt_data_codec    (o, key, value);
            else if (opt_default(key, value) < 0) {
                av_log(NULL, AV_LOG_FATAL, "%s: Invalid option or argument: '%s', parsed as '%s' = '%s'\n",
                       filename, line, key, value);
    
    static void log_callback_null(void *ptr, int level, const char *fmt, va_list vl)
    
    static int opt_passlogfile(const char *opt, const char *arg)
    
    #if CONFIG_LIBX264_ENCODER
    
        return opt_default(opt, arg);
    
    #else
        return 0;
    #endif
    
    static int opt_old2new(OptionsContext *o, const char *opt, const char *arg)
    {
    
        char *s = av_asprintf("%s:%c", opt + 1, *opt);
    
        int ret = parse_option(o, s, arg, options);
    
    static int opt_bitrate(OptionsContext *o, const char *opt, const char *arg)
    {
        if(!strcmp(opt, "b")){
    
            av_log(NULL, AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambiguous\n");
    
            return parse_option(o, "b:v", arg, options);
    
    static int opt_qscale(OptionsContext *o, const char *opt, const char *arg)