2011-05-21 14:46:11 +00:00
|
|
|
/*
|
2011-05-21 23:18:59 +00:00
|
|
|
* Copyright (c) 2007 Bobby Bingham
|
2011-05-21 14:46:11 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-05-21 23:18:59 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2012-05-18 17:41:44 +00:00
|
|
|
* audio and video splitter
|
2011-05-21 23:18:59 +00:00
|
|
|
*/
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-04-30 16:30:02 +00:00
|
|
|
#include "libavutil/attributes.h"
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/internal.h"
|
|
|
|
#include "libavutil/mem.h"
|
2013-02-25 20:21:29 +00:00
|
|
|
#include "libavutil/opt.h"
|
|
|
|
|
2011-05-21 14:46:11 +00:00
|
|
|
#include "avfilter.h"
|
2012-05-18 17:38:38 +00:00
|
|
|
#include "audio.h"
|
2016-02-05 08:11:55 +00:00
|
|
|
#include "formats.h"
|
2012-05-30 08:31:48 +00:00
|
|
|
#include "internal.h"
|
2012-05-19 08:37:56 +00:00
|
|
|
#include "video.h"
|
2011-05-21 14:46:11 +00:00
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
typedef struct SplitContext {
|
|
|
|
const AVClass *class;
|
|
|
|
int nb_outputs;
|
|
|
|
} SplitContext;
|
|
|
|
|
2013-04-30 16:30:02 +00:00
|
|
|
static av_cold int split_init(AVFilterContext *ctx)
|
2012-04-27 05:41:32 +00:00
|
|
|
{
|
2013-02-25 20:21:29 +00:00
|
|
|
SplitContext *s = ctx->priv;
|
|
|
|
int i;
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
for (i = 0; i < s->nb_outputs; i++) {
|
2012-04-27 05:41:32 +00:00
|
|
|
char name[32];
|
|
|
|
AVFilterPad pad = { 0 };
|
|
|
|
|
|
|
|
snprintf(name, sizeof(name), "output%d", i);
|
2012-05-19 16:12:09 +00:00
|
|
|
pad.type = ctx->filter->inputs[0].type;
|
2012-04-27 05:41:32 +00:00
|
|
|
pad.name = av_strdup(name);
|
2015-01-06 09:42:59 +00:00
|
|
|
if (!pad.name)
|
|
|
|
return AVERROR(ENOMEM);
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2012-05-30 08:31:48 +00:00
|
|
|
ff_insert_outpad(ctx, i, &pad);
|
2012-04-27 05:41:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-04-30 16:30:02 +00:00
|
|
|
static av_cold void split_uninit(AVFilterContext *ctx)
|
2012-04-27 05:41:32 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
for (i = 0; i < ctx->nb_outputs; i++)
|
2012-04-27 05:41:32 +00:00
|
|
|
av_freep(&ctx->output_pads[i].name);
|
|
|
|
}
|
|
|
|
|
2012-11-28 07:41:07 +00:00
|
|
|
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
|
2011-05-21 14:46:11 +00:00
|
|
|
{
|
2012-04-27 05:41:32 +00:00
|
|
|
AVFilterContext *ctx = inlink->dst;
|
2012-08-20 17:18:46 +00:00
|
|
|
int i, ret = AVERROR_EOF;
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
for (i = 0; i < ctx->nb_outputs; i++) {
|
2013-03-10 00:30:30 +00:00
|
|
|
AVFrame *buf_out;
|
2012-08-20 17:18:46 +00:00
|
|
|
|
2015-09-24 08:07:42 +00:00
|
|
|
if (ctx->outputs[i]->status)
|
2012-08-20 17:18:46 +00:00
|
|
|
continue;
|
2013-03-10 00:30:30 +00:00
|
|
|
buf_out = av_frame_clone(frame);
|
2012-11-29 00:20:10 +00:00
|
|
|
if (!buf_out) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
2012-07-14 07:25:33 +00:00
|
|
|
break;
|
2012-11-29 00:20:10 +00:00
|
|
|
}
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2012-11-29 00:20:10 +00:00
|
|
|
ret = ff_filter_frame(ctx->outputs[i], buf_out);
|
2012-07-14 07:25:33 +00:00
|
|
|
if (ret < 0)
|
|
|
|
break;
|
|
|
|
}
|
2012-11-28 07:41:07 +00:00
|
|
|
av_frame_free(&frame);
|
2012-07-14 07:25:33 +00:00
|
|
|
return ret;
|
2011-05-21 14:46:11 +00:00
|
|
|
}
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
#define OFFSET(x) offsetof(SplitContext, x)
|
|
|
|
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
|
|
|
|
static const AVOption options[] = {
|
2013-04-14 21:21:11 +00:00
|
|
|
{ "outputs", "set number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS },
|
2013-09-07 12:13:50 +00:00
|
|
|
{ NULL }
|
2013-02-25 20:21:29 +00:00
|
|
|
};
|
|
|
|
|
2013-04-15 21:59:47 +00:00
|
|
|
#define split_options options
|
|
|
|
AVFILTER_DEFINE_CLASS(split);
|
2013-02-25 20:21:29 +00:00
|
|
|
|
2013-04-15 21:59:47 +00:00
|
|
|
#define asplit_options options
|
|
|
|
AVFILTER_DEFINE_CLASS(asplit);
|
2013-02-25 20:21:29 +00:00
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
static const AVFilterPad avfilter_vf_split_inputs[] = {
|
|
|
|
{
|
2013-09-07 12:13:50 +00:00
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 13:14:01 +00:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2013-10-28 06:44:24 +00:00
|
|
|
AVFilter ff_vf_split = {
|
2013-09-07 12:13:50 +00:00
|
|
|
.name = "split",
|
2013-04-09 20:09:20 +00:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
|
2013-09-07 12:13:50 +00:00
|
|
|
.priv_size = sizeof(SplitContext),
|
|
|
|
.priv_class = &split_class,
|
|
|
|
.init = split_init,
|
|
|
|
.uninit = split_uninit,
|
|
|
|
.inputs = avfilter_vf_split_inputs,
|
|
|
|
.outputs = NULL,
|
|
|
|
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
|
2011-05-21 14:46:11 +00:00
|
|
|
};
|
2012-05-18 17:38:38 +00:00
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
static const AVFilterPad avfilter_af_asplit_inputs[] = {
|
|
|
|
{
|
2013-09-07 12:13:50 +00:00
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
|
|
.filter_frame = filter_frame,
|
2012-07-24 13:14:01 +00:00
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2013-10-28 06:44:24 +00:00
|
|
|
AVFilter ff_af_asplit = {
|
2012-05-21 18:03:42 +00:00
|
|
|
.name = "asplit",
|
2012-05-18 17:38:38 +00:00
|
|
|
.description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
|
2013-09-07 12:13:50 +00:00
|
|
|
.priv_size = sizeof(SplitContext),
|
|
|
|
.priv_class = &asplit_class,
|
|
|
|
.init = split_init,
|
|
|
|
.uninit = split_uninit,
|
2016-02-05 08:11:55 +00:00
|
|
|
.query_formats = ff_query_formats_all,
|
2013-09-07 12:13:50 +00:00
|
|
|
.inputs = avfilter_af_asplit_inputs,
|
|
|
|
.outputs = NULL,
|
|
|
|
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
|
2012-05-18 17:38:38 +00:00
|
|
|
};
|