FFmpeg  2.1.1
split.c
Go to the documentation of this file.
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 "internal.h"
36 #include "video.h"
37 
38 typedef struct SplitContext {
39  const AVClass *class;
41 } SplitContext;
42 
44 {
45  SplitContext *s = ctx->priv;
46  int i;
47 
48  for (i = 0; i < s->nb_outputs; i++) {
49  char name[32];
50  AVFilterPad pad = { 0 };
51 
52  snprintf(name, sizeof(name), "output%d", i);
53  pad.type = ctx->filter->inputs[0].type;
54  pad.name = av_strdup(name);
55 
56  ff_insert_outpad(ctx, i, &pad);
57  }
58 
59  return 0;
60 }
61 
63 {
64  int i;
65 
66  for (i = 0; i < ctx->nb_outputs; i++)
67  av_freep(&ctx->output_pads[i].name);
68 }
69 
70 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
71 {
72  AVFilterContext *ctx = inlink->dst;
73  int i, ret = AVERROR_EOF;
74 
75  for (i = 0; i < ctx->nb_outputs; i++) {
76  AVFrame *buf_out;
77 
78  if (ctx->outputs[i]->closed)
79  continue;
80  buf_out = av_frame_clone(frame);
81  if (!buf_out) {
82  ret = AVERROR(ENOMEM);
83  break;
84  }
85 
86  ret = ff_filter_frame(ctx->outputs[i], buf_out);
87  if (ret < 0)
88  break;
89  }
90  av_frame_free(&frame);
91  return ret;
92 }
93 
94 #define OFFSET(x) offsetof(SplitContext, x)
95 #define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_VIDEO_PARAM
96 static const AVOption options[] = {
97  { "outputs", "set number of outputs", OFFSET(nb_outputs), AV_OPT_TYPE_INT, { .i64 = 2 }, 1, INT_MAX, FLAGS },
98  { NULL }
99 };
100 
101 #define split_options options
103 
104 #define asplit_options options
105 AVFILTER_DEFINE_CLASS(asplit);
106 
108  {
109  .name = "default",
110  .type = AVMEDIA_TYPE_VIDEO,
111  .filter_frame = filter_frame,
112  },
113  { NULL }
114 };
115 
117  .name = "split",
118  .description = NULL_IF_CONFIG_SMALL("Pass on the input to N video outputs."),
119  .priv_size = sizeof(SplitContext),
120  .priv_class = &split_class,
121  .init = split_init,
122  .uninit = split_uninit,
123  .inputs = avfilter_vf_split_inputs,
124  .outputs = NULL,
126 };
127 
129  {
130  .name = "default",
131  .type = AVMEDIA_TYPE_AUDIO,
132  .filter_frame = filter_frame,
133  },
134  { NULL }
135 };
136 
138  .name = "asplit",
139  .description = NULL_IF_CONFIG_SMALL("Pass on the audio input to N audio outputs."),
140  .priv_size = sizeof(SplitContext),
141  .priv_class = &asplit_class,
142  .init = split_init,
143  .uninit = split_uninit,
144  .inputs = avfilter_af_asplit_inputs,
145  .outputs = NULL,
147 };
const char * name
Definition: avisynth_c.h:675
const char * s
Definition: avisynth_c.h:668
This structure describes decoded (raw) audio or video data.
Definition: frame.h:96
AVOption.
Definition: opt.h:253
const char * name
Filter name.
Definition: avfilter.h:468
void * priv
private data for use by the filter
Definition: avfilter.h:648
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:111
char * av_strdup(const char *s) av_malloc_attrib
Duplicate the string s.
Definition: mem.c:256
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: split.c:70
enum AVMediaType type
AVFilterPad type.
Definition: internal.h:71
static av_cold void split_uninit(AVFilterContext *ctx)
Definition: split.c:62
#define av_cold
Definition: avcodec.h:653
static av_cold int split_init(AVFilterContext *ctx)
Definition: split.c:43
void av_freep(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:234
const char * name
Pad name.
Definition: internal.h:66
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition: avfilter.c:1118
const AVFilterPad * inputs
List of inputs, terminated by a zeroed element.
Definition: avfilter.h:484
static av_cold int uninit(AVCodecContext *avctx)
Definition: crystalhd.c:334
AVFilter avfilter_vf_split
Definition: split.c:116
#define AVFILTER_FLAG_DYNAMIC_OUTPUTS
The number of the filter outputs is not determined just by AVFilter.outputs.
Definition: avfilter.h:431
const OptionDef options[]
Definition: ffserver.c:4682
static AVFrame * frame
Definition: demuxing.c:51
A filter pad used for either input or output.
Definition: internal.h:60
#define FLAGS
Definition: split.c:95
unsigned nb_outputs
number of output pads
Definition: avfilter.h:646
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:151
#define OFFSET(x)
Definition: split.c:94
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:123
static const AVFilterPad avfilter_af_asplit_inputs[]
Definition: split.c:128
static char * split(char *message, char delim)
Definition: af_channelmap.c:82
common internal API header
ret
Definition: avfilter.c:961
const AVFilter * filter
the AVFilter of which this is an instance
Definition: avfilter.h:630
Main libavfilter public API header.
AVFilterLink ** outputs
array of pointers to output links
Definition: avfilter.h:642
static const AVFilterPad avfilter_vf_split_inputs[]
Definition: split.c:107
Describe the class of an AVClass context structure.
Definition: log.h:50
Filter definition.
Definition: avfilter.h:464
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:102
#define snprintf
Definition: snprintf.h:34
static int flags
Definition: cpu.c:45
#define AVERROR_EOF
AVFrame * av_frame_clone(AVFrame *src)
Create a new frame that references the same data as src.
Definition: frame.c:338
int nb_outputs
Definition: split.c:40
#define AVFILTER_DEFINE_CLASS(fname)
Definition: internal.h:301
AVFilterPad * output_pads
array of output pads
Definition: avfilter.h:641
#define AVERROR(e)
An instance of a filter.
Definition: avfilter.h:627
AVFilter avfilter_af_asplit
Definition: split.c:137
internal API functions
static int ff_insert_outpad(AVFilterContext *f, unsigned index, AVFilterPad *p)
Insert a new output pad for the filter.
Definition: internal.h:271