]> git.sesse.net Git - ffmpeg/blob - libavfilter/split.c
Merge commit '618d02c1fa9e74d490cace64a7d15762656b521c'
[ffmpeg] / libavfilter / split.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * audio and video splitter
24  */
25
26 #include <stdio.h>
27
28 #include "libavutil/attributes.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/mem.h"
31 #include "libavutil/opt.h"
32
33 #include "avfilter.h"
34 #include "audio.h"
35 #include "filters.h"
36 #include "formats.h"
37 #include "internal.h"
38 #include "video.h"
39
40 typedef struct SplitContext {
41     const AVClass *class;
42     int nb_outputs;
43 } SplitContext;
44
45 static av_cold int split_init(AVFilterContext *ctx)
46 {
47     SplitContext *s = ctx->priv;
48     int i, ret;
49
50     for (i = 0; i < s->nb_outputs; i++) {
51         char name[32];
52         AVFilterPad pad = { 0 };
53
54         snprintf(name, sizeof(name), "output%d", i);
55         pad.type = ctx->filter->inputs[0].type;
56         pad.name = av_strdup(name);
57         if (!pad.name)
58             return AVERROR(ENOMEM);
59
60         if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
61             av_freep(&pad.name);
62             return ret;
63         }
64     }
65
66     return 0;
67 }
68
69 static av_cold void split_uninit(AVFilterContext *ctx)
70 {
71     int i;
72
73     for (i = 0; i < ctx->nb_outputs; i++)
74         av_freep(&ctx->output_pads[i].name);
75 }
76
77 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
78 {
79     AVFilterContext *ctx = inlink->dst;
80     int i, ret = AVERROR_EOF;
81
82     for (i = 0; i < ctx->nb_outputs; i++) {
83         AVFrame *buf_out;
84
85         if (ff_outlink_get_status(ctx->outputs[i]))
86             continue;
87         buf_out = av_frame_clone(frame);
88         if (!buf_out) {
89             ret = AVERROR(ENOMEM);
90             break;
91         }
92
93         ret = ff_filter_frame(ctx->outputs[i], buf_out);
94         if (ret < 0)
95             break;
96     }
97     av_frame_free(&frame);
98     return ret;
99 }
100
101 #define OFFSET(x) offsetof(SplitContext, x)
102 #define FLAGS (AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_FILTERING_PARAM)
103 static const AVOption options[] = {
104     { "outputs", "set number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS },
105     { NULL }
106 };
107
108 #define split_options options
109 AVFILTER_DEFINE_CLASS(split);
110
111 #define asplit_options options
112 AVFILTER_DEFINE_CLASS(asplit);
113
114 static const AVFilterPad avfilter_vf_split_inputs[] = {
115     {
116         .name         = "default",
117         .type         = AVMEDIA_TYPE_VIDEO,
118         .filter_frame = filter_frame,
119     },
120     { NULL }
121 };
122
123 AVFilter ff_vf_split = {
124     .name        = "split",
125     .description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
126     .priv_size   = sizeof(SplitContext),
127     .priv_class  = &split_class,
128     .init        = split_init,
129     .uninit      = split_uninit,
130     .inputs      = avfilter_vf_split_inputs,
131     .outputs     = NULL,
132     .flags       = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
133 };
134
135 static const AVFilterPad avfilter_af_asplit_inputs[] = {
136     {
137         .name         = "default",
138         .type         = AVMEDIA_TYPE_AUDIO,
139         .filter_frame = filter_frame,
140     },
141     { NULL }
142 };
143
144 AVFilter ff_af_asplit = {
145     .name        = "asplit",
146     .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
147     .priv_size   = sizeof(SplitContext),
148     .priv_class  = &asplit_class,
149     .init        = split_init,
150     .uninit      = split_uninit,
151     .inputs      = avfilter_af_asplit_inputs,
152     .outputs     = NULL,
153     .flags       = AVFILTER_FLAG_DYNAMIC_OUTPUTS,
154 };