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
)
55 if(src
->output_count
<= srcpad
|| dst
->input_count
<= dstpad
||
56 src
->outputs
[srcpad
] || dst
->inputs
[dstpad
])
59 src
->outputs
[srcpad
] =
60 dst
->inputs
[dstpad
] = link
= av_malloc(sizeof(AVFilterLink
));
64 link
->srcpad
= srcpad
;
65 link
->dstpad
= dstpad
;
72 int avfilter_config_link(AVFilterLink
*link
)
75 int (*config_link
)(AVFilterLink
*);
80 /* find a format both filters support - TODO: auto-insert conversion filter */
82 if(link
->src
->output_pads
[link
->srcpad
].query_formats
)
83 fmts
[0] = link
->src
->output_pads
[link
->srcpad
].query_formats(link
);
85 fmts
[0] = avfilter_default_query_output_formats(link
);
86 fmts
[1] = link
->dst
->input_pads
[link
->dstpad
].query_formats(link
);
87 for(i
= 0; fmts
[0][i
] != -1; i
++)
88 for(j
= 0; fmts
[1][j
] != -1; j
++)
89 if(fmts
[0][i
] == fmts
[1][j
]) {
90 link
->format
= fmts
[0][i
];
97 if(link
->format
== -1)
100 if(!(config_link
= link
->src
->output_pads
[link
->srcpad
].config_props
))
101 config_link
= avfilter_default_config_output_link
;
102 if(config_link(link
))
105 if(!(config_link
= link
->dst
->input_pads
[link
->dstpad
].config_props
))
106 config_link
= avfilter_default_config_input_link
;
107 if(config_link(link
))
113 AVFilterPicRef
*avfilter_get_video_buffer(AVFilterLink
*link
, int perms
)
115 AVFilterPicRef
*ret
= NULL
;
117 if(link
->dst
->input_pads
[link
->dstpad
].get_video_buffer
)
118 ret
= link
->dst
->input_pads
[link
->dstpad
].get_video_buffer(link
, perms
);
121 ret
= avfilter_default_get_video_buffer(link
, perms
);
126 void avfilter_request_frame(AVFilterLink
*link
)
128 const AVFilterPad
*pad
= &link
->src
->output_pads
[link
->srcpad
];
130 if(pad
->request_frame
)
131 pad
->request_frame(link
);
132 else if(link
->src
->inputs
[0])
133 avfilter_request_frame(link
->src
->inputs
[0]);
136 /* XXX: should we do the duplicating of the picture ref here, instead of
137 * forcing the source filter to do it? */
138 void avfilter_start_frame(AVFilterLink
*link
, AVFilterPicRef
*picref
)
140 void (*start_frame
)(AVFilterLink
*, AVFilterPicRef
*);
142 start_frame
= link
->dst
->input_pads
[link
->dstpad
].start_frame
;
144 start_frame
= avfilter_default_start_frame
;
146 start_frame(link
, picref
);
149 void avfilter_end_frame(AVFilterLink
*link
)
151 void (*end_frame
)(AVFilterLink
*);
153 end_frame
= link
->dst
->input_pads
[link
->dstpad
].end_frame
;
155 end_frame
= avfilter_default_end_frame
;
160 void avfilter_draw_slice(AVFilterLink
*link
, uint8_t *data
[4], int y
, int h
)
162 if(!link
->dst
->input_pads
[link
->dstpad
].draw_slice
)
165 link
->dst
->input_pads
[link
->dstpad
].draw_slice(link
, data
, y
, h
);
168 static int filter_cmp(const void *aa
, const void *bb
)
170 const AVFilter
*a
= *(const AVFilter
**)aa
, *b
= *(const AVFilter
**)bb
;
171 return strcmp(a
->name
, b
->name
);
174 AVFilter
*avfilter_get_by_name(char *name
)
176 AVFilter key
= { .name
= name
, };
177 AVFilter
*key2
= &key
;
180 ret
= bsearch(&key2
, filters
, filter_count
, sizeof(AVFilter
**), filter_cmp
);
186 /* FIXME: insert in order, rather than insert at end + resort */
187 void avfilter_register(AVFilter
*filter
)
189 filters
= av_realloc(filters
, sizeof(AVFilter
*) * (filter_count
+1));
190 filters
[filter_count
] = filter
;
191 qsort(filters
, ++filter_count
, sizeof(AVFilter
**), filter_cmp
);
194 void avfilter_init(void)
196 avfilter_register(&vsrc_dummy
);
197 avfilter_register(&vsrc_ppm
);
198 avfilter_register(&vf_crop
);
199 avfilter_register(&vf_graph
);
200 avfilter_register(&vf_passthrough
);
201 avfilter_register(&vf_rgb2bgr
);
202 avfilter_register(&vf_slicify
);
203 avfilter_register(&vo_sdl
);
206 void avfilter_uninit(void)
212 static int pad_count(const AVFilterPad
*pads
)
214 AVFilterPad
*p
= (AVFilterPad
*) pads
;
217 for(count
= 0; p
->name
; count
++) p
++;
221 static const char *filter_name(void *p
)
223 AVFilterContext
*filter
= p
;
224 return filter
->filter
->name
;
227 AVFilterContext
*avfilter_create(AVFilter
*filter
, char *inst_name
)
229 AVFilterContext
*ret
= av_malloc(sizeof(AVFilterContext
));
231 ret
->av_class
= av_mallocz(sizeof(AVClass
));
232 ret
->av_class
->item_name
= filter_name
;
233 ret
->filter
= filter
;
234 ret
->name
= inst_name ?
av_strdup(inst_name
) : NULL
;
235 ret
->priv
= av_mallocz(filter
->priv_size
);
237 ret
->input_count
= pad_count(filter
->inputs
);
238 ret
->input_pads
= av_malloc(sizeof(AVFilterPad
) * ret
->input_count
);
239 memcpy(ret
->input_pads
, filter
->inputs
, sizeof(AVFilterPad
)*ret
->input_count
);
240 ret
->inputs
= av_mallocz(sizeof(AVFilterLink
*) * ret
->input_count
);
242 ret
->output_count
= pad_count(filter
->outputs
);
243 ret
->output_pads
= av_malloc(sizeof(AVFilterPad
) * ret
->output_count
);
244 memcpy(ret
->output_pads
, filter
->outputs
, sizeof(AVFilterPad
)*ret
->output_count
);
245 ret
->outputs
= av_mallocz(sizeof(AVFilterLink
*) * ret
->output_count
);
250 void avfilter_destroy(AVFilterContext
*filter
)
254 if(filter
->filter
->uninit
)
255 filter
->filter
->uninit(filter
);
257 for(i
= 0; i
< filter
->input_count
; i
++) {
258 if(filter
->inputs
[i
])
259 filter
->inputs
[i
]->src
->outputs
[filter
->inputs
[i
]->srcpad
] = NULL
;
260 av_free(filter
->inputs
[i
]);
262 for(i
= 0; i
< filter
->output_count
; i
++) {
263 if(filter
->outputs
[i
])
264 filter
->outputs
[i
]->dst
->inputs
[filter
->outputs
[i
]->dstpad
] = NULL
;
265 av_free(filter
->outputs
[i
]);
268 av_free(filter
->name
);
269 av_free(filter
->input_pads
);
270 av_free(filter
->output_pads
);
271 av_free(filter
->inputs
);
272 av_free(filter
->outputs
);
273 av_free(filter
->priv
);
274 av_free(filter
->av_class
);
278 AVFilterContext
*avfilter_create_by_name(char *name
, char *inst_name
)
282 if(!(filt
= avfilter_get_by_name(name
))) return NULL
;
283 return avfilter_create(filt
, inst_name
);
286 int avfilter_init_filter(AVFilterContext
*filter
, const char *args
, void *opaque
)
290 if(filter
->filter
->init
)
291 if((ret
= filter
->filter
->init(filter
, args
, opaque
))) return ret
;
295 int *avfilter_make_format_list(int len
, ...)
300 ret
= av_malloc(sizeof(int) * (len
+ 1));
302 for(i
= 0; i
< len
; i
++)
303 ret
[i
] = va_arg(vl
, int);