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
4.4 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"
2019-09-30 16:39:39 +02:00
#include "libavutil/avstring.h"
2012-08-06 16:49:32 +03:00
#include "libavutil/internal.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"
2018-11-03 18:17:30 +01:00
#include "filters.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, ret;
2013-02-25 21:21:29 +01:00
for (i = 0; i < s->nb_outputs; i++) {
AVFilterPad pad = { 0 };
2012-05-19 18:12:09 +02:00
pad.type = ctx->filter->inputs[0].type;
2019-09-30 16:39:39 +02:00
pad.name = av_asprintf("output%d", i);
2015-01-06 09:42:59 +00:00
if (!pad.name)
return AVERROR(ENOMEM);
if ((ret = ff_append_outpad_free_name(ctx, &pad)) < 0)
return ret;
}
return 0;
}
2022-03-01 14:15:31 +01:00
static int activate(AVFilterContext *ctx)
2011-05-21 16:46:11 +02:00
{
2022-03-01 14:15:31 +01:00
AVFilterLink *inlink = ctx->inputs[0];
AVFrame *in;
2023-07-14 00:42:02 +02:00
int status, ret, nb_eofs = 0;
2022-03-01 14:15:31 +01:00
int64_t pts;
2023-07-14 00:42:02 +02:00
for (int i = 0; i < ctx->nb_outputs; i++)
nb_eofs += ff_outlink_get_status(ctx->outputs[i]) == AVERROR_EOF;
if (nb_eofs == ctx->nb_outputs) {
ff_inlink_set_status(inlink, AVERROR_EOF);
return 0;
2022-03-01 14:15:31 +01:00
}
2012-08-20 19:18:46 +02:00
2022-03-01 14:15:31 +01:00
ret = ff_inlink_consume_frame(inlink, &in);
if (ret < 0)
return ret;
if (ret > 0) {
for (int i = 0; i < ctx->nb_outputs; i++) {
AVFrame *buf_out;
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
buf_out = av_frame_clone(in);
if (!buf_out) {
ret = AVERROR(ENOMEM);
break;
}
ret = ff_filter_frame(ctx->outputs[i], buf_out);
if (ret < 0)
break;
2012-11-29 01:20:10 +01:00
}
2022-03-01 14:15:31 +01:00
av_frame_free(&in);
2012-07-14 09:25:33 +02:00
if (ret < 0)
2022-03-01 14:15:31 +01:00
return ret;
}
if (ff_inlink_acknowledge_status(inlink, &status, &pts)) {
for (int i = 0; i < ctx->nb_outputs; i++) {
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
ff_outlink_set_status(ctx->outputs[i], status, pts);
}
return 0;
2012-07-14 09:25:33 +02:00
}
2022-03-01 14:15:31 +01:00
for (int i = 0; i < ctx->nb_outputs; i++) {
if (ff_outlink_get_status(ctx->outputs[i]))
continue;
if (ff_outlink_frame_wanted(ctx->outputs[i])) {
ff_inlink_request_frame(inlink);
return 0;
}
}
return FFERROR_NOT_READY;
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 | AV_OPT_FLAG_FILTERING_PARAM)
2013-02-25 21:21:29 +01:00
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-09-07 12:13:50 +00:00
{ NULL }
2013-02-25 21:21:29 +01:00
};
2021-09-10 22:35:42 +02:00
AVFILTER_DEFINE_CLASS_EXT(split, "(a)split", options);
2013-02-25 21:21:29 +01:00
2021-04-19 18:33:56 +02:00
const AVFilter ff_vf_split = {
2013-09-07 12:13:50 +00:00
.name = "split",
2013-04-09 22:09:20 +02: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,
2022-03-01 14:15:31 +01:00
.activate = activate,
FILTER_INPUTS(ff_video_default_filterpad),
2013-09-07 12:13:50 +00:00
.outputs = NULL,
2021-11-22 14:39:11 +01:00
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS | AVFILTER_FLAG_METADATA_ONLY,
2011-05-21 16:46:11 +02:00
};
2021-04-19 18:33:56 +02:00
const 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."),
2021-09-10 22:35:42 +02:00
.priv_class = &split_class,
2013-09-07 12:13:50 +00:00
.priv_size = sizeof(SplitContext),
.init = split_init,
2022-03-01 14:15:31 +01:00
.activate = activate,
FILTER_INPUTS(ff_audio_default_filterpad),
2013-09-07 12:13:50 +00:00
.outputs = NULL,
2021-11-22 14:39:11 +01:00
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS | AVFILTER_FLAG_METADATA_ONLY,
};