libavfilter/avf_concat.c
be33da9a
 /*
  * Copyright (c) 2012 Nicolas George
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  * See the GNU Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public License
  * along with FFmpeg; if not, write to the Free Software Foundation, Inc.,
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * concat audio-video filter
  */
 
 #include "libavutil/avassert.h"
a7eabbb2
 #include "libavutil/avstring.h"
1acd2f6b
 #include "libavutil/channel_layout.h"
be33da9a
 #include "libavutil/opt.h"
 #include "avfilter.h"
 #define FF_BUFQUEUE_SIZE 256
 #include "bufferqueue.h"
 #include "internal.h"
 #include "video.h"
 #include "audio.h"
 
 #define TYPE_ALL 2
 
ed93ed5e
 typedef struct ConcatContext {
be33da9a
     const AVClass *class;
     unsigned nb_streams[TYPE_ALL]; /**< number of out streams of each type */
     unsigned nb_segments;
     unsigned cur_idx; /**< index of the first input of current segment */
     int64_t delta_ts; /**< timestamp to add to produce output timestamps */
     unsigned nb_in_active; /**< number of active inputs in current segment */
b0e2f4a7
     unsigned unsafe;
be33da9a
     struct concat_in {
         int64_t pts;
         int64_t nb_frames;
         unsigned eof;
         struct FFBufQueue queue;
     } *in;
 } ConcatContext;
 
 #define OFFSET(x) offsetof(ConcatContext, x)
42d621d1
 #define A AV_OPT_FLAG_AUDIO_PARAM
 #define F AV_OPT_FLAG_FILTERING_PARAM
 #define V AV_OPT_FLAG_VIDEO_PARAM
be33da9a
 
 static const AVOption concat_options[] = {
     { "n", "specify the number of segments", OFFSET(nb_segments),
843d7bb3
       AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, V|A|F},
be33da9a
     { "v", "specify the number of video streams",
       OFFSET(nb_streams[AVMEDIA_TYPE_VIDEO]),
d46c1c72
       AV_OPT_TYPE_INT, { .i64 = 1 }, 0, INT_MAX, V|F },
be33da9a
     { "a", "specify the number of audio streams",
       OFFSET(nb_streams[AVMEDIA_TYPE_AUDIO]),
d46c1c72
       AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, A|F},
b0e2f4a7
     { "unsafe", "enable unsafe mode",
       OFFSET(unsafe),
9f4b3bd9
       AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, V|A|F},
b211607b
     { NULL }
be33da9a
 };
 
 AVFILTER_DEFINE_CLASS(concat);
 
 static int query_formats(AVFilterContext *ctx)
 {
     ConcatContext *cat = ctx->priv;
     unsigned type, nb_str, idx0 = 0, idx, str, seg;
53228f47
     AVFilterFormats *formats, *rates = NULL;
     AVFilterChannelLayouts *layouts = NULL;
6aaac24d
     int ret;
be33da9a
 
     for (type = 0; type < TYPE_ALL; type++) {
         nb_str = cat->nb_streams[type];
         for (str = 0; str < nb_str; str++) {
             idx = idx0;
 
             /* Set the output formats */
             formats = ff_all_formats(type);
6aaac24d
             if ((ret = ff_formats_ref(formats, &ctx->outputs[idx]->in_formats)) < 0)
                 return ret;
 
be33da9a
             if (type == AVMEDIA_TYPE_AUDIO) {
                 rates = ff_all_samplerates();
6aaac24d
                 if ((ret = ff_formats_ref(rates, &ctx->outputs[idx]->in_samplerates)) < 0)
                     return ret;
be33da9a
                 layouts = ff_all_channel_layouts();
6aaac24d
                 if ((ret = ff_channel_layouts_ref(layouts, &ctx->outputs[idx]->in_channel_layouts)) < 0)
                     return ret;
be33da9a
             }
 
             /* Set the same formats for each corresponding input */
             for (seg = 0; seg < cat->nb_segments; seg++) {
6aaac24d
                 if ((ret = ff_formats_ref(formats, &ctx->inputs[idx]->out_formats)) < 0)
                     return ret;
be33da9a
                 if (type == AVMEDIA_TYPE_AUDIO) {
6aaac24d
                     if ((ret = ff_formats_ref(rates, &ctx->inputs[idx]->out_samplerates)) < 0 ||
                         (ret = ff_channel_layouts_ref(layouts, &ctx->inputs[idx]->out_channel_layouts)) < 0)
                         return ret;
be33da9a
                 }
                 idx += ctx->nb_outputs;
             }
 
             idx0++;
         }
     }
     return 0;
 }
 
 static int config_output(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     ConcatContext *cat   = ctx->priv;
     unsigned out_no = FF_OUTLINK_IDX(outlink);
     unsigned in_no  = out_no, seg;
     AVFilterLink *inlink = ctx->inputs[in_no];
 
     /* enhancement: find a common one */
     outlink->time_base           = AV_TIME_BASE_Q;
     outlink->w                   = inlink->w;
     outlink->h                   = inlink->h;
     outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
     outlink->format              = inlink->format;
     for (seg = 1; seg < cat->nb_segments; seg++) {
         inlink = ctx->inputs[in_no += ctx->nb_outputs];
36b21e17
         if (!outlink->sample_aspect_ratio.num)
             outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
be33da9a
         /* possible enhancement: unsafe mode, do not check */
         if (outlink->w                       != inlink->w                       ||
             outlink->h                       != inlink->h                       ||
36b21e17
             outlink->sample_aspect_ratio.num != inlink->sample_aspect_ratio.num &&
                                                 inlink->sample_aspect_ratio.num ||
be33da9a
             outlink->sample_aspect_ratio.den != inlink->sample_aspect_ratio.den) {
             av_log(ctx, AV_LOG_ERROR, "Input link %s parameters "
                    "(size %dx%d, SAR %d:%d) do not match the corresponding "
                    "output link %s parameters (%dx%d, SAR %d:%d)\n",
                    ctx->input_pads[in_no].name, inlink->w, inlink->h,
                    inlink->sample_aspect_ratio.num,
                    inlink->sample_aspect_ratio.den,
                    ctx->input_pads[out_no].name, outlink->w, outlink->h,
                    outlink->sample_aspect_ratio.num,
                    outlink->sample_aspect_ratio.den);
b0e2f4a7
             if (!cat->unsafe)
                 return AVERROR(EINVAL);
be33da9a
         }
     }
 
     return 0;
 }
 
