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

162 lines
4.0 KiB
C
Raw Normal View History

2011-05-21 16:46:11 +02: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 14:03:42 -04:00
* audio and video splitter
2011-05-21 16:46:11 +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"
2012-05-21 14:03:42 -04:00
#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-21 14:03:42 -04: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-07-08 17:29:42 +02:00
int i, ret = 0;
2012-07-08 17:29:42 +02:00
for (i = 0; i < ctx->nb_outputs; i++) {
2012-11-28 08:41:07 +01:00
AVFrame *buf_out = av_frame_clone(frame);
if (!buf_out) {
ret = AVERROR(ENOMEM);
2012-07-14 09:25:33 +02:00
break;
}
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[] = {
{ "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,
};
static const AVFilterPad avfilter_vf_split_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.filter_frame = filter_frame,
},
{ NULL }
};
AVFilter ff_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
};
2012-05-21 14:03:42 -04:00
static const AVFilterPad avfilter_af_asplit_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.get_audio_buffer = ff_null_get_audio_buffer,
.filter_frame = filter_frame,
},
{ NULL }
};
AVFilter ff_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,
2012-05-21 14:03:42 -04:00
.init = split_init,
.uninit = split_uninit,
.inputs = avfilter_af_asplit_inputs,
.outputs = NULL,
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
2012-05-21 14:03:42 -04:00
};