2008-02-15 21:33:56 +00:00
|
|
|
/*
|
2008-02-15 21:40:40 +00:00
|
|
|
* filter layer
|
2010-11-28 10:22:58 +00:00
|
|
|
* Copyright (c) 2007 Bobby Bingham
|
2008-02-15 21:33:56 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2008-02-15 21:33:56 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2008-02-15 21:33:56 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2008-02-15 21:33:56 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2008-02-15 21:33:56 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2009-10-06 22:07:32 +00:00
|
|
|
/* #define DEBUG */
|
|
|
|
|
2012-08-06 13:49:32 +00:00
|
|
|
#include "libavutil/common.h"
|
2010-01-31 16:33:29 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
2010-10-10 22:26:14 +00:00
|
|
|
#include "libavutil/rational.h"
|
2011-02-07 13:37:08 +00:00
|
|
|
#include "libavutil/audioconvert.h"
|
2012-05-07 08:51:23 +00:00
|
|
|
|
2008-02-15 21:33:56 +00:00
|
|
|
#include "avfilter.h"
|
2012-05-06 05:00:22 +00:00
|
|
|
#include "formats.h"
|
2010-07-18 22:37:39 +00:00
|
|
|
#include "internal.h"
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2008-08-08 18:43:38 +00:00
|
|
|
unsigned avfilter_version(void) {
|
|
|
|
return LIBAVFILTER_VERSION_INT;
|
|
|
|
}
|
|
|
|
|
2010-01-03 14:31:25 +00:00
|
|
|
const char *avfilter_configuration(void)
|
2009-11-18 17:15:17 +00:00
|
|
|
{
|
2011-03-14 21:23:10 +00:00
|
|
|
return LIBAV_CONFIGURATION;
|
2009-11-18 17:15:17 +00:00
|
|
|
}
|
|
|
|
|
2010-01-03 14:31:25 +00:00
|
|
|
const char *avfilter_license(void)
|
2009-11-18 17:15:17 +00:00
|
|
|
{
|
|
|
|
#define LICENSE_PREFIX "libavfilter license: "
|
2011-03-14 21:27:40 +00:00
|
|
|
return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
|
2009-11-18 17:15:17 +00:00
|
|
|
}
|
|
|
|
|
2012-05-30 08:31:48 +00:00
|
|
|
void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
|
|
|
|
AVFilterPad **pads, AVFilterLink ***links,
|
|
|
|
AVFilterPad *newpad)
|
2008-02-15 21:37:22 +00:00
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
idx = FFMIN(idx, *count);
|
|
|
|
|
|
|
|
*pads = av_realloc(*pads, sizeof(AVFilterPad) * (*count + 1));
|
|
|
|
*links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1));
|
|
|
|
memmove(*pads +idx+1, *pads +idx, sizeof(AVFilterPad) * (*count-idx));
|
|
|
|
memmove(*links+idx+1, *links+idx, sizeof(AVFilterLink*) * (*count-idx));
|
|
|
|
memcpy(*pads+idx, newpad, sizeof(AVFilterPad));
|
|
|
|
(*links)[idx] = NULL;
|
|
|
|
|
2010-08-19 14:32:31 +00:00
|
|
|
(*count)++;
|
|
|
|
for (i = idx+1; i < *count; i++)
|
|
|
|
if (*links[i])
|
|
|
|
(*(unsigned *)((uint8_t *) *links[i] + padidx_off))++;
|
2008-02-15 21:37:22 +00:00
|
|
|
}
|
|
|
|
|
2008-02-15 21:33:56 +00:00
|
|
|
int avfilter_link(AVFilterContext *src, unsigned srcpad,
|
|
|
|
AVFilterContext *dst, unsigned dstpad)
|
|
|
|
{
|
|
|
|
AVFilterLink *link;
|
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
|
|
|
|
src->outputs[srcpad] || dst->inputs[dstpad])
|
2008-02-15 21:33:56 +00:00
|
|
|
return -1;
|
|
|
|
|
2011-01-13 01:00:36 +00:00
|
|
|
if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
|
|
|
|
av_log(src, AV_LOG_ERROR,
|
|
|
|
"Media type mismatch between the '%s' filter output pad %d and the '%s' filter input pad %d\n",
|
|
|
|
src->name, srcpad, dst->name, dstpad);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:33:56 +00:00
|
|
|
src->outputs[srcpad] =
|
2008-02-15 21:41:19 +00:00
|
|
|
dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink));
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2008-02-15 21:36:29 +00:00
|
|
|
link->src = src;
|
|
|
|
link->dst = dst;
|
2010-09-27 16:58:48 +00:00
|
|
|
link->srcpad = &src->output_pads[srcpad];
|
|
|
|
link->dstpad = &dst->input_pads[dstpad];
|
2010-07-22 11:12:47 +00:00
|
|
|
link->type = src->output_pads[srcpad].type;
|
2010-11-12 11:04:40 +00:00
|
|
|
assert(PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
|
2010-07-22 11:12:47 +00:00
|
|
|
link->format = -1;
|
2008-02-15 21:37:18 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:39:19 +00:00
|
|
|
int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
|
2010-09-27 21:57:16 +00:00
|
|
|
unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
|
2008-02-15 21:39:19 +00:00
|
|
|
{
|
2010-09-27 17:28:53 +00:00
|
|
|
int ret;
|
2010-09-27 16:58:48 +00:00
|
|
|
unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
|
|
|
|
|
2012-06-25 04:31:38 +00:00
|
|
|
av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
|
2010-01-13 00:16:52 +00:00
|
|
|
"between the filter '%s' and the filter '%s'\n",
|
|
|
|
filt->name, link->src->name, link->dst->name);
|
2008-02-15 21:39:19 +00:00
|
|
|
|
2010-09-27 16:58:48 +00:00
|
|
|
link->dst->inputs[dstpad_idx] = NULL;
|
2010-09-27 21:57:16 +00:00
|
|
|
if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
|
2008-02-15 21:39:19 +00:00
|
|
|
/* failed to link output filter to new filter */
|
2010-09-27 16:58:48 +00:00
|
|
|
link->dst->inputs[dstpad_idx] = link;
|
2010-09-27 17:28:53 +00:00
|
|
|
return ret;
|
2008-02-15 21:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* re-hookup the link to the new destination filter we inserted */
|
|
|
|
link->dst = filt;
|
2010-09-27 21:57:16 +00:00
|
|
|
link->dstpad = &filt->input_pads[filt_srcpad_idx];
|
|
|
|
filt->inputs[filt_srcpad_idx] = link;
|
2008-02-15 21:39:19 +00:00
|
|
|
|
2010-07-22 11:12:47 +00:00
|
|
|
/* if any information on supported media formats already exists on the
|
2008-02-15 21:39:28 +00:00
|
|
|
* link, we need to preserve that */
|
2010-08-19 14:32:31 +00:00
|
|
|
if (link->out_formats)
|
2012-05-30 08:12:55 +00:00
|
|
|
ff_formats_changeref(&link->out_formats,
|
2010-09-27 21:57:16 +00:00
|
|
|
&filt->outputs[filt_dstpad_idx]->out_formats);
|
2012-05-06 05:00:22 +00:00
|
|
|
if (link->out_samplerates)
|
2012-05-30 08:12:55 +00:00
|
|
|
ff_formats_changeref(&link->out_samplerates,
|
2012-05-06 05:00:22 +00:00
|
|
|
&filt->outputs[filt_dstpad_idx]->out_samplerates);
|
|
|
|
if (link->out_channel_layouts)
|
|
|
|
ff_channel_layouts_changeref(&link->out_channel_layouts,
|
|
|
|
&filt->outputs[filt_dstpad_idx]->out_channel_layouts);
|
2008-02-15 21:39:28 +00:00
|
|
|
|
2008-02-15 21:39:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:39:41 +00:00
|
|
|
int avfilter_config_links(AVFilterContext *filter)
|
2008-02-15 21:37:18 +00:00
|
|
|
{
|
|
|
|
int (*config_link)(AVFilterLink *);
|
2008-02-15 21:39:41 +00:00
|
|
|
unsigned i;
|
2010-10-10 18:54:39 +00:00
|
|
|
int ret;
|
2008-02-15 21:39:41 +00:00
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
for (i = 0; i < filter->nb_inputs; i ++) {
|
2008-02-15 21:40:46 +00:00
|
|
|
AVFilterLink *link = filter->inputs[i];
|
2008-02-15 21:38:58 +00:00
|
|
|
|
2010-08-19 14:32:31 +00:00
|
|
|
if (!link) continue;
|
2008-02-15 21:39:41 +00:00
|
|
|
|
2010-08-19 14:32:31 +00:00
|
|
|
switch (link->init_state) {
|
2008-02-15 21:39:41 +00:00
|
|
|
case AVLINK_INIT:
|
|
|
|
continue;
|
|
|
|
case AVLINK_STARTINIT:
|
2008-02-15 21:41:11 +00:00
|
|
|
av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
|
|
|
|
return 0;
|
2008-02-15 21:39:41 +00:00
|
|
|
case AVLINK_UNINIT:
|
|
|
|
link->init_state = AVLINK_STARTINIT;
|
|
|
|
|
2010-10-10 18:54:39 +00:00
|
|
|
if ((ret = avfilter_config_links(link->src)) < 0)
|
|
|
|
return ret;
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2011-08-04 12:47:00 +00:00
|
|
|
if (!(config_link = link->srcpad->config_props)) {
|
2012-06-12 19:25:10 +00:00
|
|
|
if (link->src->nb_inputs != 1) {
|
2011-08-04 12:47:00 +00:00
|
|
|
av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
|
|
|
|
"with more than one input "
|
|
|
|
"must set config_props() "
|
|
|
|
"callbacks on all outputs\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
2012-06-08 19:02:04 +00:00
|
|
|
} else if ((ret = config_link(link)) < 0) {
|
|
|
|
av_log(link->src, AV_LOG_ERROR,
|
|
|
|
"Failed to configure output pad on %s\n",
|
|
|
|
link->src->name);
|
2010-10-10 18:54:39 +00:00
|
|
|
return ret;
|
2012-06-08 19:02:04 +00:00
|
|
|
}
|
2008-02-15 21:35:53 +00:00
|
|
|
|
2010-10-10 22:26:14 +00:00
|
|
|
if (link->time_base.num == 0 && link->time_base.den == 0)
|
2012-06-12 19:25:10 +00:00
|
|
|
link->time_base = link->src && link->src->nb_inputs ?
|
2010-10-12 22:32:31 +00:00
|
|
|
link->src->inputs[0]->time_base : AV_TIME_BASE_Q;
|
2010-10-10 22:26:14 +00:00
|
|
|
|
2011-08-04 12:47:00 +00:00
|
|
|
if (link->type == AVMEDIA_TYPE_VIDEO) {
|
|
|
|
if (!link->sample_aspect_ratio.num && !link->sample_aspect_ratio.den)
|
2012-06-12 19:25:10 +00:00
|
|
|
link->sample_aspect_ratio = link->src->nb_inputs ?
|
2011-08-04 12:47:00 +00:00
|
|
|
link->src->inputs[0]->sample_aspect_ratio : (AVRational){1,1};
|
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
if (link->src->nb_inputs) {
|
2011-08-04 12:47:00 +00:00
|
|
|
if (!link->w)
|
|
|
|
link->w = link->src->inputs[0]->w;
|
|
|
|
if (!link->h)
|
|
|
|
link->h = link->src->inputs[0]->h;
|
|
|
|
} else if (!link->w || !link->h) {
|
|
|
|
av_log(link->src, AV_LOG_ERROR,
|
|
|
|
"Video source filters must set their output link's "
|
|
|
|
"width and height\n");
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
}
|
2011-02-02 19:39:56 +00:00
|
|
|
|
2010-09-27 16:58:48 +00:00
|
|
|
if ((config_link = link->dstpad->config_props))
|
2012-06-08 19:02:04 +00:00
|
|
|
if ((ret = config_link(link)) < 0) {
|
|
|
|
av_log(link->src, AV_LOG_ERROR,
|
|
|
|
"Failed to configure input pad on %s\n",
|
|
|
|
link->dst->name);
|
2010-10-10 18:54:39 +00:00
|
|
|
return ret;
|
2012-06-08 19:02:04 +00:00
|
|
|
}
|
2008-02-15 21:35:53 +00:00
|
|
|
|
2008-02-15 21:39:41 +00:00
|
|
|
link->init_state = AVLINK_INIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:33:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-07 09:21:38 +00:00
|
|
|
void ff_dlog_link(void *ctx, AVFilterLink *link, int end)
|
2009-10-06 22:07:32 +00:00
|
|
|
{
|
2011-01-15 19:58:29 +00:00
|
|
|
if (link->type == AVMEDIA_TYPE_VIDEO) {
|
2011-01-29 16:46:18 +00:00
|
|
|
av_dlog(ctx,
|
2011-01-15 20:02:03 +00:00
|
|
|
"link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s",
|
|
|
|
link, link->w, link->h,
|
|
|
|
av_pix_fmt_descriptors[link->format].name,
|
|
|
|
link->src ? link->src->filter->name : "",
|
|
|
|
link->dst ? link->dst->filter->name : "",
|
|
|
|
end ? "\n" : "");
|
2011-01-15 19:58:29 +00:00
|
|
|
} else {
|
|
|
|
char buf[128];
|
|
|
|
av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
|
|
|
|
|
2011-01-29 16:46:18 +00:00
|
|
|
av_dlog(ctx,
|
2012-07-24 21:58:59 +00:00
|
|
|
"link[%p r:%d cl:%s fmt:%-16s %-16s->%-16s]%s",
|
2011-01-15 19:58:29 +00:00
|
|
|
link, link->sample_rate, buf,
|
|
|
|
av_get_sample_fmt_name(link->format),
|
|
|
|
link->src ? link->src->filter->name : "",
|
|
|
|
link->dst ? link->dst->filter->name : "",
|
|
|
|
end ? "\n" : "");
|
|
|
|
}
|
2009-10-06 22:07:32 +00:00
|
|
|
}
|
|
|
|
|
2012-05-30 09:20:32 +00:00
|
|
|
int ff_request_frame(AVFilterLink *link)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
2011-01-29 16:46:18 +00:00
|
|
|
FF_DPRINTF_START(NULL, request_frame); ff_dlog_link(NULL, link, 1);
|
2009-10-06 22:07:32 +00:00
|
|
|
|
2010-09-27 16:58:48 +00:00
|
|
|
if (link->srcpad->request_frame)
|
|
|
|
return link->srcpad->request_frame(link);
|
2010-08-19 14:32:31 +00:00
|
|
|
else if (link->src->inputs[0])
|
2012-05-30 09:20:32 +00:00
|
|
|
return ff_request_frame(link->src->inputs[0]);
|
2008-02-15 21:37:31 +00:00
|
|
|
else return -1;
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
|
|
|
|
2012-05-30 09:20:32 +00:00
|
|
|
int ff_poll_frame(AVFilterLink *link)
|
2008-02-15 21:40:26 +00:00
|
|
|
{
|
2010-08-19 14:32:31 +00:00
|
|
|
int i, min = INT_MAX;
|
2008-02-15 21:40:26 +00:00
|
|
|
|
2010-09-27 16:58:48 +00:00
|
|
|
if (link->srcpad->poll_frame)
|
|
|
|
return link->srcpad->poll_frame(link);
|
2008-02-15 21:41:31 +00:00
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
for (i = 0; i < link->src->nb_inputs; i++) {
|
2009-10-18 22:33:37 +00:00
|
|
|
int val;
|
2010-08-19 14:32:31 +00:00
|
|
|
if (!link->src->inputs[i])
|
2008-02-15 21:41:31 +00:00
|
|
|
return -1;
|
2012-05-30 09:20:32 +00:00
|
|
|
val = ff_poll_frame(link->src->inputs[i]);
|
2009-10-18 22:33:37 +00:00
|
|
|
min = FFMIN(min, val);
|
2008-02-15 21:41:31 +00:00
|
|
|
}
|
2008-02-15 21:40:26 +00:00
|
|
|
|
|
|
|
return min;
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:47:33 +00:00
|
|
|
#define MAX_REGISTERED_AVFILTERS_NB 64
|
|
|
|
|
|
|
|
static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];
|
|
|
|
|
|
|
|
static int next_registered_avfilter_idx = 0;
|
2009-10-27 19:52:14 +00:00
|
|
|
|
2008-02-15 21:40:33 +00:00
|
|
|
AVFilter *avfilter_get_by_name(const char *name)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
2009-11-24 23:47:33 +00:00
|
|
|
int i;
|
2008-02-15 21:38:20 +00:00
|
|
|
|
2009-11-24 23:47:33 +00:00
|
|
|
for (i = 0; registered_avfilters[i]; i++)
|
|
|
|
if (!strcmp(registered_avfilters[i]->name, name))
|
|
|
|
return registered_avfilters[i];
|
2008-02-15 21:33:56 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-24 23:47:33 +00:00
|
|
|
int avfilter_register(AVFilter *filter)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
2009-11-24 23:47:33 +00:00
|
|
|
if (next_registered_avfilter_idx == MAX_REGISTERED_AVFILTERS_NB)
|
|
|
|
return -1;
|
2008-02-15 21:38:20 +00:00
|
|
|
|
2009-11-24 23:47:33 +00:00
|
|
|
registered_avfilters[next_registered_avfilter_idx++] = filter;
|
|
|
|
return 0;
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
|
|
|
|
2009-11-24 23:58:48 +00:00
|
|
|
AVFilter **av_filter_next(AVFilter **filter)
|
|
|
|
{
|
|
|
|
return filter ? ++filter : ®istered_avfilters[0];
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:33:56 +00:00
|
|
|
void avfilter_uninit(void)
|
|
|
|
{
|
2009-11-24 23:47:33 +00:00
|
|
|
memset(registered_avfilters, 0, sizeof(registered_avfilters));
|
|
|
|
next_registered_avfilter_idx = 0;
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int pad_count(const AVFilterPad *pads)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
|
2008-02-15 21:40:33 +00:00
|
|
|
for(count = 0; pads->name; count ++) pads ++;
|
2008-02-15 21:33:56 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *filter_name(void *p)
|
|
|
|
{
|
|
|
|
AVFilterContext *filter = p;
|
|
|
|
return filter->filter->name;
|
|
|
|
}
|
|
|
|
|
2008-03-07 09:08:28 +00:00
|
|
|
static const AVClass avfilter_class = {
|
|
|
|
"AVFilter",
|
2010-04-28 20:00:23 +00:00
|
|
|
filter_name,
|
|
|
|
NULL,
|
|
|
|
LIBAVUTIL_VERSION_INT,
|
2008-03-07 09:08:28 +00:00
|
|
|
};
|
|
|
|
|
2010-08-11 11:44:51 +00:00
|
|
|
int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
2008-02-15 21:39:12 +00:00
|
|
|
AVFilterContext *ret;
|
2010-08-11 11:44:51 +00:00
|
|
|
*filter_ctx = NULL;
|
2008-02-15 21:39:12 +00:00
|
|
|
|
|
|
|
if (!filter)
|
2010-08-11 11:44:51 +00:00
|
|
|
return AVERROR(EINVAL);
|
2008-02-15 21:39:12 +00:00
|
|
|
|
2009-01-12 20:30:57 +00:00
|
|
|
ret = av_mallocz(sizeof(AVFilterContext));
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret)
|
|
|
|
return AVERROR(ENOMEM);
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2008-03-07 09:08:28 +00:00
|
|
|
ret->av_class = &avfilter_class;
|
2008-02-15 21:33:56 +00:00
|
|
|
ret->filter = filter;
|
2008-02-15 21:36:40 +00:00
|
|
|
ret->name = inst_name ? av_strdup(inst_name) : NULL;
|
2011-05-04 01:25:40 +00:00
|
|
|
if (filter->priv_size) {
|
2011-04-27 15:29:09 +00:00
|
|
|
ret->priv = av_mallocz(filter->priv_size);
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret->priv)
|
|
|
|
goto err;
|
|
|
|
}
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
ret->nb_inputs = pad_count(filter->inputs);
|
|
|
|
if (ret->nb_inputs ) {
|
|
|
|
ret->input_pads = av_malloc(sizeof(AVFilterPad) * ret->nb_inputs);
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret->input_pads)
|
|
|
|
goto err;
|
2012-06-12 19:25:10 +00:00
|
|
|
memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->nb_inputs);
|
|
|
|
ret->inputs = av_mallocz(sizeof(AVFilterLink*) * ret->nb_inputs);
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret->inputs)
|
|
|
|
goto err;
|
2009-01-12 20:30:57 +00:00
|
|
|
}
|
2008-02-15 21:37:07 +00:00
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
ret->nb_outputs = pad_count(filter->outputs);
|
|
|
|
if (ret->nb_outputs) {
|
|
|
|
ret->output_pads = av_malloc(sizeof(AVFilterPad) * ret->nb_outputs);
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret->output_pads)
|
|
|
|
goto err;
|
2012-06-12 19:25:10 +00:00
|
|
|
memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->nb_outputs);
|
|
|
|
ret->outputs = av_mallocz(sizeof(AVFilterLink*) * ret->nb_outputs);
|
2011-05-04 01:25:40 +00:00
|
|
|
if (!ret->outputs)
|
|
|
|
goto err;
|
2009-01-12 20:30:57 +00:00
|
|
|
}
|
2012-06-12 19:25:10 +00:00
|
|
|
#if FF_API_FOO_COUNT
|
|
|
|
ret->output_count = ret->nb_outputs;
|
|
|
|
ret->input_count = ret->nb_inputs;
|
|
|
|
#endif
|
2008-02-15 21:36:57 +00:00
|
|
|
|
2010-08-11 11:44:51 +00:00
|
|
|
*filter_ctx = ret;
|
|
|
|
return 0;
|
2011-05-04 01:25:40 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
av_freep(&ret->inputs);
|
|
|
|
av_freep(&ret->input_pads);
|
2012-06-12 19:25:10 +00:00
|
|
|
ret->nb_inputs = 0;
|
2011-05-04 01:25:40 +00:00
|
|
|
av_freep(&ret->outputs);
|
|
|
|
av_freep(&ret->output_pads);
|
2012-06-12 19:25:10 +00:00
|
|
|
ret->nb_outputs = 0;
|
2011-05-04 01:25:40 +00:00
|
|
|
av_freep(&ret->priv);
|
|
|
|
av_free(ret);
|
|
|
|
return AVERROR(ENOMEM);
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
|
|
|
|
2010-11-08 12:32:39 +00:00
|
|
|
void avfilter_free(AVFilterContext *filter)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
|
|
|
int i;
|
2010-09-27 01:17:46 +00:00
|
|
|
AVFilterLink *link;
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2010-08-19 14:32:31 +00:00
|
|
|
if (filter->filter->uninit)
|
2008-02-15 21:33:56 +00:00
|
|
|
filter->filter->uninit(filter);
|
|
|
|
|
2012-06-12 19:25:10 +00:00
|
|
|
for (i = 0; i < filter->nb_inputs; i++) {
|
2010-09-27 01:17:46 +00:00
|
|
|
if ((link = filter->inputs[i])) {
|
|
|
|
if (link->src)
|
2010-09-27 16:58:48 +00:00
|
|
|
link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
|
2012-05-30 08:12:55 +00:00
|
|
|
ff_formats_unref(&link->in_formats);
|
|
|
|
ff_formats_unref(&link->out_formats);
|
|
|
|
ff_formats_unref(&link->in_samplerates);
|
|
|
|
ff_formats_unref(&link->out_samplerates);
|
2012-05-06 05:00:22 +00:00
|
|
|
ff_channel_layouts_unref(&link->in_channel_layouts);
|
|
|
|
ff_channel_layouts_unref(&link->out_channel_layouts);
|
2010-08-06 22:25:33 +00:00
|
|
|
}
|
2010-09-27 01:17:46 +00:00
|
|
|
av_freep(&link);
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
2012-06-12 19:25:10 +00:00
|
|
|
for (i = 0; i < filter->nb_outputs; i++) {
|
2010-09-27 01:17:46 +00:00
|
|
|
if ((link = filter->outputs[i])) {
|
|
|
|
if (link->dst)
|
2010-09-27 16:58:48 +00:00
|
|
|
link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
|
2012-05-30 08:12:55 +00:00
|
|
|
ff_formats_unref(&link->in_formats);
|
|
|
|
ff_formats_unref(&link->out_formats);
|
|
|
|
ff_formats_unref(&link->in_samplerates);
|
|
|
|
ff_formats_unref(&link->out_samplerates);
|
2012-05-06 05:00:22 +00:00
|
|
|
ff_channel_layouts_unref(&link->in_channel_layouts);
|
|
|
|
ff_channel_layouts_unref(&link->out_channel_layouts);
|
2010-08-06 22:25:33 +00:00
|
|
|
}
|
2010-09-27 01:17:46 +00:00
|
|
|
av_freep(&link);
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|
|
|
|
|
2008-02-15 21:38:29 +00:00
|
|
|
av_freep(&filter->name);
|
|
|
|
av_freep(&filter->input_pads);
|
|
|
|
av_freep(&filter->output_pads);
|
|
|
|
av_freep(&filter->inputs);
|
|
|
|
av_freep(&filter->outputs);
|
|
|
|
av_freep(&filter->priv);
|
2008-02-15 21:33:56 +00:00
|
|
|
av_free(filter);
|
|
|
|
}
|
|
|
|
|
2008-02-15 21:36:50 +00:00
|
|
|
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
|
2008-02-15 21:33:56 +00:00
|
|
|
{
|
2008-02-15 21:40:46 +00:00
|
|
|
int ret=0;
|
2008-02-15 21:33:56 +00:00
|
|
|
|
2010-08-19 14:32:31 +00:00
|
|
|
if (filter->filter->init)
|
2012-06-21 05:55:56 +00:00
|
|
|
ret = filter->filter->init(filter, args);
|
2008-02-15 21:40:46 +00:00
|
|
|
return ret;
|
2012-06-12 17:57:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx)
|
|
|
|
{
|
|
|
|
return pads[pad_idx].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx)
|
|
|
|
{
|
|
|
|
return pads[pad_idx].type;
|
2008-02-15 21:33:56 +00:00
|
|
|
}
|