60bd8c11
 static int push_frame(AVFilterContext *ctx, unsigned in_no, AVFrame *buf)
be33da9a
 {
     ConcatContext *cat = ctx->priv;
     unsigned out_no = in_no % ctx->nb_outputs;
     AVFilterLink * inlink = ctx-> inputs[ in_no];
     AVFilterLink *outlink = ctx->outputs[out_no];
     struct concat_in *in = &cat->in[in_no];
 
     buf->pts = av_rescale_q(buf->pts, inlink->time_base, outlink->time_base);
     in->pts = buf->pts;
     in->nb_frames++;
     /* add duration to input PTS */
     if (inlink->sample_rate)
         /* use number of audio samples */
a05a44e2
         in->pts += av_rescale_q(buf->nb_samples,
c4b7ad32
                                 av_make_q(1, inlink->sample_rate),
be33da9a
                                 outlink->time_base);
     else if (in->nb_frames >= 2)
         /* use mean duration */
         in->pts = av_rescale(in->pts, in->nb_frames, in->nb_frames - 1);
 
     buf->pts += cat->delta_ts;
60bd8c11
     return ff_filter_frame(outlink, buf);
be33da9a
 }
 
60bd8c11
 static int process_frame(AVFilterLink *inlink, AVFrame *buf)
be33da9a
 {
     AVFilterContext *ctx  = inlink->dst;
     ConcatContext *cat    = ctx->priv;
     unsigned in_no = FF_INLINK_IDX(inlink);
 
     if (in_no < cat->cur_idx) {
         av_log(ctx, AV_LOG_ERROR, "Frame after EOF on input %s\n",
                ctx->input_pads[in_no].name);
a05a44e2
         av_frame_free(&buf);
709628aa
     } else if (in_no >= cat->cur_idx + ctx->nb_outputs) {
be33da9a
         ff_bufqueue_add(ctx, &cat->in[in_no].queue, buf);
     } else {
60bd8c11
         return push_frame(ctx, in_no, buf);
be33da9a
     }
60bd8c11
     return 0;
be33da9a
 }
 
a05a44e2
 static AVFrame *get_video_buffer(AVFilterLink *inlink, int w, int h)
be33da9a
 {
     AVFilterContext *ctx = inlink->dst;
     unsigned in_no = FF_INLINK_IDX(inlink);
     AVFilterLink *outlink = ctx->outputs[in_no % ctx->nb_outputs];
 
a05a44e2
     return ff_get_video_buffer(outlink, w, h);
be33da9a
 }
 
a05a44e2
 static AVFrame *get_audio_buffer(AVFilterLink *inlink, int nb_samples)
