1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-24 04:44:54 +02:00
Files
FFmpeg/libavfilter/split.c
T

158 lines
3.9 KiB
C
Raw Normal View History

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