2011-05-21 14:46:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Bobby Bingham
|
|
|
|
*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav 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.
|
|
|
|
*
|
|
|
|
* Libav 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 Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
2012-05-21 18:03:42 +00:00
|
|
|
* audio and video splitter
|
2011-05-21 14:46:11 +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-21 18:03:42 +00:00
|
|
|
#include "audio.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-21 18:03:42 +00:00
|
|
|
pad.type = ctx->filter->inputs[0].type;
|
2012-04-27 05:41:32 +00:00
|
|
|
pad.name = av_strdup(name);
|
|
|
|
|
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-07-08 15:29:42 +00:00
|
|
|
int i, ret = 0;
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2012-07-08 15:29:42 +00:00
|
|
|
for (i = 0; i < ctx->nb_outputs; i++) {
|
2012-11-28 07:41:07 +00:00
|
|
|
AVFrame *buf_out = av_frame_clone(frame);
|
2012-11-27 06:49:45 +00:00
|
|
|
if (!buf_out) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
2012-07-14 07:25:33 +00:00
|
|
|
break;
|
2012-11-27 06:49:45 +00:00
|
|
|
}
|
2012-04-27 05:41:32 +00:00
|
|
|
|
2012-11-27 06:49:45 +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[] = {
|
|
|
|
{ "outputs", "Number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS },
|
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass split_class = {
|
|
|
|
.class_name = "split",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const AVClass asplit_class = {
|
|
|
|
.class_name = "asplit",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = options,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
static const AVFilterPad avfilter_vf_split_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO,
|
|
|
|
.get_video_buffer = ff_null_get_video_buffer,
|
2012-11-27 06:49:45 +00:00
|
|
|
.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 = {
|
2011-05-21 14:46:11 +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."),
|
2011-05-21 14:46:11 +00:00
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
.priv_size = sizeof(SplitContext),
|
|
|
|
.priv_class = &split_class,
|
|
|
|
|
2012-04-27 05:41:32 +00:00
|
|
|
.init = split_init,
|
|
|
|
.uninit = split_uninit,
|
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
.inputs = avfilter_vf_split_inputs,
|
2012-09-16 11:58:49 +00:00
|
|
|
.outputs = NULL,
|
2013-03-28 07:51:36 +00:00
|
|
|
|
|
|
|
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
|
2011-05-21 14:46:11 +00:00
|
|
|
};
|
2012-05-21 18:03:42 +00:00
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
static const AVFilterPad avfilter_af_asplit_inputs[] = {
|
|
|
|
{
|
|
|
|
.name = "default",
|
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
|
|
|
.get_audio_buffer = ff_null_get_audio_buffer,
|
2012-11-27 06:49:45 +00:00
|
|
|
.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",
|
|
|
|
.description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
|
|
|
|
|
2013-02-25 20:21:29 +00:00
|
|
|
.priv_size = sizeof(SplitContext),
|
|
|
|
.priv_class = &asplit_class,
|
|
|
|
|
2012-05-21 18:03:42 +00:00
|
|
|
.init = split_init,
|
|
|
|
.uninit = split_uninit,
|
|
|
|
|
2012-07-24 13:14:01 +00:00
|
|
|
.inputs = avfilter_af_asplit_inputs,
|
2012-09-16 11:58:49 +00:00
|
|
|
.outputs = NULL,
|
2013-03-28 07:51:36 +00:00
|
|
|
|
|
|
|
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
|
2012-05-21 18:03:42 +00:00
|
|
|
};
|