be33da9a
 {
     AVFilterContext *ctx = inlink->dst;
     unsigned in_no = FF_INLINK_IDX(inlink);
     AVFilterLink *outlink = ctx->outputs[in_no % ctx->nb_outputs];
 
a05a44e2
     return ff_get_audio_buffer(outlink, nb_samples);
be33da9a
 }
 
a05a44e2
 static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
be33da9a
 {
60bd8c11
     return process_frame(inlink, buf);
be33da9a
 }
 
 static void close_input(AVFilterContext *ctx, unsigned in_no)
 {
     ConcatContext *cat = ctx->priv;
 
     cat->in[in_no].eof = 1;
     cat->nb_in_active--;
     av_log(ctx, AV_LOG_VERBOSE, "EOF on %s, %d streams left in segment.\n",
            ctx->input_pads[in_no].name, cat->nb_in_active);
 }
 
68fb7e26
 static void find_next_delta_ts(AVFilterContext *ctx, int64_t *seg_delta)
be33da9a
 {
     ConcatContext *cat = ctx->priv;
     unsigned i = cat->cur_idx;
     unsigned imax = i + ctx->nb_outputs;
     int64_t pts;
 
     pts = cat->in[i++].pts;
     for (; i < imax; i++)
         pts = FFMAX(pts, cat->in[i].pts);
     cat->delta_ts += pts;
68fb7e26
     *seg_delta = pts;
be33da9a
 }
 
68fb7e26
 static int send_silence(AVFilterContext *ctx, unsigned in_no, unsigned out_no,
                         int64_t seg_delta)
be33da9a
 {
     ConcatContext *cat = ctx->priv;
     AVFilterLink *outlink = ctx->outputs[out_no];
68fb7e26
     int64_t base_pts = cat->in[in_no].pts + cat->delta_ts - seg_delta;
be33da9a
     int64_t nb_samples, sent = 0;
60bd8c11
     int frame_nb_samples, ret;
be33da9a
     AVRational rate_tb = { 1, ctx->inputs[in_no]->sample_rate };
a05a44e2
     AVFrame *buf;
be33da9a
 
     if (!rate_tb.den)
60bd8c11
         return AVERROR_BUG;
68fb7e26
     nb_samples = av_rescale_q(seg_delta - cat->in[in_no].pts,
be33da9a
                               outlink->time_base, rate_tb);
     frame_nb_samples = FFMAX(9600, rate_tb.den / 5); /* arbitrary */
     while (nb_samples) {
         frame_nb_samples = FFMIN(frame_nb_samples, nb_samples);
a05a44e2
         buf = ff_get_audio_buffer(outlink, frame_nb_samples);
be33da9a
         if (!buf)
60bd8c11
             return AVERROR(ENOMEM);
be33da9a
         av_samples_set_silence(buf->extended_data, 0, frame_nb_samples,
054f912c
                                outlink->channels, outlink->format);
be33da9a
         buf->pts = base_pts + av_rescale_q(sent, rate_tb, outlink->time_base);
60bd8c11
         ret = ff_filter_frame(outlink, buf);
         if (ret < 0)
             return ret;
be33da9a
         sent       += frame_nb_samples;
         nb_samples -= frame_nb_samples;
     }
60bd8c11
     return 0;
be33da9a
 }
 
60bd8c11
 static int flush_segment(AVFilterContext *ctx)
