]> git.sesse.net Git - ffmpeg/blob - libavfilter/split.c
Merge commit '48a5adab62bd2a553f5069d41fa632a0701835e5'
[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/internal.h"
29 #include "libavutil/mem.h"
30 #include "libavutil/opt.h"
31
32 #include "avfilter.h"
33 #include "audio.h"
34 #include "internal.h"
35 #include "video.h"
36
37 typedef struct SplitContext {
38     const AVClass *class;
39     int nb_outputs;
40 } SplitContext;
41
42 static int split_init(AVFilterContext *ctx, const char *args)
43 {
44     SplitContext *s = ctx->priv;
45     int i;
46
47     for (i = 0; i < s->nb_outputs; i++) {
48         char name[32];
49         AVFilterPad pad = { 0 };
50
51         snprintf(name, sizeof(name), "output%d", i);
52         pad.type = ctx->filter->inputs[0].type;
53         pad.name = av_strdup(name);
54
55         ff_insert_outpad(ctx, i, &pad);
56     }
57
58     return 0;
59 }
60
61 static void split_uninit(AVFilterContext *ctx)
62 {
63     int i;
64
65     for (i = 0; i < ctx->nb_outputs; i++)
66         av_freep(&ctx->output_pads[i].name);
67 }
68
69 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
70 {
71     AVFilterContext *ctx = inlink->dst;
72     int i, ret = AVERROR_EOF;
73
74     for (i = 0; i < ctx->nb_outputs; i++) {
75         AVFrame *buf_out;
76
77         if (ctx->outputs[i]->closed)
78             continue;
79         buf_out = av_frame_clone(frame);
80         if (!buf_out) {
81             ret = AVERROR(ENOMEM);
82             break;
83         }
84
85         ret = ff_filter_frame(ctx->outputs[i], buf_out);
86         if (ret < 0)
87             break;
88     }
89     av_frame_free(&frame);
90     return ret;
91 }
92
93 #define OFFSET(x) offsetof(SplitContext, x)
94 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
95 static const AVOption options[] = {
96     { "outputs", "Number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS },
97     { NULL },
98 };
99
100 static const AVClass split_class = {
101     .class_name = "split",
102     .item_name  = av_default_item_name,
103     .option     = options,
104     .version    = LIBAVUTIL_VERSION_INT,
105 };
106
107 static const AVClass asplit_class = {
108     .class_name = "asplit",
109     .item_name  = av_default_item_name,
110     .option     = options,
111     .version    = LIBAVUTIL_VERSION_INT,
112 };
113
114 static const AVFilterPad avfilter_vf_split_inputs[] = {
115     {
116         .name             = "default",
117         .type             = AVMEDIA_TYPE_VIDEO,
118         .get_video_buffer = ff_null_get_video_buffer,
119         .filter_frame     = filter_frame,
120     },
121     { NULL }
122 };
123
124 AVFilter avfilter_vf_split = {
125     .name      = "split",
126     .description = NULL_IF_CONFIG_SMALL("Pass on the input video to N outputs."),
127
128     .priv_size  = sizeof(SplitContext),
129     .priv_class = &split_class,
130
131     .init   = split_init,
132     .uninit = split_uninit,
133
134     .inputs    = avfilter_vf_split_inputs,
135     .outputs   = NULL,
136 };
137
138 static const AVFilterPad avfilter_af_asplit_inputs[] = {
139     {
140         .name             = "default",
141         .type             = AVMEDIA_TYPE_AUDIO,
142         .get_audio_buffer = ff_null_get_audio_buffer,
143         .filter_frame     = filter_frame,
144     },
145     { NULL }
146 };
147
148 AVFilter avfilter_af_asplit = {
149     .name        = "asplit",
150     .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
151
152     .priv_size  = sizeof(SplitContext),
153     .priv_class = &asplit_class,
154
155     .init   = split_init,
156     .uninit = split_uninit,
157
158     .inputs  = avfilter_af_asplit_inputs,
159     .outputs = NULL,
160 };