3 * copyright (c) 2007 Bobby Bingham
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 #include "allfilters.h"
30 /** list of registered filters, sorted by name */
31 static int filter_count
= 0;
32 static AVFilter
**filters
= NULL
;
34 AVFilterPicRef
*avfilter_ref_pic(AVFilterPicRef
*ref
, int pmask
)
36 AVFilterPicRef
*ret
= av_malloc(sizeof(AVFilterPicRef
));
37 memcpy(ret
, ref
, sizeof(AVFilterPicRef
));
39 ret
->pic
->refcount
++;
43 void avfilter_unref_pic(AVFilterPicRef
*ref
)
45 if(-- ref
->pic
->refcount
== 0)
46 ref
->pic
->free(ref
->pic
);
50 int avfilter_link(AVFilterContext
*src
, unsigned srcpad
,
51 AVFilterContext
*dst
, unsigned dstpad
)
56 if(src
->output_count
<= srcpad
|| dst
->input_count
<= dstpad
||
57 src
->outputs
[srcpad
] || dst
->inputs
[dstpad
])
60 src
->outputs
[srcpad
] =
61 dst
->inputs
[dstpad
] = link
= av_malloc(sizeof(AVFilterLink
));
65 link
->srcpad
= srcpad
;
66 link
->dstpad
= dstpad
;
69 /* find a format both filters support - TODO: auto-insert conversion filter */
71 if(src
->output_pads
[srcpad
].query_formats
)
72 fmts
[0] = src
->output_pads
[srcpad
].query_formats(link
);
74 fmts
[0] = avfilter_default_query_output_formats(link
);
75 fmts
[1] = dst
->input_pads
[dstpad
].query_formats(link
);
76 for(i
= 0; fmts
[0][i
] != -1; i
++)
77 for(j
= 0; fmts
[1][j
] != -1; j
++)
78 if(fmts
[0][i
] == fmts
[1][j
]) {
79 link
->format
= fmts
[0][i
];
86 if(link
->format
== -1) {
87 /* failed to find a format. fail at creating the link */
89 src
->outputs
[srcpad
] = NULL
;
90 dst
->inputs
[dstpad
] = NULL
;
94 if (src
->output_pads
[srcpad
].config_props
)
95 src
->output_pads
[srcpad
].config_props(link
);
97 avfilter_default_config_output_link(link
);
99 if (dst
->input_pads
[dstpad
].config_props
)
100 dst
->input_pads
[dstpad
].config_props(link
);
105 AVFilterPicRef
*avfilter_get_video_buffer(AVFilterLink
*link
, int perms
)
107 AVFilterPicRef
*ret
= NULL
;
109 if(link
->dst
->input_pads
[link
->dstpad
].get_video_buffer
)
110 ret
= link
->dst
->input_pads
[link
->dstpad
].get_video_buffer(link
, perms
);
113 ret
= avfilter_default_get_video_buffer(link
, perms
);
118 void avfilter_request_frame(AVFilterLink
*link
)
120 const AVFilterPad
*pad
= &link
->src
->output_pads
[link
->srcpad
];
122 if(pad
->request_frame
)
123 pad
->request_frame(link
);
124 else if(link
->src
->inputs
[0])
125 avfilter_request_frame(link
->src
->inputs
[0]);
128 /* XXX: should we do the duplicating of the picture ref here, instead of
129 * forcing the source filter to do it? */
130 void avfilter_start_frame(AVFilterLink
*link
, AVFilterPicRef
*picref
)
132 void (*start_frame
)(AVFilterLink
*, AVFilterPicRef
*);
134 start_frame
= link
->dst
->input_pads
[link
->dstpad
].start_frame
;
136 start_frame
= avfilter_default_start_frame
;
138 start_frame(link
, picref
);
141 void avfilter_end_frame(AVFilterLink
*link
)
143 void (*end_frame
)(AVFilterLink
*);
145 end_frame
= link
->dst
->input_pads
[link
->dstpad
].end_frame
;
147 end_frame
= avfilter_default_end_frame
;
152 void avfilter_draw_slice(AVFilterLink
*link
, uint8_t *data
[4], int y
, int h
)
154 if(!link
->dst
->input_pads
[link
->dstpad
].draw_slice
)
157 link
->dst
->input_pads
[link
->dstpad
].draw_slice(link
, data
, y
, h
);
160 static int filter_cmp(const void *aa
, const void *bb
)
162 const AVFilter
*a
= *(const AVFilter
**)aa
, *b
= *(const AVFilter
**)bb
;
163 return strcmp(a
->name
, b
->name
);
166 AVFilter
*avfilter_get_by_name(char *name
)
168 AVFilter key
= { .name
= name
, };
169 AVFilter
*key2
= &key
;
172 ret
= bsearch(&key2
, filters
, filter_count
, sizeof(AVFilter
**), filter_cmp
);
178 /* FIXME: insert in order, rather than insert at end + resort */
179 void avfilter_register(AVFilter
*filter
)
181 filters
= av_realloc(filters
, sizeof(AVFilter
*) * (filter_count
+1));
182 filters
[filter_count
] = filter
;
183 qsort(filters
, ++filter_count
, sizeof(AVFilter
**), filter_cmp
);
186 void avfilter_init(void)
188 avfilter_register(&vsrc_dummy
);
189 avfilter_register(&vsrc_ppm
);
190 avfilter_register(&vf_crop
);
191 avfilter_register(&vf_graph
);
192 avfilter_register(&vf_passthrough
);
193 avfilter_register(&vf_rgb2bgr
);
194 avfilter_register(&vf_slicify
);
195 avfilter_register(&vo_sdl
);
198 void avfilter_uninit(void)
204 static int pad_count(const AVFilterPad
*pads
)
206 AVFilterPad
*p
= (AVFilterPad
*) pads
;
209 for(count
= 0; p
->name
; count
++) p
++;
213 static const char *filter_name(void *p
)
215 AVFilterContext
*filter
= p
;
216 return filter
->filter
->name
;
219 AVFilterContext
*avfilter_create(AVFilter
*filter
, char *inst_name
)
221 AVFilterContext
*ret
= av_malloc(sizeof(AVFilterContext
));
223 ret
->av_class
= av_mallocz(sizeof(AVClass
));
224 ret
->av_class
->item_name
= filter_name
;
225 ret
->filter
= filter
;
226 ret
->name
= inst_name ?
av_strdup(inst_name
) : NULL
;
227 ret
->priv
= av_mallocz(filter
->priv_size
);
229 ret
->input_count
= pad_count(filter
->inputs
);
230 ret
->input_pads
= av_malloc(sizeof(AVFilterPad
) * ret
->input_count
);
231 memcpy(ret
->input_pads
, filter
->inputs
, sizeof(AVFilterPad
)*ret
->input_count
);
232 ret
->inputs
= av_mallocz(sizeof(AVFilterLink
*) * ret
->input_count
);
234 ret
->output_count
= pad_count(filter
->outputs
);
235 ret
->output_pads
= av_malloc(sizeof(AVFilterPad
) * ret
->output_count
);
236 memcpy(ret
->output_pads
, filter
->outputs
, sizeof(AVFilterPad
)*ret
->output_count
);
237 ret
->outputs
= av_mallocz(sizeof(AVFilterLink
*) * ret
->output_count
);
242 void avfilter_destroy(AVFilterContext
*filter
)
246 if(filter
->filter
->uninit
)
247 filter
->filter
->uninit(filter
);
249 for(i
= 0; i
< filter
->input_count
; i
++) {
250 if(filter
->inputs
[i
])
251 filter
->inputs
[i
]->src
->outputs
[filter
->inputs
[i
]->srcpad
] = NULL
;
252 av_free(filter
->inputs
[i
]);
254 for(i
= 0; i
< filter
->output_count
; i
++) {
255 if(filter
->outputs
[i
])
256 filter
->outputs
[i
]->dst
->inputs
[filter
->outputs
[i
]->dstpad
] = NULL
;
257 av_free(filter
->outputs
[i
]);
260 av_free(filter
->name
);
261 av_free(filter
->input_pads
);
262 av_free(filter
->output_pads
);
263 av_free(filter
->inputs
);
264 av_free(filter
->outputs
);
265 av_free(filter
->priv
);
266 av_free(filter
->av_class
);
270 AVFilterContext
*avfilter_create_by_name(char *name
, char *inst_name
)
274 if(!(filt
= avfilter_get_by_name(name
))) return NULL
;
275 return avfilter_create(filt
, inst_name
);
278 int avfilter_init_filter(AVFilterContext
*filter
, const char *args
, void *opaque
)
282 if(filter
->filter
->init
)
283 if((ret
= filter
->filter
->init(filter
, args
, opaque
))) return ret
;
287 int *avfilter_make_format_list(int len
, ...)
292 ret
= av_malloc(sizeof(int) * (len
+ 1));
294 for(i
= 0; i
< len
; i
++)
295 ret
[i
] = va_arg(vl
, int);