be33da9a
 {
60bd8c11
     int ret;
be33da9a
     ConcatContext *cat = ctx->priv;
     unsigned str, str_max;
68fb7e26
     int64_t seg_delta;
be33da9a
 
68fb7e26
     find_next_delta_ts(ctx, &seg_delta);
be33da9a
     cat->cur_idx += ctx->nb_outputs;
     cat->nb_in_active = ctx->nb_outputs;
     av_log(ctx, AV_LOG_VERBOSE, "Segment finished at pts=%"PRId64"\n",
            cat->delta_ts);
 
     if (cat->cur_idx < ctx->nb_inputs) {
         /* pad audio streams with silence */
         str = cat->nb_streams[AVMEDIA_TYPE_VIDEO];
         str_max = str + cat->nb_streams[AVMEDIA_TYPE_AUDIO];
60bd8c11
         for (; str < str_max; str++) {
68fb7e26
             ret = send_silence(ctx, cat->cur_idx - ctx->nb_outputs + str, str,
                                seg_delta);
60bd8c11
             if (ret < 0)
                 return ret;
         }
be33da9a
         /* flush queued buffers */
         /* possible enhancement: flush in PTS order */
         str_max = cat->cur_idx + ctx->nb_outputs;
60bd8c11
         for (str = cat->cur_idx; str < str_max; str++) {
             while (cat->in[str].queue.available) {
                 ret = push_frame(ctx, str, ff_bufqueue_get(&cat->in[str].queue));
                 if (ret < 0)
                     return ret;
             }
         }
be33da9a
     }
60bd8c11
     return 0;
be33da9a
 }
 
 static int request_frame(AVFilterLink *outlink)
 {
     AVFilterContext *ctx = outlink->src;
     ConcatContext *cat   = ctx->priv;
     unsigned out_no = FF_OUTLINK_IDX(outlink);
     unsigned in_no  = out_no + cat->cur_idx;
     unsigned str, str_max;
     int ret;
 
     while (1) {
         if (in_no >= ctx->nb_inputs)
             return AVERROR_EOF;
         if (!cat->in[in_no].eof) {
             ret = ff_request_frame(ctx->inputs[in_no]);
             if (ret != AVERROR_EOF)
                 return ret;
             close_input(ctx, in_no);
         }
         /* cycle on all inputs to finish the segment */
         /* possible enhancement: request in PTS order */
         str_max = cat->cur_idx + ctx->nb_outputs - 1;
         for (str = cat->cur_idx; cat->nb_in_active;
              str = str == str_max ? cat->cur_idx : str + 1) {
             if (cat->in[str].eof)
                 continue;
             ret = ff_request_frame(ctx->inputs[str]);
79c1be12
             if (ret != AVERROR_EOF)
be33da9a
                 return ret;
79c1be12
             close_input(ctx, str);
be33da9a
         }
60bd8c11
         ret = flush_segment(ctx);
         if (ret < 0)
             return ret;
be33da9a
         in_no += ctx->nb_outputs;
     }
 }
 
fd6228e6
 static av_cold int init(AVFilterContext *ctx)
be33da9a
 {
     ConcatContext *cat = ctx->priv;
     unsigned seg, type, str;
1a58da43
     int ret;
be33da9a
 
     /* create input pads */
     for (seg = 0; seg < cat->nb_segments; seg++) {
         for (type = 0; type < TYPE_ALL; type++) {
             for (str = 0; str < cat->nb_streams[type]; str++) {
                 AVFilterPad pad = {
                     .type             = type,
                     .get_video_buffer = get_video_buffer,
                     .get_audio_buffer = get_audio_buffer,
b99f1303
                     .filter_frame     = filter_frame,
be33da9a
                 };
a7eabbb2
                 pad.name = av_asprintf("in%d:%c%d", seg, "va"[type], str);
1a58da43
                 if ((ret = ff_insert_inpad(ctx, ctx->nb_inputs, &pad)) < 0) {
                     av_freep(&pad.name);
                     return ret;
                 }
be33da9a
             }
         }
     }
     /* create output pads */
     for (type = 0; type < TYPE_ALL; type++) {
         for (str = 0; str < cat->nb_streams[type]; str++) {
             AVFilterPad pad = {
                 .type          = type,
                 .config_props  = config_output,
                 .request_frame = request_frame,
             };
a7eabbb2
             pad.name = av_asprintf("out:%c%d", "va"[type], str);
1a58da43
             if ((ret = ff_insert_outpad(ctx, ctx->nb_outputs, &pad)) < 0) {
                 av_freep(&pad.name);
                 return ret;
             }
be33da9a
         }
     }
 
     cat->in = av_calloc(ctx->nb_inputs, sizeof(*cat->in));
     if (!cat->in)
         return AVERROR(ENOMEM);
     cat->nb_in_active = ctx->nb_outputs;
     return 0;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
     ConcatContext *cat = ctx->priv;
     unsigned i;
 
     for (i = 0; i < ctx->nb_inputs; i++) {
         av_freep(&ctx->input_pads[i].name);
         ff_bufqueue_discard_all(&cat->in[i].queue);
     }
     for (i = 0; i < ctx->nb_outputs; i++)
         av_freep(&ctx->output_pads[i].name);
7df2981f
     av_freep(&cat->in);
be33da9a
 }
 
325f6e0a
 AVFilter ff_avf_concat = {
be33da9a
     .name          = "concat",
     .description   = NULL_IF_CONFIG_SMALL("Concatenate audio and video streams."),
     .init          = init,
     .uninit        = uninit,
     .query_formats = query_formats,
     .priv_size     = sizeof(ConcatContext),
2d9d4440
     .inputs        = NULL,
     .outputs       = NULL,
42d621d1
     .priv_class    = &concat_class,
73180f5b
     .flags         = AVFILTER_FLAG_DYNAMIC_INPUTS | AVFILTER_FLAG_DYNAMIC_OUTPUTS,
be33da9a
 };